Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Drop test output lines, test use in client test
Browse files Browse the repository at this point in the history
A separate set of changes will address using the dependency scraper in
the rse-renderer-client-test

Signed-off-by: Daniel Bluhm <bluhmdj@ornl.gov>
  • Loading branch information
dbluhm committed Aug 31, 2020
1 parent 1996240 commit cf3fceb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
Expand Up @@ -33,13 +33,11 @@ public void testSomething() throws Exception {
myMojo.setJarFiles(Set.of(new File(
"target/test-classes/project-to-test/pretend_dependency.jar"
)));
System.out.println(rule.getVariablesAndValuesFromObject(myMojo));
myMojo.execute();

File outputDirectory = (File) rule.getVariableValueFromObject(myMojo, "outputDirectory");
assertNotNull(outputDirectory);
assertTrue(outputDirectory.exists());
System.out.println(outputDirectory);

File test = new File(outputDirectory, "test.txt");
assertTrue(test.exists());
Expand Down
17 changes: 0 additions & 17 deletions rse-renderer-client-test/pom.xml
Expand Up @@ -188,23 +188,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.ice</groupId>
<artifactId>org.eclipse.ice.dev.dependencyscraper</artifactId>
<version>3.0.0-SNAPSHOT</version>
<executions>
<execution>
<goals>
<goal>scrape</goal>
</goals>
</execution>
</executions>
<configuration>
<includes>
<include>*</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit cf3fceb

Please sign in to comment.