()
| 10 | String fxStr="sin(x)"; |
| 11 | |
| 12 | ParserTest() { |
| 13 | try { |
| 14 | fxParser = new SuryonoParser("0", "x"); |
| 15 | fxParser.setFunction (fxStr); |
| 16 | } catch (ParserException ex) { |
| 17 | System.err.println(ex.getMessage()); |
| 18 | } |
| 19 | |
| 20 | showValues(fxParser); |
| 21 | } |
| 22 | |
| 23 | //void showValues(SuryonoParser fun){ // WC: this signature works |
| 24 | void showValues(Function fun){ // WC: this signature fails |
nothing calls this directly
no test coverage detected