use of com.karuslabs.commons.graphics.windows.Window in project Karus-Commons by Pante.
the class SingletonTest method open.
@Test
void open() {
Window window = mock(Window.class);
InventoryOpenEvent event = mock(InventoryOpenEvent.class);
region.open(window, event);
verify(button).open(window, event);
}
use of com.karuslabs.commons.graphics.windows.Window in project Karus-Commons by Pante.
the class SingletonTest method close.
@Test
void close() {
Window window = mock(Window.class);
InventoryCloseEvent event = mock(InventoryCloseEvent.class);
region.close(window, event);
verify(button).close(window, event);
}
Aggregations