From 415fb8499d939b4e059691af4010a7055e8c1385 Mon Sep 17 00:00:00 2001
From: CONGRANLI <907112284@qq.com>
Date: Thu, 5 Sep 2019 14:41:50 +1000
Subject: [PATCH] add task2 again

---
 .idea/.gitignore                                         | 2 ++
 .idea/misc.xml                                           | 7 +++++++
 .idea/modules.xml                                        | 8 ++++++++
 .idea/swen90006-a1-2019.iml                              | 9 +++++++++
 .idea/vcs.xml                                            | 6 ++++++
 .../swen90006/passbook/PartitioningTests.java            | 8 +-------
 6 files changed, 33 insertions(+), 7 deletions(-)
 create mode 100644 .idea/.gitignore
 create mode 100644 .idea/misc.xml
 create mode 100644 .idea/modules.xml
 create mode 100644 .idea/swen90006-a1-2019.iml
 create mode 100644 .idea/vcs.xml

diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..5c98b42
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,2 @@
+# Default ignored files
+/workspace.xml
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..0effc5e
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="JavaScriptSettings">
+    <option name="languageLevel" value="ES6" />
+  </component>
+  <component name="ProjectRootManager" version="2" project-jdk-name="12" project-jdk-type="JavaSDK" />
+</project>
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..73f7cfd
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectModuleManager">
+    <modules>
+      <module fileurl="file://$PROJECT_DIR$/.idea/swen90006-a1-2019.iml" filepath="$PROJECT_DIR$/.idea/swen90006-a1-2019.iml" />
+    </modules>
+  </component>
+</project>
\ No newline at end of file
diff --git a/.idea/swen90006-a1-2019.iml b/.idea/swen90006-a1-2019.iml
new file mode 100644
index 0000000..d6ebd48
--- /dev/null
+++ b/.idea/swen90006-a1-2019.iml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="JAVA_MODULE" version="4">
+  <component name="NewModuleRootManager" inherit-compiler-output="true">
+    <exclude-output />
+    <content url="file://$MODULE_DIR$" />
+    <orderEntry type="inheritedJdk" />
+    <orderEntry type="sourceFolder" forTests="false" />
+  </component>
+</module>
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+<?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
diff --git a/tests/Partitioning/swen90006/passbook/PartitioningTests.java b/tests/Partitioning/swen90006/passbook/PartitioningTests.java
index bf99698..ce08e2c 100755
--- a/tests/Partitioning/swen90006/passbook/PartitioningTests.java
+++ b/tests/Partitioning/swen90006/passbook/PartitioningTests.java
@@ -680,11 +680,5 @@ public class PartitioningTests
     //This test should fail.
     //To provide additional feedback when a test fails, an error message
     //can be included
-    @Test public void aFailedTest()
-    {
-	//include a message for better feedback
-	final int expected = 2;
-	final int actual = 1 + 2;
-	assertEquals("Some failure message", expected, actual);
-    }
+
 }
-- 
GitLab