summaryrefslogtreecommitdiff
path: root/test/disabled/presentation/ide-bug-1000545/src/CompletionFails.scala
diff options
context:
space:
mode:
authorMicro Dotta <mirco.dotta@gmail.com>2011-09-05 10:06:59 +0000
committerMicro Dotta <mirco.dotta@gmail.com>2011-09-05 10:06:59 +0000
commit4235635142d77d0c087c026fef8d8e6ee535e9d9 (patch)
tree8ae31196a1d9256295e4940ef219d048d47afda5 /test/disabled/presentation/ide-bug-1000545/src/CompletionFails.scala
parentfa2deeb4304d149c4870cfb013e7790d6fe00d86 (diff)
downloadscala-4235635142d77d0c087c026fef8d8e6ee535e9d9.tar.gz
scala-4235635142d77d0c087c026fef8d8e6ee535e9d9.tar.bz2
scala-4235635142d77d0c087c026fef8d8e6ee535e9d9.zip
Created test cases for tickets that need to be ...
Created test cases for tickets that need to be fixed in the presentation compiler. These tests should eventually be moved under folder /files/presentation/ once they are working.
Diffstat (limited to 'test/disabled/presentation/ide-bug-1000545/src/CompletionFails.scala')
-rw-r--r--test/disabled/presentation/ide-bug-1000545/src/CompletionFails.scala25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/disabled/presentation/ide-bug-1000545/src/CompletionFails.scala b/test/disabled/presentation/ide-bug-1000545/src/CompletionFails.scala
new file mode 100644
index 0000000000..7300e5fd7d
--- /dev/null
+++ b/test/disabled/presentation/ide-bug-1000545/src/CompletionFails.scala
@@ -0,0 +1,25 @@
+/**
+ * Presentation compiler returns the wrong answer for this test.
+ *
+ * Below is the current result of running this test:
+ *
+ * Mircos-iMac:test mirco$ ./partest files/presentation/ticket-1000545 --show-log | sed 's/< //'
+ * Testing individual files
+ * testing: [...]/files/presentation/ticket-1000545 [FAILED]
+ * 1,8d0
+ * reload: CompletionFails.scala
+ *
+ * askTypeCompletion at CompletionFails.scala(2,19)
+ * ================================================================================
+ * [response] aksTypeCompletion at (2,19)
+ * retrieved 1 members
+ * TypeMember(method <clinit>,()Unit,false,false,<none>)
+ * ================================================================================
+ *
+ * 1 of 1 tests failed (elapsed time: 00:00:05)
+ *
+ * @note The expected result was the list of static methods for class @see java.io.Console
+ */
+object CompletionFails {
+ java.io.Console. /*!*/
+} \ No newline at end of file