31323334353637383940
} public void testCreateUninitialized() { try { // DtoModuleRegistry.create(null); presenter = new ContentPresenter(42L, view, eventBus, readService, updateService, createService); // fail(); } catch (NullPointerException e) { } }
39404142434445
} } public void testCreateInitialized() { DtoModuleRegistry.create(NewDtoWizard.getConfiguration()); presenter = new ContentPresenter(42L, view, eventBus, readService, updateService, createService); }