()
| 50 | private PluginRepository repository; |
| 51 | |
| 52 | @Before |
| 53 | public void setUp() throws Exception { |
| 54 | this.conf = NutchConfiguration.create(); |
| 55 | conf.set("plugin.includes", ".*"); |
| 56 | // String string = this.conf.get("plugin.includes", ""); |
| 57 | // conf.set("plugin.includes", string + "|Dummy*"); |
| 58 | fPluginCount = 5; |
| 59 | createDummyPlugins(fPluginCount); |
| 60 | this.repository = PluginRepository.get(conf); |
| 61 | } |
| 62 | |
| 63 | @After |
| 64 | public void tearDown() throws Exception { |
nothing calls this directly
no test coverage detected