-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reimplemented the structure and changed abstraction node -> section; …
…section -> report;
- Loading branch information
1 parent
40607cc
commit 18cae4d
Showing
66 changed files
with
1,507 additions
and
1,086 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 0 additions & 29 deletions
29
...ava/org/arquillian/core/reporter/event/TestSuiteConfigurationContainerDeploymentNode.java
This file was deleted.
Oops, something went wrong.
37 changes: 37 additions & 0 deletions
37
.../org/arquillian/core/reporter/event/TestSuiteConfigurationContainerDeploymentSection.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package org.arquillian.core.reporter.event; | ||
|
||
import org.arquillian.reporter.api.event.SectionEvent; | ||
import org.arquillian.reporter.api.model.report.Report; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Matous Jobanek</a> | ||
*/ | ||
public class TestSuiteConfigurationContainerDeploymentSection extends | ||
SectionEvent<TestSuiteConfigurationContainerDeploymentSection, Report, TestSuiteConfigurationContainerSection> { | ||
|
||
private String containerId; | ||
private String testSuiteId; | ||
|
||
|
||
public TestSuiteConfigurationContainerDeploymentSection(String deploymentId, String containerId) { | ||
super(deploymentId); | ||
this.containerId = containerId; | ||
} | ||
|
||
public TestSuiteConfigurationContainerDeploymentSection(String deploymentId, String containerId, String testSuiteId) { | ||
super(deploymentId); | ||
this.containerId = containerId; | ||
this.testSuiteId = testSuiteId; | ||
} | ||
|
||
public TestSuiteConfigurationContainerDeploymentSection(Report sectionReport, String deploymentId, | ||
String containerId) { | ||
super(sectionReport, deploymentId); | ||
this.containerId = containerId; | ||
} | ||
|
||
@Override | ||
public TestSuiteConfigurationContainerSection getParentSectionThisSectionBelongsTo() { | ||
return new TestSuiteConfigurationContainerSection(containerId, testSuiteId); | ||
} | ||
} |
24 changes: 0 additions & 24 deletions
24
...src/main/java/org/arquillian/core/reporter/event/TestSuiteConfigurationContainerNode.java
This file was deleted.
Oops, something went wrong.
30 changes: 30 additions & 0 deletions
30
.../main/java/org/arquillian/core/reporter/event/TestSuiteConfigurationContainerSection.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package org.arquillian.core.reporter.event; | ||
|
||
import org.arquillian.reporter.api.event.SectionEvent; | ||
import org.arquillian.reporter.api.event.TestSuiteConfigurationSection; | ||
import org.arquillian.reporter.api.model.report.Report; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Matous Jobanek</a> | ||
*/ | ||
public class TestSuiteConfigurationContainerSection extends SectionEvent<TestSuiteConfigurationContainerSection, Report, TestSuiteConfigurationSection> { | ||
|
||
private String testSuiteId; | ||
|
||
public TestSuiteConfigurationContainerSection(String containerId, String testSuiteId) { | ||
super(containerId); | ||
this.testSuiteId = testSuiteId; | ||
} | ||
|
||
public TestSuiteConfigurationContainerSection(Report sectionReport, String containerId, String testSuiteId) { | ||
super(sectionReport, containerId); | ||
this.testSuiteId = testSuiteId; | ||
} | ||
|
||
@Override | ||
public TestSuiteConfigurationSection getParentSectionThisSectionBelongsTo() { | ||
return new TestSuiteConfigurationSection(testSuiteId); | ||
} | ||
|
||
// todo support multiple test suites | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.