mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-25 15:37:52 +01:00
add method testParams()
This commit is contained in:
parent
e69fe9c073
commit
1d1fbb80d6
@ -15,10 +15,19 @@
|
|||||||
*/
|
*/
|
||||||
package de.inetsoftware.jwebassembly;
|
package de.inetsoftware.jwebassembly;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Collection;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Volker Berlin
|
* @author Volker Berlin
|
||||||
*/
|
*/
|
||||||
public enum ScriptEngine {
|
public enum ScriptEngine {
|
||||||
NodeJS,
|
NodeJS,
|
||||||
SpiderMonkey,
|
SpiderMonkey;
|
||||||
|
|
||||||
|
public static Collection<Object[]> testParams() {
|
||||||
|
Object[][] val = {{ScriptEngine.SpiderMonkey}/*,{ScriptEngine.NodeJS}*/};
|
||||||
|
return Arrays.asList(val);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user