Commit 3ca57bfe authored by James C Bowden's avatar James C Bowden
Browse files

update and rename lab

parent 844c09d6
No related merge requests found
Pipeline #78659 failed with stage
Showing with 14 additions and 8 deletions
+14 -8
A:
script: /testers/cs2/lab08/suite/test
script: /testers/cs2/lab06/suite/test
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" project-jdk-name="11" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_19" default="true" project-jdk-name="19" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>
\ No newline at end of file
......@@ -2,7 +2,7 @@
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/lab08.iml" filepath="$PROJECT_DIR$/lab08.iml" />
<module fileurl="file://$PROJECT_DIR$/lab06.iml" filepath="$PROJECT_DIR$/lab06.iml" />
</modules>
</component>
</project>
\ No newline at end of file
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="A Tests" type="JUnit" factoryName="JUnit">
<module name="lab08" />
<module name="lab06" />
<option name="MAIN_CLASS_NAME" value="" />
<option name="METHOD_NAME" value="" />
<option name="TEST_OBJECT" value="tags" />
......
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>
\ No newline at end of file
File moved
package edu.caltech.cs2.lab08;
package edu.caltech.cs2.lab06;
import java.util.*;
import java.util.stream.Collectors;
......@@ -42,6 +42,6 @@ public class PebblingGraph {
}
public List<Integer> toposort() {
return null;
return new ArrayList<Integer>();
}
}
\ No newline at end of file
package edu.caltech.cs2.lab08;
package edu.caltech.cs2.lab06;
import org.junit.jupiter.api.*;
import edu.caltech.cs2.lab08.PebblingGraph.PebblingNode;
import edu.caltech.cs2.lab06.PebblingGraph.PebblingNode;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment