blob: ed418356baab3a72d804d8a94052f2370d1193c0 [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.tokens;
import junit.framework.TestCase;
import org.yaml.snakeyaml.error.Mark;
public class DocumentEndTokenTest extends TestCase {
public void testGetTokenId() {
Mark mark = new Mark("test1", 0, 0, 0, "*The first line.\nThe last line.", 0);
DocumentEndToken token = new DocumentEndToken(mark, mark);
assertEquals("<document end>", token.getTokenId());
}
}