Creating a Test
Create a JastTest in under a minute!
import me.mrxbox98.Jast.core.JastTest;
public class Test {
public static void main(String[] args) {
//Creates a new test
JastTest<String> jastTest = new JastTest<>();
//Use reflection to get the method to test
jastTest.setMethod(Test.class.getMethod("getString"));
//Unlimited number of expected values
jastTest.setExpected("tet","test");
//Name of the test
jastTest.setName("TestName");
//Description of the test
jastTest.setDescription("TestDescription");
//The time the test should take in milliseconds
jastTest.setTime(50);
//Tests the method. Add a boolean param to determine if the results should be printed out
jastTest.test();
}
public static String getString() {
return "test";
}
}
danger
Make sure to select the correct method in the JastTest#setMethod call and make sure it is a public method!
Returns:
Pass
Expected [tet, test] and got test (14ms)
testString
TestName
TestDescription
Chaining
import me.mrxbox98.Jast.core.JastTest;
public class Test {
public static void main(String[] args) {
//Creates a new test and sets both the method and expected values in one line
JastTest<String> jastTest = new JastTest<>().jastTest.setMethod(Test.class.getMethod("getString")).setExpected("tet","test");
}
public static String getString() {
return "test";
}
}
danger
Make sure to select the correct method in the JastTest#setMethod call and make sure it is a public method!
Returns:
Pass
Expected [tet, test] and got test (14ms)
Mass Testing
import me.mrxbox98.Jast.core.JastTest;
import me.mrxbox98.Jast.core.MassTest;
public class Test {
public static void main(String[] args)
{
try {
MassTest<Byte> byteMassTest = new MassTest<>();
JastTest<Byte> byteTest1 = new JastTest<>();
byteTest1.setMethod(Test.class.getMethod("byteTest1"));
byteTest1.setExpected((byte) 1);
byteMassTest.add(byteTest1);
JastTest<Byte> byteTest2 = new JastTest<>();
byteTest2.setMethod(Test.class.getMethod("byteTest2"));
byteTest2.setExpected((byte) 2);
byteMassTest.add(byteTest2);
JastTest<Byte> byteTest3 = new JastTest<>();
byteTest3.setMethod(Test.class.getMethod("byteTest3"));
byteTest3.setExpected();
byteMassTest.add(byteTest3);
byteMassTest.test(true);
} catch (NoSuchMethodException e) {
e.printStackTrace();
}
}
public static Byte byteTest1()
{
return 1;
}
public static Byte byteTest2()
{
return 2;
}
public static Byte byteTest3()
{
return null;
}
}
danger
Make sure to select the correct method in the JastTest#setMethod call and make sure it is a public method!
Returns:
Pass (1/3)
Pass (2/3)
Pass (3/3)
Error Testing
import me.mrxbox98.Jast.core.JastTest;
import me.mrxbox98.Jast.core.MassTest;
public class ByteTest {
public static void main(String[] args)
{
try {
MassTest byteMassTest = new MassTest();
JastTest<Byte> byteTest1 = new JastTest<>();
byteTest1.setMethod(ByteTest.class.getMethod("byteTest1"));
byteTest1.setExpected((byte) 1);
byteMassTest.add(byteTest1);
JastTest<Byte> byteTest2 = new JastTest<>();
byteTest2.setMethod(ByteTest.class.getMethod("byteTest2"));
byteTest2.setExpected((byte) 2);
byteMassTest.add(byteTest2);
JastTest<Byte> byteTest3 = new JastTest<>();
byteTest3.setMethod(ByteTest.class.getMethod("byteTest3"));
byteTest3.setExpected();
byteMassTest.add(byteTest3);
JastTest<Exception> byteTest4 = new JastTest<>();
byteTest4.setMethod(ByteTest.class.getMethod("byteTest4"));
byteTest4.setExpected(new ArrayIndexOutOfBoundsException());
byteMassTest.add(byteTest4);
JastTest<Exception> byteTest5 = new JastTest<>();
byteTest5.setMethod(ByteTest.class.getMethod("byteTest5"));
byteTest5.setExpected(new IllegalArgumentException());
byteMassTest.add(byteTest5);
byteMassTest.test(true);
} catch (NoSuchMethodException e) {
e.printStackTrace();
}
}
public static Byte byteTest1()
{
return 1;
}
public static Byte byteTest2()
{
return 2;
}
public static Byte byteTest3()
{
return null;
}
public static Byte byteTest4()
{
throw new ArrayIndexOutOfBoundsException();
}
public static Byte byteTest5()
{
throw new IllegalArgumentException();
}
}
danger
Make sure to select the correct method in the JastTest#setMethod call and make sure it is a public method!
Returns:
Pass (1/5)
Pass (2/5)
Pass (3/5)
Pass (4/5)
Pass (5/5)