We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f7601a commit ed2ffc3Copy full SHA for ed2ffc3
js/src/test/scala/scala/xml/NodeBufferTest.scala
@@ -0,0 +1,13 @@
1
+package scala.xml
2
+
3
+import org.junit.Test
4
+import org.junit.Assert.assertEquals
5
6
+class NodeBufferTest {
7
8
+ @Test
9
+ def testToString: Unit = {
10
+ val nodeBuffer = new NodeBuffer
11
+ assertEquals("NodeBuffer()", nodeBuffer.toString)
12
+ }
13
+}
jvm/src/test/scala/scala/xml/NodeBufferTest.scala
0 commit comments