From ea6777a4ea66672003b59b83c431d8d7bf70865f Mon Sep 17 00:00:00 2001 From: Burak Emir Date: Wed, 24 Jan 2007 17:41:48 +0000 Subject: method Source::getLines --- test/files/run/unittest_io.scala | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 test/files/run/unittest_io.scala (limited to 'test/files/run/unittest_io.scala') diff --git a/test/files/run/unittest_io.scala b/test/files/run/unittest_io.scala new file mode 100644 index 0000000000..59b82ff57e --- /dev/null +++ b/test/files/run/unittest_io.scala @@ -0,0 +1,30 @@ +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) + } + } + +} -- cgit v1.2.3