File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
src/main/java/uk/co/evoco/tests Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 8484
8585 <properties >
8686 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
87- <maven .compiler.source>13 </maven .compiler.source>
88- <maven .compiler.target>13 </maven .compiler.target>
87+ <maven .compiler.source>11 </maven .compiler.source>
88+ <maven .compiler.target>11 </maven .compiler.target>
8989 <maven .surefire.version>2.22.2</maven .surefire.version>
9090 <maven .failsafe.version>2.22.2</maven .failsafe.version>
9191 <junit .jupiter.version>5.5.2</junit .jupiter.version>
Original file line number Diff line number Diff line change 2020public abstract class BaseAbstractTest {
2121
2222 private static final Logger logger = LoggerFactory .getLogger (BaseAbstractTest .class );
23- protected String testId ;
23+ private String testId ;
2424 protected EventFiringWebDriver webDriver ;
2525 protected static ResultsManager resultsManager ;
2626
@@ -62,4 +62,12 @@ public void tearDown() {
6262 this .webDriver .quit ();
6363 }
6464
65+ /**
66+ * Provides a test ID that can be used to identify the test
67+ * @return
68+ */
69+ public String getTestId () {
70+ return this .testId ;
71+ }
72+
6573}
You can’t perform that action at this time.
0 commit comments