Skip to content

Commit

Permalink
add travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
htynkn committed Nov 14, 2014
1 parent 2e91411 commit f891d88
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .travis.yml
@@ -0,0 +1,6 @@
language: java

jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
3 changes: 2 additions & 1 deletion src/test/java/com/garrettheel/moco/util/Waiter.java
Expand Up @@ -8,8 +8,9 @@ public Waiter() {

}

public Waiter(int interval) {
public Waiter(int interval, int max) {
this.interval = interval;
this.max = max;
}

public void until(Condition condition) {
Expand Down

0 comments on commit f891d88

Please sign in to comment.