mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-19 00:15:43 +01:00
14 lines
197 B
Java
14 lines
197 B
Java
|
package no.finn.unleash;
|
||
|
|
||
|
import org.junit.Test;
|
||
|
|
||
|
import static org.junit.Assert.assertTrue;
|
||
|
|
||
|
public class UnleashTest {
|
||
|
|
||
|
@Test
|
||
|
public void helloWorld() {
|
||
|
assertTrue(true);
|
||
|
}
|
||
|
}
|