(type)
| 35 | assertEquals(1, realmB); |
| 36 | |
| 37 | function instanceof_check(type) { |
| 38 | assertTrue(type() instanceof type); |
| 39 | assertTrue(type(5) instanceof type); |
| 40 | assertTrue(type(1,2,3) instanceof type); |
| 41 | } |
| 42 | |
| 43 | var realmBArray = Realm.eval(realmB, "Array"); |
| 44 | instanceof_check(Array); |
no test coverage detected