mirror of
https://github.com/inf112-v20/Fiasko.git
synced 2025-01-31 23:29:36 +01:00
Legger til kommentarer til tomme metoder i GdxTestRunner
This commit is contained in:
parent
6c745bd434
commit
b6aee9111a
@ -49,10 +49,12 @@ public class GdxTestRunner extends BlockJUnit4ClassRunner implements Application
|
||||
|
||||
@Override
|
||||
public void create() {
|
||||
//Test runner doesn't need to create anything
|
||||
}
|
||||
|
||||
@Override
|
||||
public void resume() {
|
||||
//Pausing and resuming isn't needed for testing
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -67,14 +69,17 @@ public class GdxTestRunner extends BlockJUnit4ClassRunner implements Application
|
||||
|
||||
@Override
|
||||
public void resize(int width, int height) {
|
||||
//Resizing a headless application doesn't make sense
|
||||
}
|
||||
|
||||
@Override
|
||||
public void pause() {
|
||||
//Pausing and resuming isn't needed for testing
|
||||
}
|
||||
|
||||
@Override
|
||||
public void dispose() {
|
||||
//Nothing created means nothing to dispose
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user