You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, we are using Junit Jupiter's @Test and @DisplayName on our test cases. We could wrap both of these annotation to a single @Test annotation on Scaffold so we can write the DisplayName of the test inline with @Test.
@DisplayName currently provides value in formatting the SauceLabs Dashboard test results with a String other than the test method name.
For example, a single @Test annotation that looks like this:
@Test("Clicking Go Should Do the Thing")
public void testGoButton() {
insertLogicHere();
assertion;
}
A/C
Scaffold should provide an annotation that allows users to write an inline @DisplayName with the @Test annotation
Scaffold should still allow users to use the base @Test annotation if they do not want to use @DisplayName
The text was updated successfully, but these errors were encountered:
Summary
Right now, we are using Junit Jupiter's
@Test
and@DisplayName
on our test cases. We could wrap both of these annotation to a single@Test
annotation on Scaffold so we can write the DisplayName of the test inline with@Test
.@DisplayName
currently provides value in formatting the SauceLabs Dashboard test results with a String other than the test method name.For example, a single
@Test
annotation that looks like this:A/C
@DisplayName
with the@Test
annotation@Test
annotation if they do not want to use@DisplayName
The text was updated successfully, but these errors were encountered: