mirror of
https://github.com/alexcrea/CustomAnvil.git
synced 2026-06-23 16:16:17 +02:00
18 lines
409 B
Java
18 lines
409 B
Java
package io.delilaheve;
|
|
|
|
import org.junit.jupiter.api.Assertions;
|
|
import org.junit.jupiter.api.Test;
|
|
import xyz.alexcrea.cuanvil.DefaultCustomAnvilTest;
|
|
|
|
public class CustomAnvilTests extends DefaultCustomAnvilTest {
|
|
|
|
@Test
|
|
public void simpleInitTest() {
|
|
Assertions.assertNotNull(server);
|
|
Assertions.assertNotNull(plugin);
|
|
|
|
// Test shutdown
|
|
plugin.onDisable();
|
|
}
|
|
|
|
}
|