Ticket #207 (closed enhancement: wontfix)

Opened 8 months ago

Last modified 5 days ago

Maven Plug-in for PushToTest

Reported by: fcohen Owned by:
Priority: minor Milestone:
Version: 5.3 Keywords:
Cc:

Description

Implements maven-pushtotest-plugin:test to run a TestScenario as specified by a Maven plugin and its properties. Internally invokes the com.pushtotest.testmaker.Main class using the command-line (-t) parameter as described there.

Prior to using the plugin, add the PushToTest maven 2 repository either to your project or settings.xml;

<pluginRepositories>

<pluginRepository>

<id>PushToTestPluginRepository?</id> <url>http://maven.pushtotest.com/</url>

</pluginRepository>

</pluginRepositories>

Then, add the PushToTest plugin to your pom.xml

<plugins>

<plugin> <groupId>PushToTest</groupId> <artifactId>maven-pushtotest-plugin</artifactId> <version>1.7.6</version> <configuration>

<projectFile>sample-pushtotest-project.xml</projectFile> <host>http://127.0.0.1:8181</host>

</configuration> </plugin>

</plugins>

Run TestScenarios? with

mvn pushtotest:maven-pushtotest-plugin:test

The plugin will load the specified project file and run the TestScenario.

-Frank

Change History

Changed 6 months ago by fcohen

  • priority changed from critical to minor

Changed 5 months ago by fcohen

  • version changed from 5.2 to 5.3

Changed 5 days ago by fcohen

  • status changed from new to closed
  • resolution set to wontfix
Note: See TracTickets for help on using tickets.