1b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov/**
211a89b445f3bde56bf07e6a0d04f0b0256dcb215Andrey Somov * Copyright (c) 2008, http://www.snakeyaml.org
3b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov *
4b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * Licensed under the Apache License, Version 2.0 (the "License");
5b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * you may not use this file except in compliance with the License.
6b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * You may obtain a copy of the License at
7b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov *
8b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov *     http://www.apache.org/licenses/LICENSE-2.0
9b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov *
10b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * Unless required by applicable law or agreed to in writing, software
11b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * distributed under the License is distributed on an "AS IS" BASIS,
12b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * See the License for the specific language governing permissions and
14b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * limitations under the License.
15b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov */
16b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somovpackage org.yaml.snakeyaml.tokens;
17b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov
18b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somovimport junit.framework.TestCase;
19b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov
20b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somovimport org.yaml.snakeyaml.error.Mark;
21b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somovimport org.yaml.snakeyaml.tokens.Token.ID;
22b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov
23b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somovpublic class BlockEndTokenTest extends TestCase {
24b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov
25b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    public void testGetArguments() {
26b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov        Mark mark = new Mark("test1", 0, 0, 0, "*The first line.\nThe last line.", 0);
27b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov        BlockEndToken token = new BlockEndToken(mark, mark);
28b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov        assertEquals("", token.getArguments());
29b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    }
30b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov
31b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    public void testGetTokenId() {
32b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov        Mark mark = new Mark("test1", 0, 0, 0, "*The first line.\nThe last line.", 0);
33b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov        BlockEndToken token = new BlockEndToken(mark, mark);
34b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov        assertEquals(ID.BlockEnd, token.getTokenId());
35b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    }
36b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov}
37