Skip to content

Commit

Permalink
Added singular test-suite to run all the tests in the imgscalr release;
Browse files Browse the repository at this point in the history
makes it easier to vet for release.
  • Loading branch information
Riyad Kalla committed Nov 17, 2011
1 parent 4b53462 commit 367128a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/test/java/org/imgscalr/AllTests.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package org.imgscalr;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

@RunWith(Suite.class)
@SuiteClasses({ ScalrApplyTest.class, ScalrCropTest.class, ScalrPadTest.class,
ScalrResizeTest.class, ScalrRotateTest.class })
public class AllTests {
// no-op
}

0 comments on commit 367128a

Please sign in to comment.