Added standard library reference resolver test cases with equals and toString functions.

This commit is contained in:
Evgeny Gerashchenko
2012-09-17 18:01:40 +04:00
parent 07259e7683
commit 8aa13a301c
3 changed files with 12 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
val x = 5.<ref>equals(5)
//jet/Numbers.jet:equals
+2
View File
@@ -0,0 +1,2 @@
val x = 5.<ref>toString()
//jet/Library.jet:toString
@@ -51,6 +51,14 @@ public class StandardLibraryReferenceResolverTest extends ResolveTestCase {
doTest();
}
public void testEquals() throws Exception {
doTest();
}
public void testToString() throws Exception {
doTest();
}
public void testTimes() throws Exception {
doTest();
}