mirror of
https://github.com/zhigang1992/TWU_Biblioteca.git
synced 2026-01-12 22:53:05 +08:00
14 lines
198 B
Java
14 lines
198 B
Java
package com.twu.biblioteca;
|
|
|
|
|
|
import org.junit.Test;
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
public class ExampleTest {
|
|
|
|
@Test
|
|
public void test() {
|
|
assertEquals(1, 1);
|
|
}
|
|
}
|