mirror of
https://github.com/ZSCNetSupportDept/WechatTicketSystem.git
synced 2025-10-28 23:55:04 +08:00
26 lines
413 B
Java
26 lines
413 B
Java
package love.sola.netsupport.enums;
|
|
|
|
import org.junit.Test;
|
|
|
|
/**
|
|
* @author Sola {@literal <dev@sola.love>}
|
|
*/
|
|
public class ReflectionTest {
|
|
|
|
@Test
|
|
public void testBlock() {
|
|
assert Block.inverseMap != null;
|
|
}
|
|
|
|
@Test
|
|
public void testAccess() {
|
|
assert Access.inverseMap != null;
|
|
}
|
|
|
|
@Test
|
|
public void testStatus() {
|
|
assert Status.inverseMap != null;
|
|
}
|
|
|
|
}
|