mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-23 23:41:52 +08:00
feat: add godzilla manager and integration container test
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user