diff --git a/appium-testng-examples/pom.xml b/appium-testng-examples/pom.xml new file mode 100644 index 00000000..dc186268 --- /dev/null +++ b/appium-testng-examples/pom.xml @@ -0,0 +1,28 @@ + + + + demo-java + com.saucelabs + 1.0-SNAPSHOT + + 4.0.0 + + appium-testng-examples + + + 11 + 11 + + + + + org.testng + testng + 6.8 + test + + + + \ No newline at end of file diff --git a/appium-testng-examples/src/test/java/com/realdevice/BiometricLoginTest.java b/appium-testng-examples/src/test/java/com/realdevice/BiometricLoginTest.java new file mode 100644 index 00000000..c7c757a7 --- /dev/null +++ b/appium-testng-examples/src/test/java/com/realdevice/BiometricLoginTest.java @@ -0,0 +1,10 @@ +package com.realdevice; +import org.testng.*; +import org.testng.annotations.Test; + +public class BiometricLoginTest { + @Test + public void testBiometricLogin() { + //code for that goes here + } +} diff --git a/appium-testng-examples/src/test/java/com/realdevice/ImageInjectionTest.java b/appium-testng-examples/src/test/java/com/realdevice/ImageInjectionTest.java new file mode 100644 index 00000000..de081e46 --- /dev/null +++ b/appium-testng-examples/src/test/java/com/realdevice/ImageInjectionTest.java @@ -0,0 +1,9 @@ +package com.realdevice; +import org.testng.annotations.Test; + +public class ImageInjectionTest { + @Test + public void testImageInjection() { + //code for that goes here + } +} diff --git a/pom.xml b/pom.xml index 4e82b22b..15a7d2d5 100644 --- a/pom.xml +++ b/pom.xml @@ -31,6 +31,7 @@ java8/selenium.junit3.examples java8/selenium4.junit4.examples best-practice + appium-testng-examples