public class ToolTest {
@Test
public void testgetMax(){
int max = Tool.getMax();
Assert.assertSame(5, max);
}
@Test
public void testgetMin(){
int min = Tool.getMin();
Assert.assertSame(3, min);
}
}
@Test
public void testgetMax(){
int max = Tool.getMax();
Assert.assertSame(5, max);
}
@Test
public void testgetMin(){
int min = Tool.getMin();
Assert.assertSame(3, min);
}
}