aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/target/jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/target/jvm.lux52
1 files changed, 26 insertions, 26 deletions
diff --git a/stdlib/source/test/lux/target/jvm.lux b/stdlib/source/test/lux/target/jvm.lux
index efbb44c8f..2121dfc19 100644
--- a/stdlib/source/test/lux/target/jvm.lux
+++ b/stdlib/source/test/lux/target/jvm.lux
@@ -909,18 +909,18 @@
try.trusted
(format.result /class.writer))
loader (/loader.memory (/loader.new_library []))]]
- (_.test "PUTSTATIC & PUTFIELD & GETFIELD & GETSTATIC"
- (case (do try.monad
- [_ (/loader.define class_name bytecode loader)
- class (io.run! (/loader.load class_name loader))
- method (try (get_method static_method class))
- output (java/lang/reflect/Method::invoke (ffi.null) (ffi.array java/lang/Object 0) method)]
- (in (as Int output)))
- {try.#Success actual}
- (i.= (as Int expected) (as Int actual))
-
- {try.#Failure error}
- false))))
+ (_.property "PUTSTATIC & PUTFIELD & GETFIELD & GETSTATIC"
+ (case (do try.monad
+ [_ (/loader.define class_name bytecode loader)
+ class (io.run! (/loader.load class_name loader))
+ method (try (get_method static_method class))
+ output (java/lang/reflect/Method::invoke (ffi.null) (ffi.array java/lang/Object 0) method)]
+ (in (as Int output)))
+ {try.#Success actual}
+ (i.= (as Int expected) (as Int actual))
+
+ {try.#Failure error}
+ false))))
(def: array
Test
@@ -1728,20 +1728,20 @@
try.trusted
(format.result /class.writer))
loader (/loader.memory (/loader.new_library []))]]
- (_.test "Class & interface inheritance"
- (case (do try.monad
- [_ (/loader.define abstract_class abstract_bytecode loader)
- _ (/loader.define interface_class interface_bytecode loader)
- _ (/loader.define concrete_class concrete_bytecode loader)
- class (io.run! (/loader.load concrete_class loader))
- method (try (get_method static_method class))
- output (java/lang/reflect/Method::invoke (ffi.null) (ffi.array java/lang/Object 0) method)]
- (in (as Int output)))
- {try.#Success actual}
- (i.= (as Int expected) (as Int actual))
-
- {try.#Failure error}
- false))))
+ (_.property "Class & interface inheritance"
+ (case (do try.monad
+ [_ (/loader.define abstract_class abstract_bytecode loader)
+ _ (/loader.define interface_class interface_bytecode loader)
+ _ (/loader.define concrete_class concrete_bytecode loader)
+ class (io.run! (/loader.load concrete_class loader))
+ method (try (get_method static_method class))
+ output (java/lang/reflect/Method::invoke (ffi.null) (ffi.array java/lang/Object 0) method)]
+ (in (as Int output)))
+ {try.#Success actual}
+ (i.= (as Int expected) (as Int actual))
+
+ {try.#Failure error}
+ false))))
(def: .public test
Test