1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.yaml.snakeyaml;
17
18 import junit.framework.TestCase;
19
20 import org.yaml.snakeyaml.constructor.ArrayTagsTest.CarWithArray;
21 import org.yaml.snakeyaml.nodes.Tag;
22
23 public class TypeDescriptionTest extends TestCase {
24
25 public void testSetTag() {
26 TypeDescription descr = new TypeDescription(TypeDescriptionTest.class);
27 descr.setTag("!bla");
28 assertEquals(new Tag("!bla"), descr.getTag());
29 descr.setTag(new Tag("!foo"));
30 assertEquals(new Tag("!foo"), descr.getTag());
31 }
32
33 public void testToString() {
34 TypeDescription carDescription = new TypeDescription(CarWithArray.class, "!car");
35 assertEquals(
36 "TypeDescription for class org.yaml.snakeyaml.constructor.ArrayTagsTest$CarWithArray (tag='!car')",
37 carDescription.toString());
38 }
39 }