From d21bba62984a70c737632c7ca217c4e6bd5ab388 Mon Sep 17 00:00:00 2001 From: gabrielgio Date: Wed, 22 Jul 2020 15:40:31 +0200 Subject: Adds bamboo specs --- bamboo-specs/src/test/java/tutorial/PlanSpecTest.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 bamboo-specs/src/test/java/tutorial/PlanSpecTest.java (limited to 'bamboo-specs/src/test/java/tutorial') diff --git a/bamboo-specs/src/test/java/tutorial/PlanSpecTest.java b/bamboo-specs/src/test/java/tutorial/PlanSpecTest.java new file mode 100644 index 0000000..0c05f55 --- /dev/null +++ b/bamboo-specs/src/test/java/tutorial/PlanSpecTest.java @@ -0,0 +1,15 @@ +package tutorial; + +import com.atlassian.bamboo.specs.api.builders.plan.Plan; +import com.atlassian.bamboo.specs.api.exceptions.PropertiesValidationException; +import com.atlassian.bamboo.specs.api.util.EntityPropertiesBuilders; +import org.junit.Test; + +public class PlanSpecTest { + @Test + public void checkYourPlanOffline() throws PropertiesValidationException { + Plan plan = new PlanSpec().createPlan(); + + EntityPropertiesBuilders.build(plan); + } +} -- cgit v1.2.3