package textbender.a.b.rhinohideDemo._.core; import org.junit.*; import org.w3c.dom.*; import textbender.a.b.rhinohideDemo._.*; import static org.junit.Assert.*; /** Test of Core Level 1 (unextended). */ public final class RhiComment_1 { @Test public void all() { Comment comment = Core_1_Test.window().getDocument().createComment( "test comment" ); assertEquals( /*expected*/Node.COMMENT_NODE, /*actual*/comment.getNodeType() ); } }