From a8cf1b50729afe8620dce6ac1c575b42c02af3cc Mon Sep 17 00:00:00 2001 From: somename Date: Tue, 27 Sep 2016 16:06:28 +0300 Subject: [PATCH 1/8] besouro automatic message --- .besouro/20160927160032766/actions.txt | 6 +++++ .../20160927160032766/besouroEpisodes.txt | 1 + .besouro/20160927160032766/disagreements.txt | 0 .../randomHeuristicEpisodes.txt | 1 + .besouro/20160927160032766/userComments.txt | 0 .besouro/20160927160032766/zorroEpisodes.txt | 1 + bin/.gitignore | 3 +++ bin/TennisGame.class | Bin 1823 -> 1820 bytes bin/TennisGameTest.class | Bin 1346 -> 1340 bytes src/TennisGame.java | 11 ++++----- tests/TennisGameTest.java | 21 ++++++++++++++++-- 11 files changed, 37 insertions(+), 7 deletions(-) create mode 100644 .besouro/20160927160032766/actions.txt create mode 100644 .besouro/20160927160032766/besouroEpisodes.txt create mode 100644 .besouro/20160927160032766/disagreements.txt create mode 100644 .besouro/20160927160032766/randomHeuristicEpisodes.txt create mode 100644 .besouro/20160927160032766/userComments.txt create mode 100644 .besouro/20160927160032766/zorroEpisodes.txt create mode 100644 bin/.gitignore diff --git a/.besouro/20160927160032766/actions.txt b/.besouro/20160927160032766/actions.txt new file mode 100644 index 0000000..b3cf379 --- /dev/null +++ b/.besouro/20160927160032766/actions.txt @@ -0,0 +1,6 @@ +FileOpenedAction 1474981233035 TennisGameException.java 57 0 0 0 +UnitTestCaseAction 1474981237506 TennisGameTest.java OK +UnitTestSessionAction 1474981237506 TennisGameTest.java OK +RefactoringAction 1474981383310 TennisGameTest.java ADD void testTennisGame_Player1WinsPointAfterGameEnded_ResultsException()/2 METHOD +RefactoringAction 1474981395981 TennisGameTest.java RENAME testTennisGame_Player1WinsPointAfterGameEnded_ResultsException()/2=>void testTennisGame_Player1Wins() METHOD +EditAction 1474981588350 TennisGameTest.java 1893 4 27 3 diff --git a/.besouro/20160927160032766/besouroEpisodes.txt b/.besouro/20160927160032766/besouroEpisodes.txt new file mode 100644 index 0000000..6f2a053 --- /dev/null +++ b/.besouro/20160927160032766/besouroEpisodes.txt @@ -0,0 +1 @@ +1474981237506 regression 1 4 true diff --git a/.besouro/20160927160032766/disagreements.txt b/.besouro/20160927160032766/disagreements.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/20160927160032766/randomHeuristicEpisodes.txt b/.besouro/20160927160032766/randomHeuristicEpisodes.txt new file mode 100644 index 0000000..2d97469 --- /dev/null +++ b/.besouro/20160927160032766/randomHeuristicEpisodes.txt @@ -0,0 +1 @@ +1474981237506 regression 1 4 false diff --git a/.besouro/20160927160032766/userComments.txt b/.besouro/20160927160032766/userComments.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/20160927160032766/zorroEpisodes.txt b/.besouro/20160927160032766/zorroEpisodes.txt new file mode 100644 index 0000000..2d97469 --- /dev/null +++ b/.besouro/20160927160032766/zorroEpisodes.txt @@ -0,0 +1 @@ +1474981237506 regression 1 4 false diff --git a/bin/.gitignore b/bin/.gitignore new file mode 100644 index 0000000..b02130c --- /dev/null +++ b/bin/.gitignore @@ -0,0 +1,3 @@ +/TennisGame.class +/TennisGameException.class +/TennisGameTest.class diff --git a/bin/TennisGame.class b/bin/TennisGame.class index 2da4e7a578a8ea5a5a076c2766b0eebecc4efc75..664ef75f953ee156c35537a57e0e38cff059f1ec 100644 GIT binary patch delta 69 zcmbQwH-~S71|t)r!Dd~?8dgJh22KVK1|bG721y2Q1{DS$26YBM1}%m_23v+81_y=^ WhEO1kUnZ_7R2X;|R2c*q z)EGn JG+BmK4FL4W4^IF9 delta 123 zcmdnPb%<+&9U~8SPJUUcg02FH+U&xZ%EZgXz`?-7z{|kLAj-f$c^mU|T@j#&7*I@{ zL4ZMmL4-jHNJ=xv0HFed9D@pjJc9;=4 && player2Points-player1Points>=2) private String getScore(int points) { switch (points) { - case 0: return "love"; + case 0: return "0"; case 1: return "15" ; case 2: return "30" ; case 3: return "40"; @@ -52,14 +52,15 @@ public void player2Scored() throws TennisGameException { } public String getScore() { + // Here is the format of the scores: -// "love - love" +// "0 - 0" // "15 - 15" // "30 - 30" // "deuce" -// "15 - love", "love - 15" -// "30 - love", "love - 30" -// "40 - love", "love - 40" +// "15 - 0", "0 - 15" +// "30 - 0", "0 - 30" +// "40 - 0", "0 - 40" // "30 - 15", "15 - 30" // "40 - 15", "15 - 40" // "player1 has advantage" diff --git a/tests/TennisGameTest.java b/tests/TennisGameTest.java index 98e6414..11e75df 100644 --- a/tests/TennisGameTest.java +++ b/tests/TennisGameTest.java @@ -25,7 +25,7 @@ public void testTennisGame_Start() { //Act String score = game.getScore() ; // Assert - assertEquals("Initial score incorrect", "love - love", score); + assertEquals("Initial score incorrect", "0 - 0", score); } @Test @@ -50,6 +50,8 @@ public void testTennisGame_EahcPlayerWin4Points_Score_Deuce() throws TennisGameE } @Test (expected = TennisGameException.class) + + public void testTennisGame_Player1WinsPointAfterGameEnded_ResultsException() throws TennisGameException { //Arrange TennisGame game = new TennisGame(); @@ -61,5 +63,20 @@ public void testTennisGame_Player1WinsPointAfterGameEnded_ResultsException() thr //Act // This statement should cause an exception game.player1Scored(); - } + } + + public void testTennisGame_Player1Wins() throws TennisGameException { + //Arrange + TennisGame game = new TennisGame(); + //Act + game.player1Scored(); + game.player1Scored(); + game.player1Scored(); + game.player1Scored(); + //Act + // This statement should cause an exception + String score = game.getScore(); + assertEquals("The winner is", "player1 wins", score); + + } } From 686f37ea63f749a52f63aba7fbce299c174d3f5f Mon Sep 17 00:00:00 2001 From: somename Date: Tue, 27 Sep 2016 16:06:46 +0300 Subject: [PATCH 2/8] besouro automatic message --- .besouro/20160927160032766/actions.txt | 3 +++ .../20160927160032766/besouroEpisodes.txt | 1 + .../randomHeuristicEpisodes.txt | 1 + .besouro/20160927160032766/zorroEpisodes.txt | 1 + bin/TennisGameTest.class | Bin 1340 -> 1558 bytes tests/TennisGameTest.java | 2 +- 6 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.besouro/20160927160032766/actions.txt b/.besouro/20160927160032766/actions.txt index b3cf379..ad577b0 100644 --- a/.besouro/20160927160032766/actions.txt +++ b/.besouro/20160927160032766/actions.txt @@ -4,3 +4,6 @@ UnitTestSessionAction 1474981237506 TennisGameTest.java OK RefactoringAction 1474981383310 TennisGameTest.java ADD void testTennisGame_Player1WinsPointAfterGameEnded_ResultsException()/2 METHOD RefactoringAction 1474981395981 TennisGameTest.java RENAME testTennisGame_Player1WinsPointAfterGameEnded_ResultsException()/2=>void testTennisGame_Player1Wins() METHOD EditAction 1474981588350 TennisGameTest.java 1893 4 27 3 +UnitTestCaseAction 1474981589134 TennisGameTest.java OK +UnitTestSessionAction 1474981589150 TennisGameTest.java OK +EditAction 1474981606025 TennisGameTest.java 1895 4 26 3 diff --git a/.besouro/20160927160032766/besouroEpisodes.txt b/.besouro/20160927160032766/besouroEpisodes.txt index 6f2a053..72b186d 100644 --- a/.besouro/20160927160032766/besouroEpisodes.txt +++ b/.besouro/20160927160032766/besouroEpisodes.txt @@ -1 +1,2 @@ 1474981237506 regression 1 4 true +1474981589150 test-addition 1 205 true diff --git a/.besouro/20160927160032766/randomHeuristicEpisodes.txt b/.besouro/20160927160032766/randomHeuristicEpisodes.txt index 2d97469..7311f83 100644 --- a/.besouro/20160927160032766/randomHeuristicEpisodes.txt +++ b/.besouro/20160927160032766/randomHeuristicEpisodes.txt @@ -1 +1,2 @@ 1474981237506 regression 1 4 false +1474981589150 test-addition 1 205 true diff --git a/.besouro/20160927160032766/zorroEpisodes.txt b/.besouro/20160927160032766/zorroEpisodes.txt index 2d97469..87b5fb8 100644 --- a/.besouro/20160927160032766/zorroEpisodes.txt +++ b/.besouro/20160927160032766/zorroEpisodes.txt @@ -1 +1,2 @@ 1474981237506 regression 1 4 false +1474981589150 test-addition 1 351 false diff --git a/bin/TennisGameTest.class b/bin/TennisGameTest.class index 372c5669aed67da0905868154da7b4f830c50e7d..e16e8537dab6fd8d4fed24ad07bd0ca33518516d 100644 GIT binary patch delta 231 zcmdnPHI0Ys)W2Q(7#J8#808aDoHIa2}#Y%%Pe+J%uS6C$VseBEiw$x%q!+# zuw-Q54arDVD9_BxOD$5!1PWO*GVl~Y)PRJGCx2toV`SZ|$}Ger&BnmQpbj*fg@KVl zgMl5$YG7anLIwu4$ro9q(?xuREQG9db}-0n1d1^+Z~;jr1`Z(U1|&Tgco;kx1Q@&+ zL>RmoBpCb{WEuP!R2c#pxPdAZAm#wo@B(=p401r7%0PQ$88{hKfU1~)Y#X2q6N4=P DUYRJ< delta 36 scmbQnvxkf8)W2Q(7#J8#7%Vq(y4Yffr-Ha0NPjyJOBUy diff --git a/tests/TennisGameTest.java b/tests/TennisGameTest.java index 11e75df..fd76b9b 100644 --- a/tests/TennisGameTest.java +++ b/tests/TennisGameTest.java @@ -72,7 +72,7 @@ public void testTennisGame_Player1Wins() throws TennisGameException { game.player1Scored(); game.player1Scored(); game.player1Scored(); - game.player1Scored(); + // game.player1Scored(); //Act // This statement should cause an exception String score = game.getScore(); From cfe3fff495858a6df3c38da6d5bba0b238b02fa5 Mon Sep 17 00:00:00 2001 From: somename Date: Tue, 27 Sep 2016 16:06:56 +0300 Subject: [PATCH 3/8] besouro automatic message --- .besouro/20160927160032766/actions.txt | 3 +++ .../20160927160032766/besouroEpisodes.txt | 1 + .../randomHeuristicEpisodes.txt | 1 + .besouro/20160927160032766/zorroEpisodes.txt | 1 + bin/TennisGameTest.class | Bin 1558 -> 1550 bytes tests/TennisGameTest.java | 2 +- 6 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.besouro/20160927160032766/actions.txt b/.besouro/20160927160032766/actions.txt index ad577b0..0840ffd 100644 --- a/.besouro/20160927160032766/actions.txt +++ b/.besouro/20160927160032766/actions.txt @@ -7,3 +7,6 @@ EditAction 1474981588350 TennisGameTest.java 1893 4 27 3 UnitTestCaseAction 1474981589134 TennisGameTest.java OK UnitTestSessionAction 1474981589150 TennisGameTest.java OK EditAction 1474981606025 TennisGameTest.java 1895 4 26 3 +UnitTestCaseAction 1474981606441 TennisGameTest.java OK +UnitTestSessionAction 1474981606441 TennisGameTest.java OK +EditAction 1474981616794 TennisGameTest.java 1897 4 25 3 diff --git a/.besouro/20160927160032766/besouroEpisodes.txt b/.besouro/20160927160032766/besouroEpisodes.txt index 72b186d..c0044c2 100644 --- a/.besouro/20160927160032766/besouroEpisodes.txt +++ b/.besouro/20160927160032766/besouroEpisodes.txt @@ -1,2 +1,3 @@ 1474981237506 regression 1 4 true 1474981589150 test-addition 1 205 true +1474981606441 refactoring 1A 0 true diff --git a/.besouro/20160927160032766/randomHeuristicEpisodes.txt b/.besouro/20160927160032766/randomHeuristicEpisodes.txt index 7311f83..88a6246 100644 --- a/.besouro/20160927160032766/randomHeuristicEpisodes.txt +++ b/.besouro/20160927160032766/randomHeuristicEpisodes.txt @@ -1,2 +1,3 @@ 1474981237506 regression 1 4 false 1474981589150 test-addition 1 205 true +1474981606441 refactoring 1A 0 false diff --git a/.besouro/20160927160032766/zorroEpisodes.txt b/.besouro/20160927160032766/zorroEpisodes.txt index 87b5fb8..53c221a 100644 --- a/.besouro/20160927160032766/zorroEpisodes.txt +++ b/.besouro/20160927160032766/zorroEpisodes.txt @@ -1,2 +1,3 @@ 1474981237506 regression 1 4 false 1474981589150 test-addition 1 351 false +1474981606441 refactoring 1A 17 false diff --git a/bin/TennisGameTest.class b/bin/TennisGameTest.class index e16e8537dab6fd8d4fed24ad07bd0ca33518516d..053b557963edf0a359a683b39d991a73d9000935 100644 GIT binary patch delta 109 zcmbQn)5o)+n^mxaff)!H7?gH12u5ya5cZk8fK}OFj)5I0=ElIm;K9Jd;K?As;Kd-q z;Kv}z;Lo7Q5Xis{lvRM}1IqIPc^nK<3`z{j42(cEoD3=qstim(whd5*iNO{CVkHZ6 delta 117 zcmeC Date: Tue, 27 Sep 2016 16:07:11 +0300 Subject: [PATCH 4/8] besouro automatic message --- .besouro/20160927160032766/actions.txt | 3 +++ .../20160927160032766/besouroEpisodes.txt | 1 + .../randomHeuristicEpisodes.txt | 1 + .besouro/20160927160032766/zorroEpisodes.txt | 1 + bin/TennisGameTest.class | Bin 1550 -> 1542 bytes tests/TennisGameTest.java | 6 +++--- 6 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.besouro/20160927160032766/actions.txt b/.besouro/20160927160032766/actions.txt index 0840ffd..3d0a7aa 100644 --- a/.besouro/20160927160032766/actions.txt +++ b/.besouro/20160927160032766/actions.txt @@ -10,3 +10,6 @@ EditAction 1474981606025 TennisGameTest.java 1895 4 26 3 UnitTestCaseAction 1474981606441 TennisGameTest.java OK UnitTestSessionAction 1474981606441 TennisGameTest.java OK EditAction 1474981616794 TennisGameTest.java 1897 4 25 3 +UnitTestCaseAction 1474981617249 TennisGameTest.java OK +UnitTestSessionAction 1474981617249 TennisGameTest.java OK +EditAction 1474981631858 TennisGameTest.java 1893 4 27 3 diff --git a/.besouro/20160927160032766/besouroEpisodes.txt b/.besouro/20160927160032766/besouroEpisodes.txt index c0044c2..53e0c36 100644 --- a/.besouro/20160927160032766/besouroEpisodes.txt +++ b/.besouro/20160927160032766/besouroEpisodes.txt @@ -1,3 +1,4 @@ 1474981237506 regression 1 4 true 1474981589150 test-addition 1 205 true 1474981606441 refactoring 1A 0 true +1474981617249 refactoring 1A 0 true diff --git a/.besouro/20160927160032766/randomHeuristicEpisodes.txt b/.besouro/20160927160032766/randomHeuristicEpisodes.txt index 88a6246..8af3c5e 100644 --- a/.besouro/20160927160032766/randomHeuristicEpisodes.txt +++ b/.besouro/20160927160032766/randomHeuristicEpisodes.txt @@ -1,3 +1,4 @@ 1474981237506 regression 1 4 false 1474981589150 test-addition 1 205 true 1474981606441 refactoring 1A 0 false +1474981617249 refactoring 1A 0 true diff --git a/.besouro/20160927160032766/zorroEpisodes.txt b/.besouro/20160927160032766/zorroEpisodes.txt index 53c221a..b18bcf4 100644 --- a/.besouro/20160927160032766/zorroEpisodes.txt +++ b/.besouro/20160927160032766/zorroEpisodes.txt @@ -1,3 +1,4 @@ 1474981237506 regression 1 4 false 1474981589150 test-addition 1 351 false 1474981606441 refactoring 1A 17 false +1474981617249 refactoring 1A 10 false diff --git a/bin/TennisGameTest.class b/bin/TennisGameTest.class index 053b557963edf0a359a683b39d991a73d9000935..a45f8957f3c2c429dceb2a304838e53e8094409a 100644 GIT binary patch delta 105 zcmeC;Hzzl>8405{}1S7XI2>VQ4z$))8#lQv>b7SCO@L=F!@MI8R@M92V v@Mn-^2xQ;}$|yke0OfdrJPrmi1|EqeZ%_>^Kzzl>83`)Bh1S7XI2>WPnW6+vBhgIHRj)5I0?#95u;K9Jd;K?As z;Kd-q;Kv}z;Lo7Q5Xis{lvRM}1 Date: Tue, 27 Sep 2016 16:09:14 +0300 Subject: [PATCH 5/8] besouro automatic message --- .besouro/20160927160032766/actions.txt | 3 +++ .../20160927160032766/besouroEpisodes.txt | 1 + .../randomHeuristicEpisodes.txt | 1 + .besouro/20160927160032766/zorroEpisodes.txt | 1 + bin/TennisGameTest.class | Bin 1542 -> 1558 bytes tests/TennisGameTest.java | 3 +-- 6 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.besouro/20160927160032766/actions.txt b/.besouro/20160927160032766/actions.txt index 3d0a7aa..51a42a4 100644 --- a/.besouro/20160927160032766/actions.txt +++ b/.besouro/20160927160032766/actions.txt @@ -13,3 +13,6 @@ EditAction 1474981616794 TennisGameTest.java 1897 4 25 3 UnitTestCaseAction 1474981617249 TennisGameTest.java OK UnitTestSessionAction 1474981617249 TennisGameTest.java OK EditAction 1474981631858 TennisGameTest.java 1893 4 27 3 +UnitTestCaseAction 1474981634260 TennisGameTest.java OK +UnitTestSessionAction 1474981634260 TennisGameTest.java OK +EditAction 1474981754276 TennisGameTest.java 1842 4 27 3 diff --git a/.besouro/20160927160032766/besouroEpisodes.txt b/.besouro/20160927160032766/besouroEpisodes.txt index 53e0c36..f4efc7c 100644 --- a/.besouro/20160927160032766/besouroEpisodes.txt +++ b/.besouro/20160927160032766/besouroEpisodes.txt @@ -2,3 +2,4 @@ 1474981589150 test-addition 1 205 true 1474981606441 refactoring 1A 0 true 1474981617249 refactoring 1A 0 true +1474981634260 refactoring 1A 2 true diff --git a/.besouro/20160927160032766/randomHeuristicEpisodes.txt b/.besouro/20160927160032766/randomHeuristicEpisodes.txt index 8af3c5e..7259ecf 100644 --- a/.besouro/20160927160032766/randomHeuristicEpisodes.txt +++ b/.besouro/20160927160032766/randomHeuristicEpisodes.txt @@ -2,3 +2,4 @@ 1474981589150 test-addition 1 205 true 1474981606441 refactoring 1A 0 false 1474981617249 refactoring 1A 0 true +1474981634260 refactoring 1A 2 true diff --git a/.besouro/20160927160032766/zorroEpisodes.txt b/.besouro/20160927160032766/zorroEpisodes.txt index b18bcf4..63b5376 100644 --- a/.besouro/20160927160032766/zorroEpisodes.txt +++ b/.besouro/20160927160032766/zorroEpisodes.txt @@ -2,3 +2,4 @@ 1474981589150 test-addition 1 351 false 1474981606441 refactoring 1A 17 false 1474981617249 refactoring 1A 10 false +1474981634260 refactoring 1A 17 false diff --git a/bin/TennisGameTest.class b/bin/TennisGameTest.class index a45f8957f3c2c429dceb2a304838e53e8094409a..41b18b0f0b9c6688953fbe0383e2a4b0c2c4f3f1 100644 GIT binary patch delta 128 zcmZqUnZ~ohh?&u7voUi7lVk$}GY~Q`sO@GDjNHy3?4!MnK?{T@&ta7hR$|})%DDka z4+b6vPX+-7F9s0?Zw3hlKL%L_e+E^CKn8B03I&K6KsCHT9tVRQgA#)>10zrkCxZ%5 O6%&wc1C(K6umu1kI1eZQ delta 138 zcmbQn)5f#Gh?&uFvoUi7Q*{9YGY~Q`$n9njjNHy3?4!MnK?{mSe1$B8taNrT$ZQ0v zU}E3`l2Qz8K+=tYgTaG=hryFUfWePJl);}tmLZUV8z`dyF%2lk3*>Pyh%qQJC^Iku V)o?PXFsK4eVPvoY$}ln50ss=c5N!Ye diff --git a/tests/TennisGameTest.java b/tests/TennisGameTest.java index 5d371c6..4ff1832 100644 --- a/tests/TennisGameTest.java +++ b/tests/TennisGameTest.java @@ -73,8 +73,7 @@ public void testTennisGame_Player1Wins() throws TennisGameException { game.player1Scored(); game.player1Scored(); game.player1Scored(); - //Act - // This statement should cause an exception + String score = game.getScore(); assertEquals("The winner is", "player2 wins", score); From b9f17e9dba90e46eb2d6f050c07b611f8a35b466 Mon Sep 17 00:00:00 2001 From: somename Date: Tue, 27 Sep 2016 16:09:36 +0300 Subject: [PATCH 6/8] besouro automatic message --- .besouro/20160927160032766/actions.txt | 1 + bin/TennisGameTest.class | Bin 1558 -> 1558 bytes tests/TennisGameTest.java | 2 +- 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.besouro/20160927160032766/actions.txt b/.besouro/20160927160032766/actions.txt index 51a42a4..6b8e6ed 100644 --- a/.besouro/20160927160032766/actions.txt +++ b/.besouro/20160927160032766/actions.txt @@ -16,3 +16,4 @@ EditAction 1474981631858 TennisGameTest.java 1893 4 27 3 UnitTestCaseAction 1474981634260 TennisGameTest.java OK UnitTestSessionAction 1474981634260 TennisGameTest.java OK EditAction 1474981754276 TennisGameTest.java 1842 4 27 3 +EditAction 1474981776441 TennisGameTest.java 1842 4 27 3 diff --git a/bin/TennisGameTest.class b/bin/TennisGameTest.class index 41b18b0f0b9c6688953fbe0383e2a4b0c2c4f3f1..49724bf0dd2d1e3c3fa86a075f63310c59c482e8 100644 GIT binary patch delta 21 ccmbQnGmU4%T~ Date: Tue, 27 Sep 2016 16:13:36 +0300 Subject: [PATCH 7/8] besouro automatic message --- .besouro/20160927160032766/actions.txt | 3 +++ .../20160927160032766/besouroEpisodes.txt | 1 + .../randomHeuristicEpisodes.txt | 1 + .besouro/20160927160032766/zorroEpisodes.txt | 1 + bin/TennisGameTest.class | Bin 1558 -> 1558 bytes tests/TennisGameTest.java | 3 +-- 6 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.besouro/20160927160032766/actions.txt b/.besouro/20160927160032766/actions.txt index 6b8e6ed..3ef5f81 100644 --- a/.besouro/20160927160032766/actions.txt +++ b/.besouro/20160927160032766/actions.txt @@ -17,3 +17,6 @@ UnitTestCaseAction 1474981634260 TennisGameTest.java OK UnitTestSessionAction 1474981634260 TennisGameTest.java OK EditAction 1474981754276 TennisGameTest.java 1842 4 27 3 EditAction 1474981776441 TennisGameTest.java 1842 4 27 3 +UnitTestCaseAction 1474981778436 TennisGameTest.java OK +UnitTestSessionAction 1474981778437 TennisGameTest.java OK +EditAction 1474982016716 TennisGameTest.java 1839 4 27 3 diff --git a/.besouro/20160927160032766/besouroEpisodes.txt b/.besouro/20160927160032766/besouroEpisodes.txt index f4efc7c..9deb8f9 100644 --- a/.besouro/20160927160032766/besouroEpisodes.txt +++ b/.besouro/20160927160032766/besouroEpisodes.txt @@ -3,3 +3,4 @@ 1474981606441 refactoring 1A 0 true 1474981617249 refactoring 1A 0 true 1474981634260 refactoring 1A 2 true +1474981778437 regression 1 24 true diff --git a/.besouro/20160927160032766/randomHeuristicEpisodes.txt b/.besouro/20160927160032766/randomHeuristicEpisodes.txt index 7259ecf..c260be8 100644 --- a/.besouro/20160927160032766/randomHeuristicEpisodes.txt +++ b/.besouro/20160927160032766/randomHeuristicEpisodes.txt @@ -3,3 +3,4 @@ 1474981606441 refactoring 1A 0 false 1474981617249 refactoring 1A 0 true 1474981634260 refactoring 1A 2 true +1474981778437 regression 1 24 true diff --git a/.besouro/20160927160032766/zorroEpisodes.txt b/.besouro/20160927160032766/zorroEpisodes.txt index 63b5376..1e913d3 100644 --- a/.besouro/20160927160032766/zorroEpisodes.txt +++ b/.besouro/20160927160032766/zorroEpisodes.txt @@ -3,3 +3,4 @@ 1474981606441 refactoring 1A 17 false 1474981617249 refactoring 1A 10 false 1474981634260 refactoring 1A 17 false +1474981778437 regression 1 144 false diff --git a/bin/TennisGameTest.class b/bin/TennisGameTest.class index 49724bf0dd2d1e3c3fa86a075f63310c59c482e8..44c584cdda46ee4554000a57ab2081c784f78cf5 100644 GIT binary patch delta 14 VcmbQnGmU415i_IVW@F~ZOaLHl1S$Xk delta 14 VcmbQnGmU415i_IFW@F~ZOaLHr1S
Date: Tue, 27 Sep 2016 17:28:34 +0300 Subject: [PATCH 8/8] Exercise completed --- bin/TennisGameTest.class | Bin 1558 -> 1558 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/bin/TennisGameTest.class b/bin/TennisGameTest.class index 44c584cdda46ee4554000a57ab2081c784f78cf5..7bf24301b86765538f73478929703d4e6fac56b1 100644 GIT binary patch delta 28 kcmbQnGmU415i_IFW@F}6Oq@OpvJAcqsto>pRpPM0B2YR)c^nh