-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding the @ExtendWith(SeleniumJupiter.class) Annotation to all tests
- Loading branch information
1 parent
7c56a69
commit ca733ea
Showing
8 changed files
with
26 additions
and
11 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
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
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 |
---|---|---|
|
@@ -23,9 +23,11 @@ | |
import com.fullteaching.e2e.no_elastest.utils.ParameterLoader; | ||
import giis.retorch.annotations.AccessMode; | ||
import giis.retorch.annotations.Resource; | ||
import io.github.bonigarcia.seljup.SeleniumJupiter; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.DisplayName; | ||
import org.junit.jupiter.api.Tag; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.junit.jupiter.params.ParameterizedTest; | ||
import org.junit.jupiter.params.provider.Arguments; | ||
import org.junit.jupiter.params.provider.MethodSource; | ||
|
@@ -47,9 +49,8 @@ | |
* | ||
* @author Pablo Fuente ([email protected]) | ||
*/ | ||
//@Disabled | ||
@Tag("e2e") | ||
@DisplayName("E2E tests for FullTeaching REST CRUD operations") | ||
|
||
@ExtendWith(SeleniumJupiter.class) | ||
class FullTeachingEndToEndRESTTests extends BaseLoggedTest { | ||
|
||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,9 @@ | |
import com.fullteaching.e2e.no_elastest.utils.ParameterLoader; | ||
import giis.retorch.annotations.AccessMode; | ||
import giis.retorch.annotations.Resource; | ||
import io.github.bonigarcia.seljup.SeleniumJupiter; | ||
import org.junit.jupiter.api.*; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.junit.jupiter.params.ParameterizedTest; | ||
import org.junit.jupiter.params.provider.Arguments; | ||
import org.junit.jupiter.params.provider.MethodSource; | ||
|
@@ -36,9 +38,8 @@ | |
|
||
/*This test case were disabled due to problems with the OpenVidu Server. The video input doesn't work , so it's not | ||
* feasible check that in the other side of the connection its playing the stream*/ | ||
@Disabled | ||
@Tag("e2e") | ||
@DisplayName("E2E tests for FullTeaching video session") | ||
|
||
@ExtendWith(SeleniumJupiter.class) | ||
class FullTeachingTestEndToEndVideoSessionTests extends BaseLoggedTest { | ||
|
||
final String studentMail = "[email protected]"; | ||
|
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