Skip to content

Commit

Permalink
Added Collate tool and condensed help test into one function
Browse files Browse the repository at this point in the history
Claim your code guys!
  • Loading branch information
ravishwetha committed Oct 30, 2016
1 parent 63b8abe commit 48e5dea
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 48e5dea

Please sign in to comment.