Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel

Usage of the AbstractIntegrationTestBase base class

  1. The following code fragment illustrates how to use AbstractIntegrationTestBase class
    Code Block
    import edu.mit.csf.test.AbstractIntegrationTestBase;
    
    public class TestHibernateAcademicTermDao extends AbstractIntegrationTestBase {
    
    }
    

  2. Add the following dependencies to your project's pom.xml.
    Code Block
            <dependency>
                <groupId>edu.mit.ist.es.csf</groupId>
                <artifactId>csf-test</artifactId>
                <version>[0.0.0,999.999.999)</version>
                <type>test-jar</type>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>edu.mit.ist.es.csf</groupId>
                <artifactId>csf-test</artifactId>
                <version>[0.0.0,999.999.999)</version>
            </dependency>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.10</version>
            </dependency>
    

...