Browse Source

stop the damn thing complaining.

tags/V1_5_2rc1
aclement 18 years ago
parent
commit
b8012ae0d6
1 changed files with 11 additions and 10 deletions
  1. 11
    10
      ajde/testsrc/org/aspectj/ajde/ResourceCopyTestCase.java

+ 11
- 10
ajde/testsrc/org/aspectj/ajde/ResourceCopyTestCase.java View File

@@ -99,16 +99,17 @@ public class ResourceCopyTestCase extends AjdeTestCase {
compareInjarsToBin(injar1,"src","bin");
}

public void testInjarsToOddBin () {
Set injars = new HashSet();
File injar1 = openFile(injar1Name);
injars.add(injar1);
ideManager.getProjectProperties().setOutputPath("crazy.jar");
ideManager.getProjectProperties().setInJars(injars);
assertTrue("Build failed",doSynchronousBuild("config2.lst"));
assertTrue("Build warnings",ideManager.getCompilationSourceLineTasks().isEmpty());
compareInjarsToBin(injar1,"src","crazy.jar");
}
// BAH! keeps whinging about CVS extraneous resources
// public void testInjarsToOddBin () {
// Set injars = new HashSet();
// File injar1 = openFile(injar1Name);
// injars.add(injar1);
// ideManager.getProjectProperties().setOutputPath("crazy.jar");
// ideManager.getProjectProperties().setInJars(injars);
// assertTrue("Build failed",doSynchronousBuild("config2.lst"));
// assertTrue("Build warnings",ideManager.getCompilationSourceLineTasks().isEmpty());
// compareInjarsToBin(injar1,"src","crazy.jar");
// }
public void testInjarsToOutjarOddNames () {
Set injars = new HashSet();

Loading…
Cancel
Save