Name convention

Signed-off-by: Emmanuel Bigeon <emmanuel@bigeon.fr>
This commit is contained in:
Emmanuel Bigeon 2018-10-15 12:22:47 -04:00
parent 8d51733590
commit 1df33afdbe
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ public class SWTConsoleShellTest {
private static final Display DISPLAY = Display.getDefault();
@Test
public void test() {
public void testGeneric() {
final SWTConsoleShell shell = new SWTConsoleShell(DISPLAY, SWT.SHELL_TRIM);
final SWTConsole swtConsole = shell.getManager();
try {

View File

@ -99,7 +99,7 @@ public class SWTConsoleViewTest {
private static final Display DISPLAY = Display.getDefault();
@Test
public void test() {
public void testGeneric() {
final Shell shell = new Shell(DISPLAY);
final SWTConsoleView swtConsole = new SWTConsoleView(shell, SWT.NONE);
try (PipedConsoleOutput manager = new PipedConsoleOutput();