We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe898e5 commit f97f8ceCopy full SHA for f97f8ce
src/test/java/com/microfocus/application/automation/tools/octane/EnumsTest.java
@@ -53,13 +53,14 @@ public void testCIEventCauseType() {
53
54
@Test
55
public void testCIEventType() {
56
- assertEquals(CIEventType.values().length, 6);
+ assertEquals(CIEventType.values().length, 7);
57
assertEquals(CIEventType.QUEUED.value(), "queued");
58
assertEquals(CIEventType.SCM.value(), "scm");
59
assertEquals(CIEventType.STARTED.value(), "started");
60
assertEquals(CIEventType.FINISHED.value(), "finished");
61
assertEquals(CIEventType.fromValue("queued"), CIEventType.QUEUED);
62
assertEquals(CIEventType.DELETED.value(),"deleted" );
63
+ assertEquals(CIEventType.RENAMED.value(),"renamed" );
64
}
65
66
0 commit comments