package org.openslx.runvirt.plugin.qemu; import static org.junit.jupiter.api.Assertions.assertTrue; import org.apache.log4j.Level; import org.apache.log4j.LogManager; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; public class AppTest { @BeforeAll public static void setUp() { // disable logging with log4j LogManager.getRootLogger().setLevel( Level.OFF ); } @Test public void shouldAnswerWithTrue() { assertTrue( true ); } }