make sure to check the tests as well

git-svn-id: http://google-refine.googlecode.com/svn/trunk@431 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Stefano Mazzocchi 2010-04-09 00:23:14 +00:00
parent d3d40d608a
commit f0ba42f355
2 changed files with 8 additions and 0 deletions

View File

@ -270,6 +270,9 @@
<fileset dir="${src.dir}">
<include name="**/*.java"/>
</fileset>
<fileset dir="${tests.dir}">
<include name="**/*.java"/>
</fileset>
</pmd>
</target>

View File

@ -1,9 +1,14 @@
package com.metaweb.gridworks.tests;
import static org.junit.Assert.assertSame;
import org.junit.Test;
public class GridworksTests {
// this is just a placeholder for now
@Test public void test() {
assertSame("Just a placeholder for now", Integer.parseInt("1"), 1);
}
}