-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc2b966
commit 332632a
Showing
288 changed files
with
19,088 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
eclipse.preferences.version=1 | ||
encoding//src/main/java=UTF-8 | ||
encoding//src/main/resources=UTF-8 | ||
encoding//src/test/java=UTF-8 | ||
encoding//src/test/resources=UTF-8 | ||
encoding/<project>=UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 | ||
org.eclipse.jdt.core.compiler.compliance=1.5 | ||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning | ||
org.eclipse.jdt.core.compiler.source=1.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
activeProfiles= | ||
eclipse.preferences.version=1 | ||
resolveWorkspaceProjects=true | ||
version=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,224 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>BDDSelendroid</groupId> | ||
<artifactId>BDDSelendroid</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
|
||
<profiles> | ||
<profile> | ||
<id>test</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<properties> | ||
<embeddables>**/*Stories.java</embeddables> | ||
<meta.filter>+author *.*</meta.filter> | ||
</properties> | ||
</profile> | ||
<profile> | ||
<id>no-test</id> | ||
<activation> | ||
<activeByDefault>false</activeByDefault> | ||
</activation> | ||
<properties> | ||
<embeddables>***/no.java</embeddables> | ||
|
||
</properties> | ||
</profile> | ||
|
||
</profiles> | ||
|
||
<parent> | ||
<groupId>io.selendroid</groupId> | ||
<artifactId>selendroid</artifactId> | ||
<version>0.4.2</version> | ||
</parent> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.jbehave</groupId> | ||
<artifactId>jbehave-spring</artifactId> | ||
<version>3.5</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>io.selendroid</groupId> | ||
<artifactId>selendroid-client</artifactId> | ||
<version>0.4.2</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.jbehave</groupId> | ||
<artifactId>jbehave-navigator</artifactId> | ||
<version>4.0-beta-3</version> | ||
</dependency> | ||
|
||
|
||
<dependency> | ||
<groupId>io.selendroid</groupId> | ||
<artifactId>selendroid-standalone</artifactId> | ||
<version>0.4.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jbehave</groupId> | ||
<artifactId>jbehave-core</artifactId> | ||
<version>3.7.4</version> | ||
<classifier>resources</classifier> | ||
<type>zip</type> | ||
</dependency> | ||
|
||
|
||
<dependency> | ||
<groupId>org.jbehave.site</groupId> | ||
<artifactId>jbehave-site-resources</artifactId> | ||
<version>3.1.1</version> | ||
<type>zip</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jbehave.web</groupId> | ||
<artifactId>jbehave-web-selenium</artifactId> | ||
<version>3.5.5</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.testng</groupId> | ||
<artifactId>testng</artifactId> | ||
<version>6.8</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.seleniumhq.selenium</groupId> | ||
<artifactId>selenium-java</artifactId> | ||
<version>2.32.0</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<resources> | ||
<resource> | ||
<directory>src/main/java</directory> | ||
<filtering>true</filtering> | ||
<excludes> | ||
<exclude>**/*.java</exclude> | ||
</excludes> | ||
</resource> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
<resource> | ||
<directory>${basedir}/src/main/storynavigator</directory> | ||
<targetPath>${project.build.directory}/jbehave/view</targetPath> | ||
<filtering>false</filtering> | ||
</resource> | ||
<resource> | ||
<directory>${basedir}/src/main/storynavigator</directory> | ||
<targetPath>${project.build.directory}/jbehave/view</targetPath> | ||
<filtering>false</filtering> | ||
</resource> | ||
|
||
</resources> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.1</version> | ||
<configuration> | ||
<source>1.5</source> | ||
<target>1.5</target> | ||
</configuration> | ||
</plugin> | ||
<!--This plugin's configuration is used to store Eclipse m2e settings | ||
only. It has no influence on the Maven build itself. --> | ||
<plugin> | ||
<groupId>org.eclipse.m2e</groupId> | ||
<artifactId>lifecycle-mapping</artifactId> | ||
<version>1.0.0</version> | ||
<configuration> | ||
<lifecycleMappingMetadata> | ||
<pluginExecutions> | ||
<pluginExecution> | ||
<pluginExecutionFilter> | ||
<groupId>org.jbehave</groupId> | ||
<artifactId> | ||
jbehave-maven-plugin | ||
</artifactId> | ||
<versionRange>[3.5.1,)</versionRange> | ||
<goals> | ||
<goal>unpack-view-resources</goal> | ||
</goals> | ||
</pluginExecutionFilter> | ||
<action> | ||
<ignore></ignore> | ||
</action> | ||
</pluginExecution> | ||
</pluginExecutions> | ||
</lifecycleMappingMetadata> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.jbehave</groupId> | ||
<artifactId>jbehave-maven-plugin</artifactId> | ||
<version>3.5.1</version> | ||
<executions> | ||
<execution> | ||
<id>unpack-view-resources</id> | ||
<phase>process-resources</phase> | ||
<goals> | ||
<goal>unpack-view-resources</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>embeddable-stories</id> | ||
<phase>integration-test</phase> | ||
<configuration> | ||
<includes> | ||
<include>**/*Stories.java</include> | ||
</includes> | ||
<metaFilters> | ||
<!-- <metaFilter>${meta.filter}</metaFilter> --> | ||
</metaFilters> | ||
<excludes /> | ||
<generateViewAfterStories>true</generateViewAfterStories> | ||
<ignoreFailureInStories>true</ignoreFailureInStories> | ||
<ignoreFailureInView>true</ignoreFailureInView> | ||
</configuration> | ||
<goals> | ||
<goal>run-stories-as-embeddables</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>map-stories</id> | ||
<phase>integration-test</phase> | ||
<configuration> | ||
<includes> | ||
<include>**/*Maps.java</include> | ||
</includes> | ||
<metaFilters> | ||
<metaFilter>${meta.filter}</metaFilter> | ||
</metaFilters> | ||
</configuration> | ||
<goals> | ||
<goal>map-stories-as-embeddables</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>report-stepdocs</id> | ||
<phase>integration-test</phase> | ||
<configuration> | ||
<includes> | ||
<include>${embeddables}</include> | ||
</includes> | ||
</configuration> | ||
<goals> | ||
<goal>report-stepdocs-as-embeddables</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
body { | ||
font-family: Helvetica, Arial, sans-serif; | ||
line-height: 120%; | ||
margin: 10px; | ||
padding: 10px; | ||
} | ||
|
||
ul { | ||
width: 778px; | ||
background-color: #E5EECC; | ||
padding: 10px 0px 10px 20px; | ||
border: 1px solid #C3C3C3; | ||
margin: 1px 0px; | ||
font-size: 80%; | ||
} | ||
|
||
li { | ||
list-style: none; | ||
} | ||
|
||
h3 { | ||
background-color: #6B8E23; | ||
color: white; | ||
padding: 5px 20px 5px 20px; | ||
width: 760px; | ||
margin: 0px; | ||
} | ||
|
||
.overall_table { | ||
background-color: white; | ||
border: 1px solid #C3C3C3; | ||
border-collapse: collapse; | ||
width: 800px; | ||
font-size: 80%; | ||
} | ||
|
||
.overall_table th { | ||
background-color: #E5EECC; | ||
border: 1px solid #C3C3C3; | ||
padding: 3px; | ||
vertical-align: top; | ||
text-align: left; | ||
} | ||
|
||
.overall_table td { | ||
border: 1px solid #C3C3C3; | ||
padding: 3px; | ||
vertical-align: top; | ||
} | ||
|
||
.small_img { | ||
width: 100px; | ||
height: 150px; | ||
border: 1px solid black; | ||
margin: 1px; | ||
} | ||
|
||
.evidence_td { | ||
text-align: left; | ||
} | ||
|
||
.bold { | ||
width: 150px; | ||
font-weight: bold; | ||
} | ||
|
||
.stacktrace { | ||
font-size: 90%; | ||
} | ||
|
||
.sec { | ||
font-size: 80%; | ||
font-style: italic; | ||
} | ||
|
||
.mark { | ||
float: right; | ||
font-style: italic; | ||
font-size: 60%; | ||
font-weight: normal; | ||
padding-top: 5px; | ||
} | ||
|
||
.result_ok { | ||
color: green; | ||
} | ||
|
||
.result_err { | ||
color: red; | ||
} |
Empty file.
Oops, something went wrong.