use of org.locationtech.geogig.api.porcelain.BranchDeleteOp in project GeoGig by boundlessgeo.
the class BranchDeleteOpTest method NoBranchNameTest.
@Test
public void NoBranchNameTest() {
BranchDeleteOp testOp = new BranchDeleteOp();
testOp.setName(null);
exception.expect(IllegalStateException.class);
testOp.call();
}
Aggregations