Skip to content

Commit

Permalink
Merge pull request #46 from CS2103AUG2016-F10-C3/C3/support/Collate-tool
Browse files Browse the repository at this point in the history
Add Collate tool and condense helptest into one function
  • Loading branch information
ravishwetha authored Oct 30, 2016
2 parents 63b8abe + 48e5dea commit 7ad2ca1
Show file tree
Hide file tree
Showing 6 changed files with 506 additions and 29 deletions.
1 change: 1 addition & 0 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@
</classpathentry>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="lib" path="libs/Collate-GUI.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
17 changes: 17 additions & 0 deletions libs/A0146130WreusedToTest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# A0146130WreusedToTest
###### /src/test/java/seedu/gtd/logic/LogicManagerTest.java
``` java
@Test
public void execute_help() throws Exception {
assertCommandBehavior("help", HelpCommand.MESSAGE_USAGE+"/n"+HelpCommand.SHOWING_HELP_MESSAGE);
assertTrue(helpShown);
assertCommandBehavior("help add", AddCommand.MESSAGE_USAGE);
assertCommandBehavior("help select", SelectCommand.MESSAGE_USAGE);
assertCommandBehavior("help delete", DeleteCommand.MESSAGE_USAGE);
assertCommandBehavior("help clear", ClearCommand.MESSAGE_USAGE);
assertCommandBehavior("help find", FindCommand.MESSAGE_USAGE);
assertCommandBehavior("help list", ListCommand.MESSAGE_USAGE);
assertCommandBehavior("help exit", ExitCommand.MESSAGE_USAGE);
}

```
Binary file added libs/Collate-GUI.jar
Binary file not shown.
Loading

0 comments on commit 7ad2ca1

Please sign in to comment.