feat: add godzilla manager and integration container test

This commit is contained in:
ReaJason
2024-11-27 00:36:38 +08:00
parent a06eb2f869
commit eb994b7ad4
14 changed files with 2563 additions and 19 deletions
@@ -0,0 +1,21 @@
package com.reajason.javaweb.godzilla;
import com.reajason.javaweb.util.ClassUtils;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
/**
* @author ReaJason
* @since 2024/11/26
*/
class GodzillaManagerTest {
@Test
void generateGodzilla() {
byte[] bytes = GodzillaManager.generateGodzilla();
Object o = ClassUtils.newInstance(bytes);
System.out.println(o.getClass().getName());
assertNotNull(o);
}
}