1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.yaml.snakeyaml.nodes;
18
19 import junit.framework.TestCase;
20
21 public class ScalarNodeTest extends TestCase {
22
23 protected void setUp() throws Exception {
24 super.setUp();
25 }
26
27 public void testGetNodeId() {
28 Node node = new ScalarNode(new Tag("str"), "text", null, null, '>');
29 assertEquals(NodeId.scalar, node.getNodeId());
30 }
31
32 public void testToString() {
33 Node node = new ScalarNode(new Tag("str"), "text", null, null, '>');
34 assertTrue(node.toString().contains("ScalarNode"));
35 assertTrue(node.toString().contains("tag="));
36 assertTrue(node.toString().contains("value="));
37 }
38
39 }