From cbad732ff38602dd09bdabfa3706c0a69ca904a4 Mon Sep 17 00:00:00 2001 From: robertgates55 Date: Fri, 4 Dec 2015 19:20:59 +0800 Subject: [PATCH 1/2] Changed to __stepStart and __stepFinish to improve readability of tests --- src/main/java/com/frameworkium/tests/internal/BaseTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/frameworkium/tests/internal/BaseTest.java b/src/main/java/com/frameworkium/tests/internal/BaseTest.java index ac08bdb7..09c271d0 100644 --- a/src/main/java/com/frameworkium/tests/internal/BaseTest.java +++ b/src/main/java/com/frameworkium/tests/internal/BaseTest.java @@ -201,11 +201,11 @@ public static ScreenshotCapture getCapture() { return capture.get(); } - public static void startStep(String stepName){ + public static void __startStep(String stepName){ Allure.LIFECYCLE.fire(new StepStartedEvent(stepName)); } - public static void finishStep(){ + public static void __finishStep(){ Allure.LIFECYCLE.fire(new StepFinishedEvent()); } } From f5213a8149fad59fbe382aefe754c7eeb558b5be Mon Sep 17 00:00:00 2001 From: robertgates55 Date: Fri, 4 Dec 2015 19:54:18 +0800 Subject: [PATCH 2/2] Bumped to 1.1.7 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 11ac5ae9..4c55443a 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.frameworkium Frameworkium-core - 1.1.6 + 1.1.7 Frameworkium-core