Update test files

This commit is contained in:
Gabriel Tofvesson 2021-02-05 21:29:17 +01:00
parent dd0748a52c
commit 531a5ffe0c
2 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,8 @@ public class MergeInject extends MergeTest implements Runnable {
Directives.callSuper(); Directives.callSuper();
s = "Hello"; s = "Hello";
number = 10; number = 10;
assert false : "Test";
} }

View File

@ -7,6 +7,8 @@ import java.io.IOException;
public class Test { public class Test {
public static void main(String... args) throws IOException { public static void main(String... args) throws IOException {
ClassLoader.getSystemClassLoader().setDefaultAssertionStatus(false);
// Load target class, inject all annotated classes and load compiled bytecode into JVM // Load target class, inject all annotated classes and load compiled bytecode into JVM
dumpFile(Injector.injectAll("MergeTest"), "MergeTest").compile(); dumpFile(Injector.injectAll("MergeTest"), "MergeTest").compile();