use of com.b3dgs.lionengine.Config in project lionengine by b3dgs.
the class LoaderTest method testFilterHq3x.
/**
* Test with a hq3x filter.
*/
@Test
void testFilterHq3x() {
final Resolution output = new Resolution(960, 720, 60);
final Config config = new Config(output, 16, false);
Loader.start(config, SequenceFilterMock.class, new FilterHq3x()).await();
}
use of com.b3dgs.lionengine.Config in project lionengine by b3dgs.
the class LoaderTest method testScaled.
/**
* Test with screen scaled.
*/
@Test
void testScaled() {
final Resolution output = new Resolution(640, 480, 0);
final Config config = new Config(output, 16, true);
Loader.start(config, SequenceSingleMock.class).await();
}
use of com.b3dgs.lionengine.Config in project lionengine by b3dgs.
the class LoaderTest method testNoIconWindowed.
/**
* Test with no icon in windowed mode.
*/
@Test
void testNoIconWindowed() {
final Config config = new Config(OUTPUT, 16, true, Medias.create("void"));
Loader.start(config, SequenceSingleMock.class).await();
}
use of com.b3dgs.lionengine.Config in project lionengine by b3dgs.
the class DrawableTest method testMissingDpi.
/**
* Test success cases with missing DPI.
*/
@Test
void testMissingDpi() {
Drawable.setDpi(new Resolution(320, 240, 60), new Config(new Resolution(1920, 1200, 16), 60, false));
assertNotNull(Drawable.loadImage(Graphics.createImageBuffer(16, 32)));
assertNotNull(Drawable.loadImage(media));
assertNotNull(Drawable.loadSprite(Graphics.createImageBuffer(16, 32)));
assertNotNull(Drawable.loadSprite(media));
assertNotNull(Drawable.loadSpriteAnimated(Graphics.createImageBuffer(16, 32), 1, 1));
assertNotNull(Drawable.loadSpriteAnimated(media, 1, 1));
assertNotNull(Drawable.loadSpriteTiled(Graphics.createImageBuffer(16, 32), 1, 1));
assertNotNull(Drawable.loadSpriteTiled(media, 1, 1));
assertNotNull(Drawable.loadSpriteFont(media, font, 1, 1));
assertNotNull(Drawable.loadSpriteParallaxed(media, 1, 1, 1));
assertNotNull(Drawable.loadSpriteDigit(Graphics.createImageBuffer(16, 32), 1, 1, 1));
assertNotNull(Drawable.loadSpriteDigit(media, 1, 1, 1));
Drawable.setDpi(null);
}
Aggregations