From fe09bc5eb997ad76c05a6b49b7d1b58300335af7 Mon Sep 17 00:00:00 2001 From: 9hafidz6 <9hafidz6@gmail.com> Date: Mon, 16 Sep 2019 19:37:28 +0800 Subject: [PATCH 1/5] added dummy text file --- test_docs.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 test_docs.txt diff --git a/test_docs.txt b/test_docs.txt new file mode 100644 index 0000000000..5b37e6927f --- /dev/null +++ b/test_docs.txt @@ -0,0 +1 @@ +this is a test \ No newline at end of file From fc12742ac6219335a4fda7160e788de6fc9de708 Mon Sep 17 00:00:00 2001 From: 9hafidz6 <9hafidz6@gmail.com> Date: Mon, 16 Sep 2019 19:48:41 +0800 Subject: [PATCH 2/5] added checkstyle --- build.gradle | 5 +++++ src/test/java/DukeTest.java | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 683e487068..dbb293728b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,7 @@ plugins { id 'java' id 'application' + id 'checkstyle' } group 'seedu.duke' @@ -10,6 +11,10 @@ repositories { mavenCentral() } +checkstyle { + toolVersion = '8.23' +} + application { // Change this to your main class. mainClassName = "duke/Duke" diff --git a/src/test/java/DukeTest.java b/src/test/java/DukeTest.java index 99e0e46a44..83d4bada25 100644 --- a/src/test/java/DukeTest.java +++ b/src/test/java/DukeTest.java @@ -1,4 +1,9 @@ +import duke.Duke; +import duke.command.AddCommand; +import duke.command.Command; +import duke.command.ExitCommand; import duke.exception.DukeException; +import duke.parser.Parser; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.*; @@ -12,7 +17,7 @@ public void dummyTest(){ @Test public void testExitCommand() throws DukeException { Duke duke= new Duke("data/tasks.txt"); - Command c=Parser.parse("bye"); + Command c= Parser.parse("bye"); assertTrue(c instanceof ExitCommand); } @Test From abede276d86dd46697bee77347f3c9b65e7118b1 Mon Sep 17 00:00:00 2001 From: 9hafidz6 <9hafidz6@gmail.com> Date: Mon, 16 Sep 2019 19:51:11 +0800 Subject: [PATCH 3/5] removed dummy text --- test_docs.txt | 1 - 1 file changed, 1 deletion(-) delete mode 100644 test_docs.txt diff --git a/test_docs.txt b/test_docs.txt deleted file mode 100644 index 5b37e6927f..0000000000 --- a/test_docs.txt +++ /dev/null @@ -1 +0,0 @@ -this is a test \ No newline at end of file From 6e9de73a10f841d2d56858749fe25f9e0b99b495 Mon Sep 17 00:00:00 2001 From: 9hafidz6 <9hafidz6@gmail.com> Date: Mon, 16 Sep 2019 20:03:44 +0800 Subject: [PATCH 4/5] added A-Jar and A-JUnit --- build.gradle | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/build.gradle b/build.gradle index dbb293728b..04b7ff3e97 100644 --- a/build.gradle +++ b/build.gradle @@ -2,6 +2,7 @@ plugins { id 'java' id 'application' id 'checkstyle' + id 'com.github.johnrengelman.shadow' version '5.1.0' } group 'seedu.duke' @@ -11,6 +12,13 @@ repositories { mavenCentral() } +shadowJar { + archiveBaseName = "mid-v1.1" + archiveVersion = "1.1" + archiveClassifier = null + archiveAppendix = null +} + checkstyle { toolVersion = '8.23' } @@ -22,4 +30,12 @@ application { run { standardInput = System.in +} + +dependencies { + testImplementation 'org.junit.jupiter:junit-jupiter:5.5.0' +} + +test { + useJUnitPlatform() } \ No newline at end of file From 263656bc16bc27118bdc94067eacade556d64c8d Mon Sep 17 00:00:00 2001 From: Yu Jiahan <35493692+VirginiaYu@users.noreply.github.com> Date: Tue, 17 Sep 2019 16:36:43 +0800 Subject: [PATCH 5/5] Add files via upload --- docs/AboutUs.md | 60 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 docs/AboutUs.md diff --git a/docs/AboutUs.md b/docs/AboutUs.md new file mode 100644 index 0000000000..f0e1210895 --- /dev/null +++ b/docs/AboutUs.md @@ -0,0 +1,60 @@ +# About Us + +Duke - Level 3 was developed by the [se-edu](https://se-edu.github.io/docs/Team.html) team. +*{The dummy content given below serves as a placeholder to be used by future forks of the project.}* + +We are a team based in the [School of Computing, National University of Singapore](http://www.comp.nus.edu.sg/). + + + +## Project Team + +### Hafidz Bin Hussain + +[photo here] + +[[github](https://github.com/9hafidz6)] [profolio] + +Role: Team Lead + +Responsibilities: + +### Sara Djambazovska + +[photo here] + +[[github](https://github.com/saradj/)] [profolio] + +Role: Developer + +Responsibilities: + +### Jiahan Yu + +[photo here] + +[[github](https://github.com/saradj/)] [profolio] + +Role: Developer + +Responsibilities: + +### Goh Zhen Hao Joey + +[photo here] + +[[github](https://github.com/x3chillax)] [profolio] + +Role: Developer + +Responsibilities: + +### Lincoln Lim + +[photo here] + +[[github](https://github.com/CEGLincoln)] [profolio] + +Role: Developer + +Responsibilities: \ No newline at end of file