Compare commits

...

16 Commits

@ -0,0 +1,22 @@
package com.example;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
testing is in progress
Testing is in progress 1
testing 1233
testing
test testing
testing 01
testing 02
testing 01
testing 02
testing 01
testing 0788
testing 01
testing 0090

@ -1,2 +0,0 @@
PR SIZE TEST 01
PRSIZE TEST 02

@ -0,0 +1,38 @@
PR SIZE TEST 01
PRSIZE TEST 02
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.openqa.selenium.WebDriver;  
import org.openqa.selenium.chrome.ChromeDriver;  
class E2ETestCase {
private WebDriver driver;
@BeforeEach
void setUp() {
driver = new ChromeDriver();
}
@AfterEach
void tearDown() {
driver.quit();
}
@Test
void testE2E()  
{
// Arrange
driver.get("https://your-app-url");
// Act
// ...
// Assert
// ...
}
// Additional test methods...
}
Loading…
Cancel
Save