blob: 9c5f4278774c4f459717819e00bf93354907bce6 [file] [log] [blame]
package org.yaml.snakeyaml.nodes;
import junit.framework.TestCase;
public class TagsTest extends TestCase {
/**
* Dummy test for Cobertura report
*/
public void testToString() {
assertNotNull(new Tags());
assertEquals("tag:yaml.org,2002:map", Tags.MAP);
}
}