Skip to content

Commit

Permalink
Updated junit and added some files to begin tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sleroux committed Nov 29, 2012
1 parent 83c9e66 commit aedd6e3
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 6 deletions.
13 changes: 13 additions & 0 deletions .idea/libraries/Maven__junit_junit_4_8_2.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 5 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
Expand All @@ -56,5 +50,10 @@
<version>2.2.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
</dependency>
</dependencies>
</project>
12 changes: 12 additions & 0 deletions src/test/java/postageapp/ModelTestCase.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package postageapp;
import junit.framework.TestCase;

/**
* Created with IntelliJ IDEA.
* User: stephanleroux
* Date: 2012-11-28
* Time: 7:57 PM
* To change this template use File | Settings | File Templates.
*/
public class ModelTestCase extends TestCase {
}
13 changes: 13 additions & 0 deletions src/test/java/postageapp/models/AccountInfoTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package postageapp.models;

import postageapp.ModelTestCase;

/**
* Created with IntelliJ IDEA.
* User: stephanleroux
* Date: 2012-11-28
* Time: 7:56 PM
* To change this template use File | Settings | File Templates.
*/
public class AccountInfoTest extends ModelTestCase {
}

0 comments on commit aedd6e3

Please sign in to comment.