JS tests: added tests for dynamic.

This commit is contained in:
Zalim Bashorov
2014-12-09 23:07:25 +03:00
parent 7d9b824411
commit af82e69214
25 changed files with 723 additions and 0 deletions
@@ -0,0 +1,10 @@
package foo
fun box(): String {
assertEquals("bar.boo(23)", bar.boo(23))
assertEquals("bar.boo(Hello)", bar.boo("Hello"))
assertEquals("bar.boo(object t {})", bar.boo(t))
assertEquals("bar.boo(null)", bar.boo(null))
return "OK"
}