mirror of
https://github.com/octoleo/plantuml.git
synced 2024-12-22 02:49:06 +00:00
test: add assert help function to test tim/stdlib
This commit is contained in:
parent
3090643256
commit
ec260ff0c9
43
test/net/sourceforge/plantuml/tim/TimTestUtils.java
Normal file
43
test/net/sourceforge/plantuml/tim/TimTestUtils.java
Normal file
@ -0,0 +1,43 @@
|
||||
package net.sourceforge.plantuml.tim;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
import net.sourceforge.plantuml.tim.expression.TValue;
|
||||
import net.sourceforge.plantuml.json.JsonValue;
|
||||
|
||||
/**
|
||||
* Class to help test of `tim/stdlib`.
|
||||
*/
|
||||
public class TimTestUtils {
|
||||
|
||||
// Tfunc: () -> (String)
|
||||
public static void assertTimExpectedOutput(TFunction func, String expected) throws EaterException, EaterExceptionLocated {
|
||||
TValue tValue = func.executeReturnFunction(null, null, null, null, null);
|
||||
assertEquals(expected, tValue.toString());
|
||||
}
|
||||
|
||||
// Tfunc: (Integer) -> (String)
|
||||
public static void assertTimExpectedOutputFromInput(TFunction func, Integer input, String expected) throws EaterException, EaterExceptionLocated {
|
||||
List<TValue> values = Collections.singletonList(TValue.fromInt(input));
|
||||
TValue tValue = func.executeReturnFunction(null, null, null, values, null);
|
||||
assertEquals(expected, tValue.toString());
|
||||
}
|
||||
|
||||
// Tfunc: (String) -> (String)
|
||||
public static void assertTimExpectedOutputFromInput(TFunction func, String input, String expected) throws EaterException, EaterExceptionLocated {
|
||||
List<TValue> values = Collections.singletonList(TValue.fromString(input));
|
||||
TValue tValue = func.executeReturnFunction(null, null, null, values, null);
|
||||
assertEquals(expected, tValue.toString());
|
||||
}
|
||||
|
||||
// Tfunc: (JsonValue) -> (String)
|
||||
public static void assertTimExpectedOutputFromInput(TFunction func, JsonValue input, String expected) throws EaterException, EaterExceptionLocated {
|
||||
List<TValue> values = Collections.singletonList(TValue.fromJson(input));
|
||||
TValue tValue = func.executeReturnFunction(null, null, null, values, null);
|
||||
assertEquals(expected, tValue.toString());
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user