CS计算机代考程序代写 junit package ed.inf.adbs.lightdb;

package ed.inf.adbs.lightdb;

import static org.junit.Assert.assertTrue;

import org.junit.Test;

/**
* Unit test for simple LightDB.
*/
public class LightDBTest {

/**
* Rigorous Test 🙂
*/
@Test
public void shouldAnswerWithTrue() {
assertTrue(true);
}
}