@Test public void PhrescoPomException7Test() { Throwable cause = new Throwable(); PhrescoPomException exc = new PhrescoPomException(POMErrorCode.BUILD_NOT_FOUND, cause); POMErrorCode code = exc.getErrorCode(); Assert.assertEquals("POME1003", exc.getErrorCode().getCode()); }
@Test public void PhrescoPomException6Test() { Throwable cause = new Throwable(); PhrescoPomException exc = new PhrescoPomException(POMErrorCode.BUILD_NOT_FOUND, cause); POMErrorCode code = exc.getErrorCode(); Assert.assertEquals("BUILD NOT AVAILABLE", exc.getErrorCode().getMessage()); }