diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..26d33521 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/Java.iml b/.idea/Java.iml new file mode 100644 index 00000000..d6ebd480 --- /dev/null +++ b/.idea/Java.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..639900d1 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..11e3c073 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..35eb1ddf --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/simple-junit/src/test/java/com/hmkcode/junit/MathTest.java b/simple-junit/src/test/java/com/hmkcode/junit/MathTest.java index 0fc88cfd..5f799606 100644 --- a/simple-junit/src/test/java/com/hmkcode/junit/MathTest.java +++ b/simple-junit/src/test/java/com/hmkcode/junit/MathTest.java @@ -21,7 +21,7 @@ public class MathTest { @Rule - public Timeout globalTimeout = new Timeout(3000); // 3 seconds max per method tested + public Timeout globalTimeout = new Timeout(30000); // 3 seconds max per method tested com.hmkcode.junit.Math math = new com.hmkcode.junit.Math();