()
| 48 | private CharID id; |
| 49 | |
| 50 | @BeforeEach |
| 51 | @Override |
| 52 | public void setUp() throws Exception |
| 53 | { |
| 54 | super.setUp(); |
| 55 | getFunctionLibrary().addFunction(new InputFunction()); |
| 56 | id = CharID.getID(context.getDataSetID()); |
| 57 | scopeFacet.set(id, getFormulaManager().getScopeInstanceFactory()); |
| 58 | variableStoreFacet.set(id, getVariableStore()); |
| 59 | solverManagerFacet.set(id, |
| 60 | context.getVariableContext().generateSolverManager(getVariableStore())); |
| 61 | } |
| 62 | |
| 63 | @Test |
| 64 | public void testInvalidTooFewArg() |
nothing calls this directly
no test coverage detected