From bffe44ee010e614d9305af46501364bd29399469 Mon Sep 17 00:00:00 2001 From: Majid Fatmia Date: Mon, 11 Mar 2019 20:54:41 +0100 Subject: [PATCH 01/60] Add Maven --- .idea/compiler.xml | 16 +++ .idea/encodings.xml | 4 + .idea/google-java-format.xml | 6 + .idea/libraries/Maven__junit_junit_4_12.xml | 13 ++ ...__org_apache_commons_commons_lang3_3_7.xml | 13 ++ .idea/misc.xml | 13 ++ .idea/modules.xml | 8 ++ .idea/vcs.xml | 6 + .idea/workspace.xml | 113 ++++++++++++++++++ ch.hearc.ig.odi.stringcalculatortdd.iml | 18 +++ 10 files changed, 210 insertions(+) create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/google-java-format.xml create mode 100644 .idea/libraries/Maven__junit_junit_4_12.xml create mode 100644 .idea/libraries/Maven__org_apache_commons_commons_lang3_3_7.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 ch.hearc.ig.odi.stringcalculatortdd.iml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..5dcd0a2 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..15a15b2 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/google-java-format.xml b/.idea/google-java-format.xml new file mode 100644 index 0000000..2aa056d --- /dev/null +++ b/.idea/google-java-format.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__junit_junit_4_12.xml b/.idea/libraries/Maven__junit_junit_4_12.xml new file mode 100644 index 0000000..d411041 --- /dev/null +++ b/.idea/libraries/Maven__junit_junit_4_12.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_7.xml b/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_7.xml new file mode 100644 index 0000000..28edf49 --- /dev/null +++ b/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_7.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..3a6c3d2 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,13 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..3e66c7e --- /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 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..91689ed --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1552333949012 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ch.hearc.ig.odi.stringcalculatortdd.iml b/ch.hearc.ig.odi.stringcalculatortdd.iml new file mode 100644 index 0000000..ac22f7d --- /dev/null +++ b/ch.hearc.ig.odi.stringcalculatortdd.iml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file From 2f3babf94847c7779e2f016868086570fff25ab3 Mon Sep 17 00:00:00 2001 From: Majid Fatmia Date: Mon, 11 Mar 2019 20:54:50 +0100 Subject: [PATCH 02/60] add Maven file --- .../Maven__org_apache_commons_commons_text_1_4.xml | 13 +++++++++++++ .../Maven__org_hamcrest_hamcrest_core_1_3.xml | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .idea/libraries/Maven__org_apache_commons_commons_text_1_4.xml create mode 100644 .idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml diff --git a/.idea/libraries/Maven__org_apache_commons_commons_text_1_4.xml b/.idea/libraries/Maven__org_apache_commons_commons_text_1_4.xml new file mode 100644 index 0000000..5a74f9f --- /dev/null +++ b/.idea/libraries/Maven__org_apache_commons_commons_text_1_4.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml b/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml new file mode 100644 index 0000000..f58bbc1 --- /dev/null +++ b/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file From 2f4623c243cd399fe71560bbd7537c0950ad91f1 Mon Sep 17 00:00:00 2001 From: Majid Fatmia Date: Mon, 11 Mar 2019 20:55:52 +0100 Subject: [PATCH 03/60] Add sdk --- .idea/misc.xml | 2 +- .idea/workspace.xml | 209 ++++++++++++++++++++++++++++++++++++++------ 2 files changed, 184 insertions(+), 27 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 3a6c3d2..725f482 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -7,7 +7,7 @@ - + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 91689ed..fcf3691 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,12 +1,7 @@ - - - - - - + + + + + + + + + + + + + + @@ -29,15 +37,55 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -81,7 +92,7 @@ - + @@ -132,7 +143,7 @@ @@ -140,9 +151,12 @@ + + + - @@ -157,7 +171,7 @@ - + @@ -167,7 +181,7 @@ - + @@ -190,6 +204,13 @@ + + + + + + + From 0a612b32697fb81a5617bc203d572eb213fbc194 Mon Sep 17 00:00:00 2001 From: Majid Fatmia Date: Mon, 11 Mar 2019 20:59:40 +0100 Subject: [PATCH 07/60] Update ch.hearc.ig.odi.stringcalculatortdd.iml --- ch.hearc.ig.odi.stringcalculatortdd.iml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ch.hearc.ig.odi.stringcalculatortdd.iml b/ch.hearc.ig.odi.stringcalculatortdd.iml index ac22f7d..5dec970 100644 --- a/ch.hearc.ig.odi.stringcalculatortdd.iml +++ b/ch.hearc.ig.odi.stringcalculatortdd.iml @@ -14,5 +14,7 @@ + + \ No newline at end of file From 726302f32ec9f46e347a13caa3b3ed3e4f61ab4f Mon Sep 17 00:00:00 2001 From: Majid Fatmia Date: Mon, 11 Mar 2019 20:59:44 +0100 Subject: [PATCH 08/60] Update pom.xml --- pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pom.xml b/pom.xml index 4a068ab..12eb9cb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,6 +20,19 @@ commons-text 1.4 + + + org.apache.logging.log4j + log4j-api + 2.11.1 + + + org.apache.logging.log4j + log4j-core + 2.11.1 + + + \ No newline at end of file From 74476071105e7ceda9ae9c6687530ee2ae28bf65 Mon Sep 17 00:00:00 2001 From: Majid Fatmia Date: Mon, 11 Mar 2019 20:59:47 +0100 Subject: [PATCH 09/60] Create StringCalculator.class --- .../stringcalculatortdd/StringCalculator.class | Bin 0 -> 2724 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 target/classes/ch/hearc/ig/odi/stringcalculatortdd/StringCalculator.class diff --git a/target/classes/ch/hearc/ig/odi/stringcalculatortdd/StringCalculator.class b/target/classes/ch/hearc/ig/odi/stringcalculatortdd/StringCalculator.class new file mode 100644 index 0000000000000000000000000000000000000000..4978f27d21a4dadd959be158c8b72bbc380c08b1 GIT binary patch literal 2724 zcmbVN+fy556#p%`FDsXnfT^PN4g?x|!x{<-lv*sLcWR4OmSh_ilTF-gDAZbSXzQ(g ztaKcwqYr)YL463+&eTU|{7d{R)Ze$egcRaT$A>+8zO(20JLi1+=ik3Q2CxrzWbDFN z5N`x=LdG~IWb8yTh?C-QN|4h+awdSYGGvSi$vHvJ3o(1Vx@;$6XJ1IPtnNbn!g4c!`);OXp| zl;9o7r!@(UHPuYT^-MgU z*5gIX)Qt=cQl+eF@o zTeJC+b#y&`y{TCx)0kAVC1NGfZKI)OR7;LSBW zRmFGUqEhRV$S)Sw(BHMe;gKrqwd@D!ph;V>Of^-V@9rA#bXA#Gf(Nv$meT|_as_VI z(&*G%g}{~>Eu$M1!I+WO79=!lMtY-6KASI@Deagp#wxOLD)x#|P_P?&I37LMWeIih zcmR0?1-z%=H4G77S%HbY3W~54^x^=avnR;L)&^4mte}K>1y`}4U=h~>cwfPFVfF!T zDELrFJ`(01EBFN0By3%u!ZRhq(sSDALP{%GdY*gIw*JvcdAOu!(_;2olWwOwjJ(yM zX0!RLS~}68;8QFq_)J9Kjn5U_#4VBW7tDW(4|n)W1z+K73E=U%f^TqJ!omNuO6>7^ zdM9V*v=kdwC2}%m4~v#+T17Fx|FL$LxOTee-N`Fljbdr0Xm7319;-PZzG5M(Gg_^M z>#8}=UV6+)Xz8r!&!5$dj7X375!a}By)Jj8B?JqqS=8)>4a|#;6S=lNncv#{Q(HGI zcP|@kXO#uq0D*&Be-|O}7WHc!PQO|xaDXNBKGnLo6TyuOTKP4|YhG@=X#J^K)f^&l zUM401t5o?%5#kdV;g^WyZCPeyc~P3IcXlCiL-4DT{pyJIWxO~hhhe;EPqbQ!^9 zcW=)MLO)U0iLn)a@=dgFhL8Ww2L41_(8g4wcFbR}=K$kowm2lkWm zkmq&eWF(!UT|GVD^9(+Md~pT!32&^Y3?<=<`V#)A|8ZZy(-({cBY__<5%ouc`xBvP zsElXIXjsOfXlNCUt7uBdQMruf@6Z(WM&*YH*WtngwA#XE&tE^HzTM`h2bY4Nfp+Hq0(0JmFe~a| zeJ`^`Lu}F*tDdB$NxIumi zqqvRZxQi1NP$voMunlDb=cqS8p946JqxQJ5{0h9w?pWTXhVxY>sH2Q2K)s1$ Date: Mon, 11 Mar 2019 20:59:50 +0100 Subject: [PATCH 10/60] Create StringCalculatorTest.class --- .../StringCalculatorTest.class | Bin 0 -> 4113 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 target/test-classes/ch/hearc/ig/odi/stringcalculatortdd/StringCalculatorTest.class diff --git a/target/test-classes/ch/hearc/ig/odi/stringcalculatortdd/StringCalculatorTest.class b/target/test-classes/ch/hearc/ig/odi/stringcalculatortdd/StringCalculatorTest.class new file mode 100644 index 0000000000000000000000000000000000000000..96e5b0fd570bbda5757c92d76d8e9bbced65419f GIT binary patch literal 4113 zcmbVPTUQfT82yIp5YmD%)_ zC((E&SBw>zX60gfA!g?FnC)1)QOIefT&1Krrsd@Gv8>pe5B8=d>bR{Nx^qXO)`7td ziQ4APJd>y=qZ@3cQr=f8LmfZd$GLl9Ij*IDYHz8 zdg}~4o&-O>>U)*8AKNU?4c0(!85>%u!qWD7QFF3d*>hc@o7`xu^F>bxUN_ts$ zn3cA(`z)vL>aLGz#}i;?*}i6Jj^`j)M_tweLVe)v)`@jfviKs$_IWCJfGo3WNF=it zAaGb-q6?Wl?Ldo_G@}snau^sOP2(pCj>NGkg@mf>Vm`G*3mgauT(y=_0JV(Vvltw* zkUAqiGBQ$A&%ItTowSiFRq`yKHbjO}#{yMvK3_y|;1$4_@s6O)aE#?j$jxFiDTl?y8F`!CJF+_cH zlL~rL703s?9|H*f9q02-7WJ~tO1lzCqY_QJYO1FHt!A;)fOJc-dAGJERUpg?gtC`T z55`vh2To5?9arOHYJ5T+9aocx(S6TFgH@Fh8rt_x*>QW?XL*OWzR32ZdMh*`k>)|> z{U+y_w%_KeqB{YJV=A`S=yh?kRUX5Jk@dN{VzKGaU=J#ZS$EX(?qi?_gbUHA4xS+|4teFiOre91TBBMnTa^CD#jf z1P#OM%1W?hI{chjW%(&(3#t_;Rfgl+VLGIjyzah}Xhp~}kqu9WuZyR;;EoY6K@lG$ zA~lCXDSnC+-5VpiSNgnuBH~@-H9YN;`a{j0hG)66ZN`3O&f`_MP zW3jD2f8zhPLrM1mmAfpcg31jl<5=+u#jYp3!;Uc2+R9^@+1{Gk-cq+iaWy%Um;y__ zDT}$Q1muB3?@N9aE>7bDKQ2hX1r>ZN$)6K^8*(PzXLRxThdQnm?dr}Re!nmRv^*x% zxq-SLF?V)O52j&Id+$iuHnU(5*2Kf&^NLnN$j&#geDHw3N`(r{S!TAa6)=#a1A`|S zFuWRA*PU}kPM_Qv+@Q;NLyhB26fb~$EaT}zJY%@ya~!J}?ijt)KJaTGYO7)JH)2lLO+9ruVGrlF$1)=@ z?*y2$)Gjd3MB2NCexbHV$7|~R@h!>6fuqz*=jwpZ90Q&ez;^@Slm~n^(iNqUfDSi- z?xzTSQU`suA#|z%^aoM;P(b%KfmQ&0`Bdn+2GD1s6cNzTCeYUaef?DE`3BJEqV$n~ z{)P@u#P#;NDNCFh2r&25i6qBefUbx)?{UXqx z9Iuc`3ZZ0cCEQ(?#%>tT;{Q^P?%{Sn!2JO=-3r`GQbr(O;>bT!$FiD z3yL*Rte;A;+<;;zN;iZT!%ZkQLGct6o1oY_m13m<#Z8|g)`a32C^S$!1I5m%6syQr H3w`k~p4jXm literal 0 HcmV?d00001 From 4ca7d900b5281972ba22c7aeb4622e41211ea49e Mon Sep 17 00:00:00 2001 From: Majid Fatmia Date: Mon, 11 Mar 2019 21:00:40 +0100 Subject: [PATCH 11/60] Update workspace.xml --- .idea/workspace.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 25d9485..5dbc5a0 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -92,7 +92,7 @@ - + From a621c6cbc6e7f5dcd39484b7b7670990dc6393d6 Mon Sep 17 00:00:00 2001 From: Majid Fatmia Date: Mon, 11 Mar 2019 21:10:17 +0100 Subject: [PATCH 12/60] Update workspace.xml --- .idea/workspace.xml | 243 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 224 insertions(+), 19 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 5dbc5a0..cfae1a7 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,8 +2,7 @@ - - + + + - - + + - + - - + + + + + + + + // + indexOf("// + + @@ -41,6 +52,7 @@ @@ -81,6 +93,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +