diff --git a/Reports/DCIM_Counts_Check.html b/Reports/DCIM_Counts_Check.html new file mode 100644 index 0000000..8940134 --- /dev/null +++ b/Reports/DCIM_Counts_Check.html @@ -0,0 +1,491 @@ + + + + + + + + + + + + + + + + + + ExtentReports + + + + + +
+ desktop_windows +
+ + + + +
+ +
+ +
+ +
+ + +
+
+
+
+
Tests
+
+ +
+
+ 6 test(s) passed +
+
+ 0 test(s) failed, 0 others +
+
+
+ +
+
+
Steps
+
+ +
+
+ 6 step(s) passed +
+
+ 0 step(s) failed, 0 others +
+
+
+ +
+
+ +
+ +
+
Tests
+
    + + +
  • +
    + Track_Medinsight_Count + Oct 18, 2023 02:16:46 PM + pass +
    +
    +
    + Oct 18, 2023 02:16:46 PM + Oct 18, 2023 02:21:44 PM + 0h 4m 57s+961ms +
    +
    + + + + + + + + + + + + + + + +
    StatusTimestampDetails
    check_circle2:21:44 PMTest passed
    +
    +
    +
  • + + +
  • +
    + Track_Interaction_Export + Oct 18, 2023 02:21:44 PM + pass +
    +
    +
    + Oct 18, 2023 02:21:44 PM + Oct 18, 2023 02:22:46 PM + 0h 1m 2s+618ms +
    +
    + + + + + + + + + + + + + + + +
    StatusTimestampDetails
    check_circle2:22:46 PMTest passed
    +
    +
    +
  • + + +
  • +
    + Discover_Count + Oct 18, 2023 02:22:47 PM + pass +
    +
    +
    + Oct 18, 2023 02:22:47 PM + Oct 18, 2023 02:27:14 PM + 0h 4m 27s+508ms +
    +
    + + + + + + + + + + + + + + + +
    StatusTimestampDetails
    check_circle2:27:14 PMTest passed
    +
    +
    +
  • + + +
  • +
    + Contacts_Count + Oct 18, 2023 02:27:14 PM + pass +
    +
    +
    + Oct 18, 2023 02:27:14 PM + Oct 18, 2023 02:32:19 PM + 0h 5m 5s+59ms +
    +
    + + + + + + + + + + + + + + + +
    StatusTimestampDetails
    check_circle2:32:19 PMTest passed
    +
    +
    +
  • + + +
  • +
    + Track_Medinsght_Export + Oct 18, 2023 02:32:19 PM + pass +
    +
    +
    + Oct 18, 2023 02:32:19 PM + Oct 18, 2023 02:37:18 PM + 0h 4m 59s+116ms +
    +
    + + + + + + + + + + + + + + + +
    StatusTimestampDetails
    check_circle2:37:18 PMTest passed
    +
    +
    +
  • + + +
  • +
    + Track_Interaction_Count + Oct 18, 2023 02:37:18 PM + pass +
    +
    +
    + Oct 18, 2023 02:37:18 PM + Oct 18, 2023 02:41:31 PM + 0h 4m 12s+411ms +
    +
    + + + + + + + + + + + + + + + +
    StatusTimestampDetails
    check_circle2:41:31 PMTest passed
    +
    +
    +
  • +
+
+
+ + +
+
+
+ +
+ info_outline + check_circle + cancel + cancel + error + warning + redo + clear +
+
+
+ + +
+ + + +
+
+
Dashboard
+ +
+
+
+ Tests +
6
+
+
+
+
+ Steps +
6
+
+
+
+
+ Start +
Oct 18, 2023 02:16:45 PM
+
+
+
+
+ End +
Oct 18, 2023 02:41:31 PM
+
+
+
+
+ Time Taken +
0h 24m 45s+396ms
+
+
+
+
+ Environment

 

