- Updated test cases to 1.7 syntax

- Added one-level directory structure to separate the constructs tested.

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3545 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
egeay 2009-04-29 18:17:20 +00:00
parent f5613864de
commit 193fc85cdd
1 changed files with 4 additions and 0 deletions

View File

@ -260,6 +260,10 @@ public abstract class IRTests extends WalaTestCase {
return false;
}
}
protected Collection<String> singleTestSrc() {
return Collections.singletonList(getTestSrcPath() + File.separator + singleJavaInputForTest());
}
protected Collection<String> singleTestSrc(final String folder) {
return Collections.singletonList(getTestSrcPath() + File.separator + folder + File.separator + singleJavaInputForTest());