Differences between revisions 4 and 5
Revision 4 as of 2010-08-16 21:25:56
Size: 1112
Editor: KeiichiroOno
Comment:
Revision 5 as of 2010-08-16 21:31:50
Size: 1114
Editor: KeiichiroOno
Comment:
Deletions are marked like this. Additions are marked like this.
Line 32: Line 32:

Integration Test with OSGi, Spring DM, and Maven

Status

Pom File

Integration test should be run AFTER your code passes the unit tests. To run separate test suite as an integration test, you need to use maven-failsafe-plugin.

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-failsafe-plugin</artifactId>
        <version>2.6</version>
        <executions>
          <execution>
            <id>integration-test</id>
            <goals>
              <goal>integration-test</goal>
            </goals>
          </execution>
          <execution>
            <id>verify</id>
            <goals>
              <goal>verify</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

Log4j Props

Test Code

   1 // Use IT*.java for Integration tests
   2 public class ITViewModelImpl extends AbstractConfigurableBundleCreatorTests {
   3 }
   4 

Outdated_Cytoscape_3.0/Developer/Testing/Integration (last edited 2011-02-24 15:35:52 by PietMolenaar)

Funding for Cytoscape is provided by a federal grant from the U.S. National Institute of General Medical Sciences (NIGMS) of the Na tional Institutes of Health (NIH) under award number GM070743-01. Corporate funding is provided through a contract from Unilever PLC.

MoinMoin Appliance - Powered by TurnKey Linux