+ + + + + + + + + + + + + + + + + + +
NameValue
Report NameKonectar Test Automation Report
Document TitleTest Results
Report TitleTest Execution Report
+
+
+
+
+
+ + +
+ + + + + + + + + + + diff --git a/pom.xml b/pom.xml index 5564483..f4ced06 100644 --- a/pom.xml +++ b/pom.xml @@ -35,6 +35,21 @@ test + + + com.relevantcodes + extentreports + 2.41.2 + + + + + com.aventstack + extentreports + 3.1.5 + + + io.cucumber gherkin @@ -81,6 +96,13 @@ 0.8.6 + + + commons-io + commons-io + 2.13.0 + + @@ -129,7 +151,7 @@ test - + diff --git a/src/test/java/TestScripts/Contacts_Count.java b/src/test/java/TestScripts/Contacts_Count.java index b5d7b9f..2dc8450 100644 --- a/src/test/java/TestScripts/Contacts_Count.java +++ b/src/test/java/TestScripts/Contacts_Count.java @@ -8,17 +8,19 @@ import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.testng.annotations.Test; +import Utilities.BaseTest; import Utilities.ConfigReader; +import Utilities.ConsoleOutputToFile; import io.github.bonigarcia.wdm.WebDriverManager; -public class Contacts_Count +public class Contacts_Count extends BaseTest { @Test public void Contactscount() throws InterruptedException { WebDriverManager.chromedriver().setup(); WebDriver driver = new ChromeDriver(); - + ConsoleOutputToFile.redirectConsoleOutput(); ConfigReader config = new ConfigReader(); diff --git a/src/test/java/TestScripts/Discover_Count.java b/src/test/java/TestScripts/Discover_Count.java index e17b1d2..ff8d6e2 100644 --- a/src/test/java/TestScripts/Discover_Count.java +++ b/src/test/java/TestScripts/Discover_Count.java @@ -13,17 +13,20 @@ import org.openqa.selenium.support.ui.WebDriverWait; import org.testng.annotations.Test; import org.testng.internal.BaseClassFinder; +import Utilities.BaseTest; import Utilities.ConfigReader; +import Utilities.ConsoleOutputToFile; import Utilities.readConfigFile; import io.github.bonigarcia.wdm.WebDriverManager; -public class Discover_Count +public class Discover_Count extends BaseTest { @Test public void Discovercount() throws InterruptedException { WebDriverManager.chromedriver().setup(); WebDriver driver = new ChromeDriver(); + ConsoleOutputToFile.redirectConsoleOutput(); ConfigReader config = new ConfigReader(); // Define the sets you want to use String[] sets = {"set1", "set2", "set4", "set5", "set6", "set7"}; diff --git a/src/test/java/TestScripts/Track_Interaction_Count.java b/src/test/java/TestScripts/Track_Interaction_Count.java index 9284533..7786f54 100644 --- a/src/test/java/TestScripts/Track_Interaction_Count.java +++ b/src/test/java/TestScripts/Track_Interaction_Count.java @@ -18,17 +18,20 @@ import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.support.ui.ExpectedConditions; +import Utilities.BaseTest; import Utilities.ConfigReader; +import Utilities.ConsoleOutputToFile; import Utilities.readConfigFile; import io.github.bonigarcia.wdm.WebDriverManager; -public class Track_Interaction_Count +public class Track_Interaction_Count extends BaseTest { @Test public void Interactioncount() throws InterruptedException { WebDriverManager.chromedriver().setup(); WebDriver driver = new ChromeDriver(); + ConsoleOutputToFile.redirectConsoleOutput(); ConfigReader config = new ConfigReader(); // Define the sets you want to use String[] sets = {"set1", "set2", "set3", "set4", "set5", "set6", "set7"}; diff --git a/src/test/java/TestScripts/Track_Interaction_Export.java b/src/test/java/TestScripts/Track_Interaction_Export.java index f5c9b62..baf30e8 100644 --- a/src/test/java/TestScripts/Track_Interaction_Export.java +++ b/src/test/java/TestScripts/Track_Interaction_Export.java @@ -16,16 +16,19 @@ import org.testng.annotations.Test; import com.google.common.collect.ImmutableMap; +import Utilities.BaseTest; import Utilities.ConfigReader; +import Utilities.ConsoleOutputToFile; import Utilities.readConfigFile; import io.github.bonigarcia.wdm.WebDriverManager; -public class Track_Interaction_Export +public class Track_Interaction_Export extends BaseTest { @Test public void Interactionexport() throws InterruptedException { ChromeOptions options = new ChromeOptions(); + ConsoleOutputToFile.redirectConsoleOutput(); // Set the download directory options.addArguments("download.default_directory=" +System.getProperty("user.dir")); // Disable the download prompt @@ -35,8 +38,8 @@ public class Track_Interaction_Export WebDriver driver = new ChromeDriver(); ConfigReader config = new ConfigReader(); // Define the sets you want to use - String[] sets = {"set1", "set2", "set3", "set4", "set5", "set6", "set7"}; - //String[] sets = {"set1"}; + //String[] sets = {"set1", "set2", "set3", "set4", "set5", "set6", "set7"}; + String[] sets = {"set1"}; Thread.sleep(10000); for (String set : sets) { Thread.sleep(10000); diff --git a/src/test/java/TestScripts/Track_Medinsght_Export.java b/src/test/java/TestScripts/Track_Medinsght_Export.java index 25591d5..8dcf848 100644 --- a/src/test/java/TestScripts/Track_Medinsght_Export.java +++ b/src/test/java/TestScripts/Track_Medinsght_Export.java @@ -17,16 +17,19 @@ import org.testng.annotations.Test; import com.google.common.collect.ImmutableMap; +import Utilities.BaseTest; import Utilities.ConfigReader; +import Utilities.ConsoleOutputToFile; import io.github.bonigarcia.wdm.WebDriverManager; -public class Track_Medinsght_Export +public class Track_Medinsght_Export extends BaseTest { @Test public void Medinsightexport() throws InterruptedException { ChromeOptions options = new ChromeOptions(); + ConsoleOutputToFile.redirectConsoleOutput(); // Set the download directory //options.addArguments("download.default_directory=/home/aissel/git4"); options.addArguments("download.default_directory=" +System.getProperty("user.dir")); diff --git a/src/test/java/TestScripts/Track_Medinsight_Count.java b/src/test/java/TestScripts/Track_Medinsight_Count.java index 4f29611..86dbe11 100644 --- a/src/test/java/TestScripts/Track_Medinsight_Count.java +++ b/src/test/java/TestScripts/Track_Medinsight_Count.java @@ -13,21 +13,24 @@ import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; import org.testng.annotations.Test; +import Utilities.BaseTest; import Utilities.ConfigReader; +import Utilities.ConsoleOutputToFile; import Utilities.readConfigFile; import io.github.bonigarcia.wdm.WebDriverManager; -public class Track_Medinsight_Count +public class Track_Medinsight_Count extends BaseTest { @Test public void Medsightcount() throws InterruptedException { WebDriverManager.chromedriver().setup(); WebDriver driver = new ChromeDriver(); + ConsoleOutputToFile.redirectConsoleOutput(); ConfigReader config = new ConfigReader(); // Define the sets you want to use String[] sets = {"set1", "set2", "set3", "set4", "set5", "set6", "set7"}; - //String[] sets = {"set"}; + //String[] sets = {"set1"}; Thread.sleep(10000); for (String set : sets) { Thread.sleep(10000); @@ -64,7 +67,7 @@ public class Track_Medinsight_Count driver.findElement(By.xpath("//p[@id='settings_menu ']")).click(); driver.findElement(By.xpath("//a[@onclick='logoutOtherURLS()']")).click(); - Thread.sleep(3000); + Thread.sleep(5000); } driver.quit(); diff --git a/src/test/java/Utilities/BaseTest.java b/src/test/java/Utilities/BaseTest.java new file mode 100644 index 0000000..b27c35e --- /dev/null +++ b/src/test/java/Utilities/BaseTest.java @@ -0,0 +1,83 @@ +package Utilities; + +import com.aventstack.extentreports.ExtentReports; +import com.aventstack.extentreports.reporter.ExtentHtmlReporter; +import com.aventstack.extentreports.ExtentTest; +import com.aventstack.extentreports.Status; +import java.io.File; +import java.io.IOException; +import org.apache.commons.io.FileUtils; +import org.openqa.selenium.OutputType; +import org.openqa.selenium.TakesScreenshot; +import org.testng.ITestResult; +import org.testng.annotations.AfterMethod; +import org.testng.annotations.BeforeMethod; +import org.testng.annotations.BeforeSuite; +import org.testng.annotations.AfterSuite; + +public class BaseTest { + protected static ExtentReports extent; + protected ExtentTest test; + private static ExtentHtmlReporter htmlReporter; + + @BeforeSuite + public void beforeSuite() { + extent = new ExtentReports(); + htmlReporter = new ExtentHtmlReporter(ConfigurationManager.getReportPath()); + extent.attachReporter(htmlReporter); + extent.setSystemInfo("Report Name", ConfigurationManager.getReportName()); + extent.setSystemInfo("Document Title", ConfigurationManager.getDocumentTitle()); + extent.setSystemInfo("Report Title", ConfigurationManager.getReportTitle()); + // htmlReporter.config().setTheme(ConfigurationManager.getTheme()); + } + + @BeforeMethod + public void beforeMethod() { + test = extent.createTest(getClass().getSimpleName()); + } + + @AfterMethod + public void afterMethod(ITestResult result) { + if (result.getStatus() == ITestResult.SUCCESS) { + test.log(Status.PASS, "Test passed"); + } else if (result.getStatus() == ITestResult.FAILURE) { + test.log(Status.FAIL, "Test failed"); + }else if (result.getStatus() == ITestResult.SKIP) { + test.log(Status.SKIP, "Test skipped"); + //captureScreenshot(); + } + extent.flush(); + } + + @AfterSuite + public void afterSuite() { + // Close the extent report after all tests have executed. + } + + /* private void captureScreenshot() { + if (WebDriverFactory.getDriver() instanceof TakesScreenshot) { + TakesScreenshot screenshotDriver = (TakesScreenshot) WebDriverFactory.getDriver(); + byte[] screenshot = screenshotDriver.getScreenshotAs(OutputType.BYTES); + + // Convert the screenshot to a Base64 encoded string + String base64Screenshot = Base64.getEncoder().encodeToString(screenshot); + + // Add the Base64 encoded screenshot to the Extent Report + test.(base64Screenshot);*/ + } + + + + + + + +/* + * private static ExtentReports extent; + * + * public static ExtentReports getInstance() { if (extent == null) { extent = + * new ExtentReports(); ExtentHtmlReporter htmlReporter = new + * ExtentHtmlReporter("./Reports/Kontest.html"); + * extent.attachReporter(htmlReporter); // Add additional configurations if + * needed } return extent; } + */ diff --git a/src/test/java/Utilities/ConfigurationManager.java b/src/test/java/Utilities/ConfigurationManager.java new file mode 100644 index 0000000..278fec5 --- /dev/null +++ b/src/test/java/Utilities/ConfigurationManager.java @@ -0,0 +1,44 @@ +package Utilities; + +import java.io.FileInputStream; +import java.io.IOException; +import java.util.Properties; + +public class ConfigurationManager +{ + + + // private static final String PROPERTY_FILE_PATH = "extent-config.properties"; + private static Properties properties; + + static { + properties = new Properties(); + try { + FileInputStream fis = new FileInputStream(System.getProperty("user.dir")+"/src/test/resources/extent-config.properties"); + properties.load(fis); + } catch (IOException e) { + e.printStackTrace(); + } + } + + public static String getReportPath() { + return properties.getProperty("reportPath"); + } + + public static String getReportName() { + return properties.getProperty("extent.config.reportName"); + } + + public static String getDocumentTitle() { + return properties.getProperty("extent.config.documentTitle"); + } + + public static String getReportTitle() { + return properties.getProperty("extent.config.reportTitle"); + } + + public static String getTheme() { + return properties.getProperty("extent.config.theme"); + } + } + diff --git a/src/test/java/Utilities/ConsoleOutputToFile.java b/src/test/java/Utilities/ConsoleOutputToFile.java new file mode 100644 index 0000000..30539ec --- /dev/null +++ b/src/test/java/Utilities/ConsoleOutputToFile.java @@ -0,0 +1,22 @@ +package Utilities; + +import java.io.File; +import java.io.FileNotFoundException; +import java.io.PrintStream; +import java.text.SimpleDateFormat; +import java.util.Date; + +public class ConsoleOutputToFile { + + public static void redirectConsoleOutput() { + String timeStamp = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss z").format(new Date()); + String fileName = "console-output-" + timeStamp + ".txt"; + + try { + PrintStream fileStream = new PrintStream(new File(fileName)); + System.setOut(fileStream); + } catch (FileNotFoundException e) { + e.printStackTrace(); + } + } +} diff --git a/src/test/resources/browser-config.properties b/src/test/resources/browser-config.properties index c14af06..6e10210 100644 --- a/src/test/resources/browser-config.properties +++ b/src/test/resources/browser-config.properties @@ -2,34 +2,34 @@ # Set 1 set1.url=https://Syros.konectar.io set1.username=syrosmanager@aissel.com -set1.password=Julkonec*23 +set1.password=konecO*$23 # Set 2 set2.url=https://cmsu.konectar.io set2.username=cmsumanager@aissel.com -set2.password=Jukonec*23 +set2.password=konecO*$23 # Set 3 set3.url=https://cardio.konectar.io set3.username=iteosmgr@aissel.com -set3.password=Jukonec*23 +set3.password=konecO*$23 # Set 4 set4.url=https://cardio.konectar.io set4.username=sareptamgr@aissel.com -set4.password=Jukonec*23 +set4.password=konecO*$23 # Set 5 set5.url=https://cardio.konectar.io set5.username=tika_manager@aissel.com -set5.password=Jukonec*23 +set5.password=konecO*$23 # Set 6 set6.url=https://cardio.konectar.io set6.username=bdtxmanager@aissel.com -set6.password=Welcome@1234 +set6.password=konecO*$23 # Set 7 set7.url=https://tidesmedical.konectar.io set7.username=tidesmanager@aissel.com -set7.password=Jukonec*23 \ No newline at end of file +set7.password=konecO*$23 \ No newline at end of file diff --git a/src/test/resources/extent-config.properties b/src/test/resources/extent-config.properties new file mode 100644 index 0000000..4012acf --- /dev/null +++ b/src/test/resources/extent-config.properties @@ -0,0 +1,10 @@ +# extent-config.properties + +# Report path +reportPath=./Reports/DCIM_Counts_Check.html + +# Extent Report configuration +extent.config.reportName=Konectar Test Automation Report +extent.config.documentTitle=Test Results +extent.config.reportTitle=Test Execution Report +extent.config.theme=dark diff --git a/test-output/DCIM_Counts_Check by packages/TestScripts.html b/test-output/DCIM_Counts_Check by packages/TestScripts.html new file mode 100644 index 0000000..9376b8d --- /dev/null +++ b/test-output/DCIM_Counts_Check by packages/TestScripts.html @@ -0,0 +1,109 @@ + + +TestNG: TestScripts + + + + + + + + +

TestScripts

+ + + + + + + + + + + +
Tests passed/Failed/Skipped:6/0/0
Started on:Wed Oct 18 11:26:31 IST 2023
Total time:1719 seconds (1719547 ms)
Included groups:
Excluded groups:

+(Hover the method name to see the test class name)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PASSED TESTS
Test methodExceptionTime (seconds)Instance
Contactscount
Test class: TestScripts.Contacts_Count
295TestScripts.Contacts_Count@30c93896
Discovercount
Test class: TestScripts.Discover_Count
273TestScripts.Discover_Count@7a220c9a
Interactioncount
Test class: TestScripts.Track_Interaction_Count
257TestScripts.Track_Interaction_Count@21ba0741
Interactionexport
Test class: TestScripts.Track_Interaction_Export
296TestScripts.Track_Interaction_Export@59a008ba
Medinsightexport
Test class: TestScripts.Track_Medinsght_Export
300TestScripts.Track_Medinsght_Export@338c99c8
Medsightcount
Test class: TestScripts.Track_Medinsight_Count
296TestScripts.Track_Medinsight_Count@2421cc4

+ + \ No newline at end of file diff --git a/test-output/DCIM_Counts_Check by packages/TestScripts.xml b/test-output/DCIM_Counts_Check by packages/TestScripts.xml new file mode 100644 index 0000000..3059e44 --- /dev/null +++ b/test-output/DCIM_Counts_Check by packages/TestScripts.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/test-output/Default suite/Default test.html b/test-output/Default suite/Default test.html index fe8121d..6571382 100644 --- a/test-output/Default suite/Default test.html +++ b/test-output/Default suite/Default test.html @@ -55,11 +55,11 @@ function toggleAllBoxes() {

Default test

- + - + - + @@ -75,10 +75,35 @@ function toggleAllBoxes() { + + + + + + + + + + + + + + + + + + + + - - + + + + + + +
Tests passed/Failed/Skipped:1/0/0Tests passed/Failed/Skipped:6/0/0
Started on:Wed Oct 11 10:04:11 IST 2023Started on:Wed Oct 18 14:16:46 IST 2023
Total time:56 seconds (56064 ms)
Total time:1485 seconds (1485277 ms)
Included groups:
Instance
Contactscount
Test class: TestScripts.Contacts_Count
305TestScripts.Contacts_Count@8576fa0
Discovercount
Test class: TestScripts.Discover_Count
267TestScripts.Discover_Count@558bdf1f
Interactioncount
Test class: TestScripts.Track_Interaction_Count
252TestScripts.Track_Interaction_Count@67545b57
Interactionexport
Test class: TestScripts.Track_Interaction_Export
62TestScripts.Track_Interaction_Export@27216cd
Medinsightexport
Test class: TestScripts.Track_Medinsght_Export
56TestScripts.Track_Medinsght_Export@39ac0c0a
299TestScripts.Track_Medinsght_Export@7582ff54
Medsightcount
Test class: TestScripts.Track_Medinsight_Count
297TestScripts.Track_Medinsight_Count@492691d7

\ No newline at end of file diff --git a/test-output/Default suite/Default test.xml b/test-output/Default suite/Default test.xml index 3c18522..eadfafa 100644 --- a/test-output/Default suite/Default test.xml +++ b/test-output/Default suite/Default test.xml @@ -1,5 +1,46 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test-output/Default suite/testng-failed.xml b/test-output/Default suite/testng-failed.xml index 6a2fbbf..08e8f86 100644 --- a/test-output/Default suite/testng-failed.xml +++ b/test-output/Default suite/testng-failed.xml @@ -3,11 +3,11 @@ - + - + - + diff --git a/test-output/emailable-report.html b/test-output/emailable-report.html index 2cded5c..adb51cc 100644 --- a/test-output/emailable-report.html +++ b/test-output/emailable-report.html @@ -9,10 +9,15 @@ - +
Test# Passed# Skipped# FailedTime (ms)Included GroupsExcluded Groups
Default suite
Default test10056,064
Default test6001,485,277
- +
ClassMethodStartTime (ms)
Default suite
Default test — passed
TestScripts.Track_Medinsght_ExportMedinsightexport169699885144756038
ClassMethodStartTime (ms)
Default suite
Default test — passed
TestScripts.Contacts_CountContactscount1697619434604305057
TestScripts.Discover_CountDiscovercount1697619167022267505
TestScripts.Track_Interaction_CountInteractioncount1697620038910252409
TestScripts.Track_Interaction_ExportInteractionexport169761910432762615
TestScripts.Track_Medinsght_ExportMedinsightexport1697619739745299114
TestScripts.Track_Medinsight_CountMedsightcount1697618806142297953
-

Default test

TestScripts.Track_Medinsght_Export#Medinsightexport

back to summary

+

Default test

TestScripts.Contacts_Count#Contactscount

back to summary

+

TestScripts.Discover_Count#Discovercount

back to summary

+

TestScripts.Track_Interaction_Count#Interactioncount

back to summary

+

TestScripts.Track_Interaction_Export#Interactionexport

back to summary

+

TestScripts.Track_Medinsght_Export#Medinsightexport

back to summary

+

TestScripts.Track_Medinsight_Count#Medsightcount

back to summary

diff --git a/test-output/index.html b/test-output/index.html index 7bf2064..09c354c 100644 --- a/test-output/index.html +++ b/test-output/index.html @@ -91,7 +91,7 @@
@@ -117,6 +142,66 @@
+
+
+ + TestScripts.Track_Interaction_Count +
+
+
+
+ + + Interactioncount +
+
+
+
+
+
+ + TestScripts.Discover_Count +
+
+
+
+ + + Discovercount +
+
+
+
+
+
+ + TestScripts.Contacts_Count +
+
+
+
+ + + Contactscount +
+
+
+
+
+
+ + TestScripts.Track_Interaction_Export +
+
+
+
+ + + Interactionexport +
+
+
+
@@ -132,10 +217,25 @@
+
+
+ + TestScripts.Track_Medinsight_Count +
+
+
+
+ + + Medsightcount +
+
+
+
- /tmp/testng-eclipse-194801848/testng-customsuite.xml + /tmp/testng-eclipse--668398778/testng-customsuite.xml
@@ -144,7 +244,17 @@
 <suite name="Default suite" guice-stage="DEVELOPMENT">
   <test thread-count="5" name="Default test" verbose="2">
     <classes>
+      <class name="Utilities.ConfigurationManager"/>
+      <class name="Utilities.readConfigFile"/>
+      <class name="Utilities.ConsoleOutputToFile"/>
+      <class name="TestScripts.Track_Medinsight_Count"/>
+      <class name="Utilities.ConfigReader"/>
+      <class name="Utilities.BaseTest"/>
+      <class name="TestScripts.Track_Interaction_Export"/>
+      <class name="TestScripts.Discover_Count"/>
+      <class name="TestScripts.Contacts_Count"/>
       <class name="TestScripts.Track_Medinsght_Export"/>
+      <class name="TestScripts.Track_Interaction_Count"/>
     </classes>
   </test> <!-- Default test -->
 </suite> <!-- Default suite -->
@@ -158,7 +268,7 @@
           
  • - Default test (1 class) + Default test (11 classes)
@@ -184,16 +294,36 @@ data.addColumn('number', 'Number'); data.addColumn('string', 'Method'); data.addColumn('string', 'Class'); data.addColumn('number', 'Time (ms)'); -data.addRows(1); +data.addRows(6); data.setCell(0, 0, 0) -data.setCell(0, 1, 'Medinsightexport') -data.setCell(0, 2, 'TestScripts.Track_Medinsght_Export') -data.setCell(0, 3, 56038); +data.setCell(0, 1, 'Contactscount') +data.setCell(0, 2, 'TestScripts.Contacts_Count') +data.setCell(0, 3, 305057); +data.setCell(1, 0, 1) +data.setCell(1, 1, 'Medinsightexport') +data.setCell(1, 2, 'TestScripts.Track_Medinsght_Export') +data.setCell(1, 3, 299114); +data.setCell(2, 0, 2) +data.setCell(2, 1, 'Medsightcount') +data.setCell(2, 2, 'TestScripts.Track_Medinsight_Count') +data.setCell(2, 3, 297953); +data.setCell(3, 0, 3) +data.setCell(3, 1, 'Discovercount') +data.setCell(3, 2, 'TestScripts.Discover_Count') +data.setCell(3, 3, 267505); +data.setCell(4, 0, 4) +data.setCell(4, 1, 'Interactioncount') +data.setCell(4, 2, 'TestScripts.Track_Interaction_Count') +data.setCell(4, 3, 252409); +data.setCell(5, 0, 5) +data.setCell(5, 1, 'Interactionexport') +data.setCell(5, 2, 'TestScripts.Track_Interaction_Export') +data.setCell(5, 3, 62615); window.suiteTableData['Default_suite']= { tableData: data, tableDiv: 'times-div-Default_suite'} return data; } - Total running time: 56 seconds + Total running time: 24 minutes
@@ -208,9 +338,63 @@ return data;
- 0 ignored methods + 12 ignored methods
+
+ Utilities.BaseTest +
+ beforeSuite +
+ afterSuite +
+
+
+
+ TestScripts.Track_Interaction_Count +
+ beforeSuite +
+ afterSuite +
+
+
+
+ TestScripts.Discover_Count +
+ beforeSuite +
+ afterSuite +
+
+
+
+ TestScripts.Contacts_Count +
+ beforeSuite +
+ afterSuite +
+
+
+
+ TestScripts.Track_Interaction_Export +
+ beforeSuite +
+ afterSuite +
+
+
+
+ TestScripts.Track_Medinsght_Export +
+ beforeSuite +
+ afterSuite +
+
+
@@ -218,12 +402,106 @@ return data; Methods in chronological order
+
+
TestScripts.Track_Medinsight_Count
+
+ beforeSuite + 0 ms +
+
+ beforeMethod + 224 ms +
+
+ Medsightcount + 231 ms +
+
+ afterMethod([TestResult name=Medsightcount status=SUCCESS method=Track_Medinsight_Count.Medsightcount()[pri:0, i...) + 298186 ms +
+
+
+
TestScripts.Track_Interaction_Export
+
+ beforeMethod + 298415 ms +
+
+ Interactionexport + 298416 ms +
+
+ afterMethod([TestResult name=Interactionexport status=SUCCESS method=Track_Interaction_Export.Interactionexport(...) + 361033 ms +
+
+
+
TestScripts.Discover_Count
+
+ beforeMethod + 361110 ms +
+
+ Discovercount + 361111 ms +
+
+ afterMethod([TestResult name=Discovercount status=SUCCESS method=Discover_Count.Discovercount()[pri:0, instance:...) + 628619 ms +
+
+
+
TestScripts.Contacts_Count
+
+ beforeMethod + 628692 ms +
+
+ Contactscount + 628693 ms +
+
+ afterMethod([TestResult name=Contactscount status=SUCCESS method=Contacts_Count.Contactscount()[pri:0, instance:...) + 933752 ms +
+
TestScripts.Track_Medinsght_Export
+
+ beforeMethod + 933833 ms +
Medinsightexport - 0 ms + 933834 ms
+
+ afterMethod([TestResult name=Medinsightexport status=SUCCESS method=Track_Medinsght_Export.Medinsightexport()[pr...) + 1232949 ms +
+
+
+
TestScripts.Track_Interaction_Count
+
+ beforeMethod + 1232999 ms +
+
+ Interactioncount + 1232999 ms +
+
+ afterMethod([TestResult name=Interactioncount status=SUCCESS method=Track_Interaction_Count.Interactioncount()[p...) + 1485410 ms +
+
+
+
TestScripts.Track_Medinsight_Count
+
+ afterSuite + 1485508 ms +
diff --git a/test-output/junitreports/TEST-TestScripts.Contacts_Count.xml b/test-output/junitreports/TEST-TestScripts.Contacts_Count.xml index 5fa8d05..0f00137 100644 --- a/test-output/junitreports/TEST-TestScripts.Contacts_Count.xml +++ b/test-output/junitreports/TEST-TestScripts.Contacts_Count.xml @@ -1,66 +1,5 @@ - - - - - - + + diff --git a/test-output/junitreports/TEST-TestScripts.Discover_Count.xml b/test-output/junitreports/TEST-TestScripts.Discover_Count.xml index d8c5024..06f74db 100644 --- a/test-output/junitreports/TEST-TestScripts.Discover_Count.xml +++ b/test-output/junitreports/TEST-TestScripts.Discover_Count.xml @@ -1,5 +1,5 @@ - - + + diff --git a/test-output/junitreports/TEST-TestScripts.Track_Interaction_Count.xml b/test-output/junitreports/TEST-TestScripts.Track_Interaction_Count.xml index a292944..336b319 100644 --- a/test-output/junitreports/TEST-TestScripts.Track_Interaction_Count.xml +++ b/test-output/junitreports/TEST-TestScripts.Track_Interaction_Count.xml @@ -1,5 +1,5 @@ - - + + diff --git a/test-output/junitreports/TEST-TestScripts.Track_Interaction_Export.xml b/test-output/junitreports/TEST-TestScripts.Track_Interaction_Export.xml index d20a18b..a59962a 100644 --- a/test-output/junitreports/TEST-TestScripts.Track_Interaction_Export.xml +++ b/test-output/junitreports/TEST-TestScripts.Track_Interaction_Export.xml @@ -1,5 +1,5 @@ - - + + diff --git a/test-output/junitreports/TEST-TestScripts.Track_Medinsght_Export.xml b/test-output/junitreports/TEST-TestScripts.Track_Medinsght_Export.xml index 45df4be..e2af208 100644 --- a/test-output/junitreports/TEST-TestScripts.Track_Medinsght_Export.xml +++ b/test-output/junitreports/TEST-TestScripts.Track_Medinsght_Export.xml @@ -1,5 +1,5 @@ - - + + diff --git a/test-output/junitreports/TEST-TestScripts.Track_Medinsight_Count.xml b/test-output/junitreports/TEST-TestScripts.Track_Medinsight_Count.xml index f15c7f4..648cfa3 100644 --- a/test-output/junitreports/TEST-TestScripts.Track_Medinsight_Count.xml +++ b/test-output/junitreports/TEST-TestScripts.Track_Medinsight_Count.xml @@ -1,5 +1,5 @@ - - + + diff --git a/test-output/old/DCIM_Counts_Check by packages/TestScripts.properties b/test-output/old/DCIM_Counts_Check by packages/TestScripts.properties new file mode 100644 index 0000000..f9e6999 --- /dev/null +++ b/test-output/old/DCIM_Counts_Check by packages/TestScripts.properties @@ -0,0 +1 @@ +[SuiteResult context=TestScripts] \ No newline at end of file diff --git a/test-output/old/DCIM_Counts_Check by packages/classes.html b/test-output/old/DCIM_Counts_Check by packages/classes.html new file mode 100644 index 0000000..ee014ef --- /dev/null +++ b/test-output/old/DCIM_Counts_Check by packages/classes.html @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class nameMethod nameGroups
TestScripts.Track_Medinsight_Count  
@Test
 Medsightcount 
@BeforeClass
@BeforeMethod
@AfterMethod
@AfterClass
TestScripts.Track_Interaction_Export  
@Test
 Interactionexport 
@BeforeClass
@BeforeMethod
@AfterMethod
@AfterClass
TestScripts.Discover_Count  
@Test
 Discovercount 
@BeforeClass
@BeforeMethod
@AfterMethod
@AfterClass
TestScripts.Contacts_Count  
@Test
 Contactscount 
@BeforeClass
@BeforeMethod
@AfterMethod
@AfterClass
TestScripts.Track_Medinsght_Export  
@Test
 Medinsightexport 
@BeforeClass
@BeforeMethod
@AfterMethod
@AfterClass
TestScripts.Track_Interaction_Count  
@Test
 Interactioncount 
@BeforeClass
@BeforeMethod
@AfterMethod
@AfterClass
diff --git a/test-output/old/DCIM_Counts_Check by packages/groups.html b/test-output/old/DCIM_Counts_Check by packages/groups.html new file mode 100644 index 0000000..199cb3f --- /dev/null +++ b/test-output/old/DCIM_Counts_Check by packages/groups.html @@ -0,0 +1 @@ +

Groups used for this test run

\ No newline at end of file diff --git a/test-output/old/DCIM_Counts_Check by packages/index.html b/test-output/old/DCIM_Counts_Check by packages/index.html new file mode 100644 index 0000000..b9d4efc --- /dev/null +++ b/test-output/old/DCIM_Counts_Check by packages/index.html @@ -0,0 +1,6 @@ +Results for DCIM_Counts_Check by packages + + + + + diff --git a/test-output/old/DCIM_Counts_Check by packages/main.html b/test-output/old/DCIM_Counts_Check by packages/main.html new file mode 100644 index 0000000..c45d4e9 --- /dev/null +++ b/test-output/old/DCIM_Counts_Check by packages/main.html @@ -0,0 +1,2 @@ +Results for DCIM_Counts_Check by packages +Select a result on the left-hand pane. diff --git a/test-output/old/DCIM_Counts_Check by packages/methods-alphabetical.html b/test-output/old/DCIM_Counts_Check by packages/methods-alphabetical.html new file mode 100644 index 0000000..559458b --- /dev/null +++ b/test-output/old/DCIM_Counts_Check by packages/methods-alphabetical.html @@ -0,0 +1,16 @@ +

Methods run, sorted chronologically

>> means before, << means after


DCIM_Counts_Check by packages

(Hover the method name to see the test class name)

+ + + + + + + + + + + + + + +
TimeDelta (ms)Suite
configuration
Test
configuration
Class
configuration
Groups
configuration
Method
configuration
Test
method
ThreadInstances
23/10/18 11:36:01 0      Contactscountmain@1241480588
23/10/18 11:26:31 -570293      Discovercountmain@1241480588
23/10/18 11:50:53 891966      Interactioncountmain@1241480588
23/10/18 11:40:57 295406      Interactionexportmain@1241480588
23/10/18 11:45:53 591949      Medinsightexportmain@1241480588
23/10/18 11:31:05 -296595      Medsightcountmain@1241480588
diff --git a/test-output/old/DCIM_Counts_Check by packages/methods-not-run.html b/test-output/old/DCIM_Counts_Check by packages/methods-not-run.html new file mode 100644 index 0000000..54b14cb --- /dev/null +++ b/test-output/old/DCIM_Counts_Check by packages/methods-not-run.html @@ -0,0 +1,2 @@ +

Methods that were not run

+
\ No newline at end of file diff --git a/test-output/old/DCIM_Counts_Check by packages/methods.html b/test-output/old/DCIM_Counts_Check by packages/methods.html new file mode 100644 index 0000000..9ee327e --- /dev/null +++ b/test-output/old/DCIM_Counts_Check by packages/methods.html @@ -0,0 +1,16 @@ +

Methods run, sorted chronologically

>> means before, << means after


DCIM_Counts_Check by packages

(Hover the method name to see the test class name)

+ + + + + + + + + + + + + + +
TimeDelta (ms)Suite
configuration
Test
configuration
Class
configuration
Groups
configuration
Method
configuration
Test
method
ThreadInstances
23/10/18 11:26:31 0      Discovercountmain@1241480588
23/10/18 11:31:05 273698      Medsightcountmain@1241480588
23/10/18 11:36:01 570293      Contactscountmain@1241480588
23/10/18 11:40:57 865699      Interactionexportmain@1241480588
23/10/18 11:45:53 1162242      Medinsightexportmain@1241480588
23/10/18 11:50:53 1462259      Interactioncountmain@1241480588
diff --git a/test-output/old/DCIM_Counts_Check by packages/reporter-output.html b/test-output/old/DCIM_Counts_Check by packages/reporter-output.html new file mode 100644 index 0000000..063bc2e --- /dev/null +++ b/test-output/old/DCIM_Counts_Check by packages/reporter-output.html @@ -0,0 +1 @@ +

Reporter output

\ No newline at end of file diff --git a/test-output/old/DCIM_Counts_Check by packages/testng.xml.html b/test-output/old/DCIM_Counts_Check by packages/testng.xml.html new file mode 100644 index 0000000..60382cc --- /dev/null +++ b/test-output/old/DCIM_Counts_Check by packages/testng.xml.html @@ -0,0 +1 @@ +testng.xml for DCIM_Counts_Check by packages<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="DCIM_Counts_Check by packages" guice-stage="DEVELOPMENT">
  <test thread-count="5" name="TestScripts" verbose="2">
    <packages>
      <package name="TestScripts"/>
    </packages>
    <classes>
      <class name="TestScripts.Discover_Count"/>
      <class name="TestScripts.Track_Medinsight_Count"/>
      <class name="TestScripts.Contacts_Count"/>
      <class name="TestScripts.Track_Interaction_Export"/>
      <class name="TestScripts.Track_Medinsght_Export"/>
      <class name="TestScripts.Track_Interaction_Count"/>
    </classes>
  </test> <!-- TestScripts -->
</suite> <!-- DCIM_Counts_Check by packages -->
\ No newline at end of file diff --git a/test-output/old/DCIM_Counts_Check by packages/toc.html b/test-output/old/DCIM_Counts_Check by packages/toc.html new file mode 100644 index 0000000..62109cd --- /dev/null +++ b/test-output/old/DCIM_Counts_Check by packages/toc.html @@ -0,0 +1,30 @@ + + +Results for DCIM_Counts_Check by packages + + + + +

Results for
DCIM_Counts_Check by packages

+ + + + + + + + + + +
1 test6 classes6 methods:
+  chronological
+  alphabetical
+  not run (0)
0 groupreporter outputtestng.xml
+ +

+

+
TestScripts (6/0/0) + Results +
+
+ \ No newline at end of file diff --git a/test-output/old/Default suite/classes.html b/test-output/old/Default suite/classes.html index 2588f35..fec985b 100644 --- a/test-output/old/Default suite/classes.html +++ b/test-output/old/Default suite/classes.html @@ -4,6 +4,126 @@ Method name Groups +TestScripts.Track_Medinsight_Count +   + +@Test + + +  +Medsightcount +  + +@BeforeClass + + +@BeforeMethod + + +  +beforeMethod +  + +@AfterMethod + + +  +afterMethod +  + +@AfterClass + + +TestScripts.Track_Interaction_Export +   + +@Test + + +  +Interactionexport +  + +@BeforeClass + + +@BeforeMethod + + +  +beforeMethod +  + +@AfterMethod + + +  +afterMethod +  + +@AfterClass + + +TestScripts.Discover_Count +   + +@Test + + +  +Discovercount +  + +@BeforeClass + + +@BeforeMethod + + +  +beforeMethod +  + +@AfterMethod + + +  +afterMethod +  + +@AfterClass + + +TestScripts.Contacts_Count +   + +@Test + + +  +Contactscount +  + +@BeforeClass + + +@BeforeMethod + + +  +beforeMethod +  + +@AfterMethod + + +  +afterMethod +  + +@AfterClass + + TestScripts.Track_Medinsght_Export    @@ -20,9 +140,47 @@ @BeforeMethod +  +beforeMethod +  + @AfterMethod +  +afterMethod +  + +@AfterClass + + +TestScripts.Track_Interaction_Count +   + +@Test + + +  +Interactioncount +  + +@BeforeClass + + +@BeforeMethod + + +  +beforeMethod +  + +@AfterMethod + + +  +afterMethod +  + @AfterClass diff --git a/test-output/old/Default suite/methods-alphabetical.html b/test-output/old/Default suite/methods-alphabetical.html index 743b84d..f1fd267 100644 --- a/test-output/old/Default suite/methods-alphabetical.html +++ b/test-output/old/Default suite/methods-alphabetical.html @@ -1,6 +1,44 @@

Methods run, sorted chronologically

>> means before, << means after


Default suite

(Hover the method name to see the test class name)

- - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TimeDelta (ms)Suite
configuration
Test
configuration
Class
configuration
Groups
configuration
Method
configuration
Test
method
ThreadInstances
23/10/11 10:04:11 0      Medinsightexportmain@1731977615
23/10/18 14:27:14 0      Contactscountmain@1262548561
23/10/18 14:22:47 -267582      Discovercountmain@1262548561
23/10/18 14:37:18 604306      Interactioncountmain@1262548561
23/10/18 14:21:44 -330277      Interactionexportmain@1262548561
23/10/18 14:32:19 305141      Medinsightexportmain@1262548561
23/10/18 14:16:46 -628462      Medsightcountmain@1262548561
23/10/18 14:21:44 -330505     <<afterMethod  main@1262548561
23/10/18 14:22:46 -267660     <<afterMethod  main@1262548561
23/10/18 14:27:14 -74     <<afterMethod  main@1262548561
23/10/18 14:32:19 305059     <<afterMethod  main@1262548561
23/10/18 14:37:18 604257     <<afterMethod  main@1262548561
23/10/18 14:41:31 856717     <<afterMethod  main@1262548561
23/10/18 14:41:31 856816 <<afterSuite      main@1262548561
23/10/18 14:16:46 -628469     >>beforeMethod  main@1262548561
23/10/18 14:21:44 -330278     >>beforeMethod  main@1262548561
23/10/18 14:22:47 -267582     >>beforeMethod  main@1262548561
23/10/18 14:27:14 0     >>beforeMethod  main@1262548561
23/10/18 14:32:19 305141     >>beforeMethod  main@1262548561
23/10/18 14:37:18 604306     >>beforeMethod  main@1262548561
23/10/18 14:16:45 -628687 >>beforeSuite      main@1262548561
diff --git a/test-output/old/Default suite/methods-not-run.html b/test-output/old/Default suite/methods-not-run.html index 54b14cb..e414379 100644 --- a/test-output/old/Default suite/methods-not-run.html +++ b/test-output/old/Default suite/methods-not-run.html @@ -1,2 +1,14 @@

Methods that were not run

+ + + + + + + + + + + +
Utilities.BaseTest.beforeSuite
Utilities.BaseTest.beforeSuite
Utilities.BaseTest.beforeSuite
Utilities.BaseTest.beforeSuite
Utilities.BaseTest.beforeSuite
Utilities.BaseTest.beforeSuite
Utilities.BaseTest.afterSuite
Utilities.BaseTest.afterSuite
Utilities.BaseTest.afterSuite
Utilities.BaseTest.afterSuite
Utilities.BaseTest.afterSuite
Utilities.BaseTest.afterSuite
\ No newline at end of file diff --git a/test-output/old/Default suite/methods.html b/test-output/old/Default suite/methods.html index 743b84d..a53d84d 100644 --- a/test-output/old/Default suite/methods.html +++ b/test-output/old/Default suite/methods.html @@ -1,6 +1,44 @@

Methods run, sorted chronologically

>> means before, << means after


Default suite

(Hover the method name to see the test class name)

- - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TimeDelta (ms)Suite
configuration
Test
configuration
Class
configuration
Groups
configuration
Method
configuration
Test
method
ThreadInstances
23/10/11 10:04:11 0      Medinsightexportmain@1731977615
23/10/18 14:16:45 0 >>beforeSuite      main@1262548561
23/10/18 14:16:46 218     >>beforeMethod  main@1262548561
23/10/18 14:16:46 225      Medsightcountmain@1262548561
23/10/18 14:21:44 298182     <<afterMethod  main@1262548561
23/10/18 14:21:44 298409     >>beforeMethod  main@1262548561
23/10/18 14:21:44 298410      Interactionexportmain@1262548561
23/10/18 14:22:46 361027     <<afterMethod  main@1262548561
23/10/18 14:22:47 361105     >>beforeMethod  main@1262548561
23/10/18 14:22:47 361105      Discovercountmain@1262548561
23/10/18 14:27:14 628613     <<afterMethod  main@1262548561
23/10/18 14:27:14 628687     >>beforeMethod  main@1262548561
23/10/18 14:27:14 628687      Contactscountmain@1262548561
23/10/18 14:32:19 933746     <<afterMethod  main@1262548561
23/10/18 14:32:19 933828     >>beforeMethod  main@1262548561
23/10/18 14:32:19 933828      Medinsightexportmain@1262548561
23/10/18 14:37:18 1232944     <<afterMethod  main@1262548561
23/10/18 14:37:18 1232993     >>beforeMethod  main@1262548561
23/10/18 14:37:18 1232993      Interactioncountmain@1262548561
23/10/18 14:41:31 1485404     <<afterMethod  main@1262548561
23/10/18 14:41:31 1485503 <<afterSuite      main@1262548561
diff --git a/test-output/old/Default suite/testng.xml.html b/test-output/old/Default suite/testng.xml.html index d5f0a15..7e52a27 100644 --- a/test-output/old/Default suite/testng.xml.html +++ b/test-output/old/Default suite/testng.xml.html @@ -1 +1 @@ -testng.xml for Default suite<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Default suite" guice-stage="DEVELOPMENT">
  <test thread-count="5" name="Default test" verbose="2">
    <classes>
      <class name="TestScripts.Track_Medinsght_Export"/>
    </classes>
  </test> <!-- Default test -->
</suite> <!-- Default suite -->
\ No newline at end of file +testng.xml for Default suite<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Default suite" guice-stage="DEVELOPMENT">
  <test thread-count="5" name="Default test" verbose="2">
    <classes>
      <class name="Utilities.ConfigurationManager"/>
      <class name="Utilities.readConfigFile"/>
      <class name="Utilities.ConsoleOutputToFile"/>
      <class name="TestScripts.Track_Medinsight_Count"/>
      <class name="Utilities.ConfigReader"/>
      <class name="Utilities.BaseTest"/>
      <class name="TestScripts.Track_Interaction_Export"/>
      <class name="TestScripts.Discover_Count"/>
      <class name="TestScripts.Contacts_Count"/>
      <class name="TestScripts.Track_Medinsght_Export"/>
      <class name="TestScripts.Track_Interaction_Count"/>
    </classes>
  </test> <!-- Default test -->
</suite> <!-- Default suite -->
\ No newline at end of file diff --git a/test-output/old/Default suite/toc.html b/test-output/old/Default suite/toc.html index e58eee3..4bbb201 100644 --- a/test-output/old/Default suite/toc.html +++ b/test-output/old/Default suite/toc.html @@ -9,11 +9,11 @@ - - + +  not run (12) @@ -22,7 +22,7 @@
1 test1 class1 method:
+
6 classes6 methods:
  chronological
  alphabetical
-  not run (0)
0 group
-

diff --git a/test-output/old/index.html b/test-output/old/index.html index e8f52f8..d997ee8 100644 --- a/test-output/old/index.html +++ b/test-output/old/index.html @@ -4,6 +4,6 @@

Test results

Default test (1/0/0) +
Default test (6/0/0) Results
- + -
SuitePassedFailedSkippedtestng.xml
Total100 
Total600 
Default suite100Link
+
600Link
diff --git a/test-output/testng-failed.xml b/test-output/testng-failed.xml index 6a2fbbf..08e8f86 100644 --- a/test-output/testng-failed.xml +++ b/test-output/testng-failed.xml @@ -3,11 +3,11 @@ - + - + - + diff --git a/test-output/testng-results.xml b/test-output/testng-results.xml index c1f1d13..ac7fab3 100644 --- a/test-output/testng-results.xml +++ b/test-output/testng-results.xml @@ -1,17 +1,145 @@ - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +