(ExecType execType)
| 58 | } |
| 59 | |
| 60 | public void setUp(ExecType execType) throws Exception { |
| 61 | Util.resetStateForExecModeSwitch(); |
| 62 | if (execType == cluster.getExecType()) { |
| 63 | pigServer = new PigServer(cluster.getExecType(), cluster.getProperties()); |
| 64 | } else { |
| 65 | pigServer = new PigServer(Util.getLocalTestMode()); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | private void createInput(String[] data, ExecType execType) throws IOException { |
| 70 | if (execType == cluster.getExecType()) { |
no test coverage detected