From 13da5ccad36012b20380ef0ebf0fcf0107feba7f Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Mon, 15 Feb 2010 16:41:17 +0000 Subject: Disabled JavaInteraction test. of time because it fails if you can't connect to the screen of the test machine. And then if any test fails, the stability test doesn't run. We badly a separate testing area for tests which are prone to failure for reasons which are unrelated to the quality ostensibly being tested. No review. --- test/files/jvm/JavaInteraction.scala | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 test/files/jvm/JavaInteraction.scala (limited to 'test/files/jvm/JavaInteraction.scala') diff --git a/test/files/jvm/JavaInteraction.scala b/test/files/jvm/JavaInteraction.scala deleted file mode 100644 index 1316fad5d4..0000000000 --- a/test/files/jvm/JavaInteraction.scala +++ /dev/null @@ -1,23 +0,0 @@ -//############################################################################ -// Test Java interaction -//############################################################################ - -import java.awt.Color; -import java.awt.Point; - -class ColoredPoint(x: Int, y: Int, c_ : Color) extends Point(x, y) { - val c: Color = c_; - def getC(): Color = c; -} - -object Test { - def main(args: Array[String]): Unit = { - val p = new ColoredPoint(5, 7, Color.RED); - Console.println("p.x = " + p.x); - Console.println("p.c = " + p.c); - Console.println("p.getX() = " + p.getX()); - Console.println("p.getC() = " + p.getC()); - } -} - -//############################################################################ -- cgit v1.2.3