Created
May 14, 2019 17:52
-
-
Save DaanVanYperen/d7600f3f5b2075ed389a5b3edec6c561 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.mostlyoriginal.plugin; | |
import org.junit.Assert; | |
import org.junit.Test; | |
import static org.junit.Assert.*; | |
/** | |
* @author Daan van Yperen | |
*/ | |
public class LifecycleListenerPluginTest { | |
@Test | |
public void When_world_create_entity_Then_intercept_post_creation() { | |
Assert.fail(); | |
} | |
@Test | |
public void When_archetype_creating_entity_Then_intercept_post_creation() { | |
Assert.fail(); | |
} | |
@Test | |
public void When_archetype_creating_entity_Then_intercept_components_post_add() { | |
Assert.fail(); | |
} | |
@Test | |
public void When_world_remove_entity_Then_intercept_pre_remove() { | |
Assert.fail(); | |
} | |
@Test | |
public void When_entity_deletefromworld_Then_intercept_pre_remove() { | |
Assert.fail(); | |
} | |
@Test | |
public void When_create_component_Then_intercept_post_add() { | |
// test transmuter, componentmapper, and via entity methods. | |
Assert.fail(); | |
} | |
@Test | |
public void When_create_component_on_invalid_entity_Then_intercept_post_add() { | |
// test transmuter, componentmapper, and via entity methods. | |
Assert.fail(); | |
} | |
@Test | |
public void When_get_component_Then_intercept_pre_get() { | |
// test transmuter, componentmapper, and via entity methods. | |
Assert.fail(); | |
} | |
@Test | |
public void When_get_component_on_invalid_entity_Then_still_intercept_pre_get() { | |
// test transmuter, componentmapper, and via entity methods. | |
Assert.fail(); | |
} | |
@Test | |
public void When_remove_component_Then_intercept_pre_remove() { | |
// test transmuter, componentmapper, and via entity methods. | |
Assert.fail(); | |
} | |
@Test | |
public void When_remove_component_on_invalid_entity_Then_still_intercept_pre_remove() { | |
// test transmuter, componentmapper, and via entity methods. | |
Assert.fail(); | |
} | |
@Test | |
public void Write_tests_for_tagmanager_and_groupmanager() { | |
Assert.fail(); | |
} | |
@Test | |
public void Write_tests_for_fluid_interface() { | |
Assert.fail(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment