forked from Hithomelabs/ci-runner-test
12 lines
203 B
Java
12 lines
203 B
Java
package com.hithomelabs;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
|
|
|
class AppTest {
|
|
@Test
|
|
void appWorks() {
|
|
assertTrue(true);
|
|
}
|
|
}
|