summaryrefslogtreecommitdiff
path: root/test/files/run/unittest_io.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/unittest_io.scala')
-rw-r--r--test/files/run/unittest_io.scala30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/files/run/unittest_io.scala b/test/files/run/unittest_io.scala
deleted file mode 100644
index 59b82ff57e..0000000000
--- a/test/files/run/unittest_io.scala
+++ /dev/null
@@ -1,30 +0,0 @@
-object Test {
-
- import scala.testing.SUnit._
- import scala.io.Source
-
- class ReadlinesTest extends TestCase("scala.io.Source method getLines") {
-
- val src = Source.fromString("""
-This is a file
-it is split on several lines.
-
-isn't it?
-""")
- assertEquals("wrong number of lines",src.getLines.toList.length,5) // five new lines in there
- //for(val line <- src.getLines) {
- // Console.print(line)
- //}
- }
- def main(args:Array[String]) = {
- val ts = new TestSuite(
- new ReadlinesTest
- )
- val tr = new TestResult()
- ts.run(tr)
- for(val failure <- tr.failures) {
- Console.println(failure)
- }
- }
-
-}