use of org.uberfire.backend.vfs.ObservablePath in project drools-wb by kiegroup.
the class DecisionTableXLSEditorPresenterTest method testOnUploadWhenConcurrentUpdateSessionInfoIsNull.
@Test
public void testOnUploadWhenConcurrentUpdateSessionInfoIsNull() {
final ObservablePath path = mock(ObservablePath.class);
doReturn(path).when(versionRecordManager).getCurrentPath();
presenter.onUpload();
verify(view).submit(path);
assertNull(presenter.getConcurrentUpdateSessionInfo());
}
Aggregations