From c4e9f3cbf8dcb23d2fadd3507072efa3f151ff5b Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 15:28:47 +0300 Subject: [PATCH 01/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 22 +++++++++++++++++++ .../20161012143355930/besouroEpisodes.txt | 0 .besouro/20161012143355930/disagreements.txt | 0 .../randomHeuristicEpisodes.txt | 0 .besouro/20161012143355930/userComments.txt | 0 .besouro/20161012143355930/zorroEpisodes.txt | 0 bin/.gitignore | 4 ++++ src/Cell.java | 5 +++++ src/Table.java | 4 ++++ 9 files changed, 35 insertions(+) create mode 100644 .besouro/20161012143355930/actions.txt create mode 100644 .besouro/20161012143355930/besouroEpisodes.txt create mode 100644 .besouro/20161012143355930/disagreements.txt create mode 100644 .besouro/20161012143355930/randomHeuristicEpisodes.txt create mode 100644 .besouro/20161012143355930/userComments.txt create mode 100644 .besouro/20161012143355930/zorroEpisodes.txt create mode 100644 bin/.gitignore create mode 100644 src/Cell.java create mode 100644 src/Table.java diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt new file mode 100644 index 0000000..370bbbe --- /dev/null +++ b/.besouro/20161012143355930/actions.txt @@ -0,0 +1,22 @@ +FileOpenedAction 1476272036140 Spreadsheet.java 264 3 2 0 +RefactoringAction 1476274407337 Spreadsheet.java ADD Table table FIELD +RefactoringAction 1476274464033 Table.java ADD Table.java CLASS +FileOpenedAction 1476274464162 Table.java 29 0 0 0 +RefactoringAction 1476274496059 Spreadsheet.java ADD void Spreatsheet() METHOD +RefactoringAction 1476274561464 Table.java ADD Table(int, int) METHOD +RefactoringAction 1476274654205 Table.java ADD string T FIELD +RefactoringAction 1476274656719 Table.java RENAME T=>string Table FIELD +RefactoringAction 1476274660234 Table.java RENAME Table=>string able FIELD +RefactoringAction 1476274661245 Table.java RENAME able=>string table FIELD +RefactoringAction 1476274672267 Table.java RENAME table=>String table8 FIELD +RefactoringAction 1476274673779 Table.java RENAME table8=>String table FIELD +RefactoringAction 1476275187833 Spreadsheet.java REMOVE table FIELD +RefactoringAction 1476275191875 Spreadsheet.java ADD Cell cell FIELD +RefactoringAction 1476275194902 Spreadsheet.java RENAME cell=>Cell cells FIELD +RefactoringAction 1476275226955 Spreadsheet.java RENAME Spreatsheet()=>Spreadsheet() METHOD +RefactoringAction 1476275296856 Cell.java ADD Cell.java CLASS +FileOpenedAction 1476275296990 Cell.java 28 0 0 0 +RefactoringAction 1476275305506 Cell.java ADD string l FIELD +RefactoringAction 1476275308016 Cell.java RENAME l=>string location FIELD +RefactoringAction 1476275323548 Cell.java ADD String value FIELD +EditAction 1476275326796 Cell.java 61 0 0 0 diff --git a/.besouro/20161012143355930/besouroEpisodes.txt b/.besouro/20161012143355930/besouroEpisodes.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/20161012143355930/disagreements.txt b/.besouro/20161012143355930/disagreements.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/20161012143355930/randomHeuristicEpisodes.txt b/.besouro/20161012143355930/randomHeuristicEpisodes.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/20161012143355930/userComments.txt b/.besouro/20161012143355930/userComments.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/20161012143355930/zorroEpisodes.txt b/.besouro/20161012143355930/zorroEpisodes.txt new file mode 100644 index 0000000..e69de29 diff --git a/bin/.gitignore b/bin/.gitignore new file mode 100644 index 0000000..d07dd14 --- /dev/null +++ b/bin/.gitignore @@ -0,0 +1,4 @@ +/Spreadsheet.class +/SpreadsheetTest.class +/Table.class +/Cell.class diff --git a/src/Cell.java b/src/Cell.java new file mode 100644 index 0000000..82a7114 --- /dev/null +++ b/src/Cell.java @@ -0,0 +1,5 @@ + +public class Cell { + String location; + String value; +} diff --git a/src/Table.java b/src/Table.java new file mode 100644 index 0000000..fdea012 --- /dev/null +++ b/src/Table.java @@ -0,0 +1,4 @@ + +public class Table { + +} From ecb46cdb65f43ecde767d03179d23b333c77cac2 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 15:29:16 +0300 Subject: [PATCH 02/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 1 + src/Cell.java | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 370bbbe..6370cda 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -20,3 +20,4 @@ RefactoringAction 1476275305506 Cell.java ADD string l FIELD RefactoringAction 1476275308016 Cell.java RENAME l=>string location FIELD RefactoringAction 1476275323548 Cell.java ADD String value FIELD EditAction 1476275326796 Cell.java 61 0 0 0 +EditAction 1476275355095 Cell.java 67 0 0 0 diff --git a/src/Cell.java b/src/Cell.java index 82a7114..de59e98 100644 --- a/src/Cell.java +++ b/src/Cell.java @@ -1,5 +1,5 @@ public class Cell { - String location; - String value; + String location=""; + String value=""; } From e685d15fe1ef542e8a818cf4140f4b9f7900f4d9 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 15:29:30 +0300 Subject: [PATCH 03/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 1 + src/Table.java | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 6370cda..d2f90e1 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -21,3 +21,4 @@ RefactoringAction 1476275308016 Cell.java RENAME l=>string location FIELD RefactoringAction 1476275323548 Cell.java ADD String value FIELD EditAction 1476275326796 Cell.java 61 0 0 0 EditAction 1476275355095 Cell.java 67 0 0 0 +EditAction 1476275369587 Table.java 84 1 0 0 diff --git a/src/Table.java b/src/Table.java index fdea012..9d8ef84 100644 --- a/src/Table.java +++ b/src/Table.java @@ -1,4 +1,8 @@ public class Table { + String table; + public Table(int i, int j) { + + } } From 0d282222ee42a71a57c318cac443f69b8fda901f Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 15:42:03 +0300 Subject: [PATCH 04/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 4 ++++ src/Cell.java | 3 +++ 2 files changed, 7 insertions(+) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index d2f90e1..9506988 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -22,3 +22,7 @@ RefactoringAction 1476275323548 Cell.java ADD String value FIELD EditAction 1476275326796 Cell.java 61 0 0 0 EditAction 1476275355095 Cell.java 67 0 0 0 EditAction 1476275369587 Table.java 84 1 0 0 +RefactoringAction 1476275485235 Spreadsheet.java RENAME Spreadsheet()=>Spreadsheet(int) METHOD +RefactoringAction 1476275498779 Spreadsheet.java RENAME Spreadsheet(int)=>Spreadsheet(int, int) METHOD +RefactoringAction 1476276089498 Cell.java ADD Cell(String) METHOD +EditAction 1476276122355 Cell.java 118 1 1 0 diff --git a/src/Cell.java b/src/Cell.java index de59e98..cb717f1 100644 --- a/src/Cell.java +++ b/src/Cell.java @@ -1,5 +1,8 @@ public class Cell { + public Cell(String loc) { + location = loc; + } String location=""; String value=""; } From 1cf648964d41a8b499a832eb52986883228892b5 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 15:42:08 +0300 Subject: [PATCH 05/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 1 + src/Spreadsheet.java | 17 +++++++++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 9506988..d64499c 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -26,3 +26,4 @@ RefactoringAction 1476275485235 Spreadsheet.java RENAME Spreadsheet()=>Spreadshe RefactoringAction 1476275498779 Spreadsheet.java RENAME Spreadsheet(int)=>Spreadsheet(int, int) METHOD RefactoringAction 1476276089498 Cell.java ADD Cell(String) METHOD EditAction 1476276122355 Cell.java 118 1 1 0 +EditAction 1476276127966 Spreadsheet.java 529 4 5 0 diff --git a/src/Spreadsheet.java b/src/Spreadsheet.java index e4f120b..766a4a8 100644 --- a/src/Spreadsheet.java +++ b/src/Spreadsheet.java @@ -1,8 +1,21 @@ public class Spreadsheet { - + Cell[][] cells; + + Spreadsheet(int row,int column) { + cells = new Cell[row][column]; + for(int i=0; i Date: Wed, 12 Oct 2016 15:48:19 +0300 Subject: [PATCH 06/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 11 +++++++++++ bin/Spreadsheet.class | Bin 613 -> 1557 bytes src/Cell.java | 2 +- src/Spreadsheet.java | 16 +++++++++++++--- src/Table.java | 8 -------- 5 files changed, 25 insertions(+), 12 deletions(-) delete mode 100644 src/Table.java diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index d64499c..9341965 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -27,3 +27,14 @@ RefactoringAction 1476275498779 Spreadsheet.java RENAME Spreadsheet(int)=>Spread RefactoringAction 1476276089498 Cell.java ADD Cell(String) METHOD EditAction 1476276122355 Cell.java 118 1 1 0 EditAction 1476276127966 Spreadsheet.java 529 4 5 0 +CompilationAction 1476276129730 Spreadsheet.java +CompilationAction 1476276129731 Spreadsheet.java +CompilationAction 1476276137914 Spreadsheet.java +CompilationAction 1476276138102 Spreadsheet.java +RefactoringAction 1476276202584 Spreadsheet.java ADD int row FIELD +RefactoringAction 1476276202586 Spreadsheet.java ADD int column FIELD +RefactoringAction 1476276414895 Table.java REMOVE Table.java CLASS +RefactoringAction 1476276429402 SpreadsheetTest.java RENAME test()=>void testGet() METHOD +RefactoringAction 1476276430414 SpreadsheetTest.java RENAME testGet()=>void testGetCe() METHOD +RefactoringAction 1476276431425 SpreadsheetTest.java RENAME testGetCe()=>void testGetCell() METHOD +EditAction 1476276498388 Cell.java 119 1 1 0 diff --git a/bin/Spreadsheet.class b/bin/Spreadsheet.class index 92b411f05752a6cee6d06c9769e1b70d40aa0840..ac201d3649eda55ef40878931755da44412459f5 100644 GIT binary patch literal 1557 zcmZ`(T~iZh7(MTPun-rCNcc>uv=ox4&>}|LD59yhsZrE8%vf(+!dqBe6I?d>2lxfO z>m^s*>Wq9$o$<~Y$Dh!D(vEF<-rYdLKr^%Zemx)OocC-#{rksz05d3C&;(AD*L>+L zt*=NKSTF?QtIkVj%5$pAQ}c_fvJwcG73q2F0-aBulnR{Y1$4jmNTgprrOThnyfAfTsW@Bk+x0MNO%Y{N}Wpred%L+3?MDg zQ*x{FUj6x^^dC8ko)qXU)hdp+;P|duH#d!7#icR2OKmQqJA}*2rY|@v@L6RA;Gir%qNQbo=1l4(0-bV6TO;3kd{_Gm|C^iHYroq#IE%C)**k+)qXS-ee^Np;m2 zrOkDIed?jt`G)!w!jT^WM}tocCm3e~qMN5G>REOd-Pw_C#Iwn5^kzqrAJC_5Bcac3 z;ZFQU&d_t_7OrI9B9WR-nC~#~_#K8GCyYIe>|t~l6Di~A9q!*)6@^F2uzV0(ig6u6Uo4-#C8`=f+6!JUU37rD2JQ@FzD z*$6Ja!}nYfct}r#GgU*wFzzGIna&zFa23~Be~fvv+%s{Vk%KTAY+_gt`~m-18#G;i(5pak%eNUk?Z-8haU3if%zGx z_{@LRl=e4E3f#kd6TTvntkxf$9#qqs)dU`d-5>r3+(a@4 literal 613 zcma)2%T5A85Ug32hdcyd=us~U9OPoWVDw<(X`=@W_hFg9kaaQ3!guM(#DgE;M;WVk zH%i1rFWuGCT~*!l{_*+-;0y;vI0}{iV`TJbJ~1XP!c}NY^-^~O9ge$q!>RFOg~Ejm zZG5SaYqbXo?)7YB%E)1(iaZJmb8p! zWsjm`LyzN@_ifydBO8u;?e! Date: Wed, 12 Oct 2016 15:48:28 +0300 Subject: [PATCH 07/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 1 + tests/SpreadsheetTest.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 9341965..dbfb934 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -38,3 +38,4 @@ RefactoringAction 1476276429402 SpreadsheetTest.java RENAME test()=>void testGet RefactoringAction 1476276430414 SpreadsheetTest.java RENAME testGet()=>void testGetCe() METHOD RefactoringAction 1476276431425 SpreadsheetTest.java RENAME testGetCe()=>void testGetCell() METHOD EditAction 1476276498388 Cell.java 119 1 1 0 +EditAction 1476276507657 SpreadsheetTest.java 169 1 1 0 diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 9e0936a..3c7fe2a 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -7,7 +7,7 @@ public class SpreadsheetTest { @Test - public void test() { + public void testGetCell() { fail("Not yet implemented"); } From 571ef4479271531fc73874f70baddfe41e45813b Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 15:50:19 +0300 Subject: [PATCH 08/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 1 + bin/SpreadsheetTest.class | Bin 490 -> 497 bytes tests/SpreadsheetTest.java | 3 ++- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index dbfb934..9d046a7 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -39,3 +39,4 @@ RefactoringAction 1476276430414 SpreadsheetTest.java RENAME testGet()=>void test RefactoringAction 1476276431425 SpreadsheetTest.java RENAME testGetCe()=>void testGetCell() METHOD EditAction 1476276498388 Cell.java 119 1 1 0 EditAction 1476276507657 SpreadsheetTest.java 169 1 1 0 +EditAction 1476276618588 SpreadsheetTest.java 213 1 2 1 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index e7086bd9ef1b6a8b7afcfb717afbaddbf99a7876..42c8b206d3b1607ccc1b581682fc9a43ee709619 100644 GIT binary patch delta 23 ecmaFG{E>OWOdjr%)Z!BN)Dq{^oScpGd>8?7un8Uj delta 16 Xcmey!{EB(POjeeX)Z&tjOMMstI*tZ+ diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 3c7fe2a..77b9266 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -8,8 +8,9 @@ public class SpreadsheetTest { @Test public void testGetCell() { - fail("Not yet implemented"); + Spreadsheet sh = new Spreadsheet(5,5); + assertEquals(sh.get("A1"),"5"); } } From 2d7b70921ceb99de4c7ac9487b1e7d5ed070c393 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 15:51:15 +0300 Subject: [PATCH 09/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ .besouro/20161012143355930/besouroEpisodes.txt | 6 ++++++ .../randomHeuristicEpisodes.txt | 1 + .besouro/20161012143355930/zorroEpisodes.txt | 1 + bin/SpreadsheetTest.class | Bin 497 -> 656 bytes tests/SpreadsheetTest.java | 1 + 6 files changed, 12 insertions(+) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 9d046a7..e0de8f9 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -40,3 +40,6 @@ RefactoringAction 1476276431425 SpreadsheetTest.java RENAME testGetCe()=>void te EditAction 1476276498388 Cell.java 119 1 1 0 EditAction 1476276507657 SpreadsheetTest.java 169 1 1 0 EditAction 1476276618588 SpreadsheetTest.java 213 1 2 1 +UnitTestCaseAction 1476276624703 SpreadsheetTest.java OK +UnitTestSessionAction 1476276624704 SpreadsheetTest.java OK +EditAction 1476276674258 SpreadsheetTest.java 247 1 3 1 diff --git a/.besouro/20161012143355930/besouroEpisodes.txt b/.besouro/20161012143355930/besouroEpisodes.txt index e69de29..735b134 100644 --- a/.besouro/20161012143355930/besouroEpisodes.txt +++ b/.besouro/20161012143355930/besouroEpisodes.txt @@ -0,0 +1,6 @@ +1476276624704 test-last 1 4588 false +1476276624705 test-last 1 4588 false +1476276624706 test-last 1 4588 false +1476276624707 test-last 1 4588 false +1476276624708 test-last 1 4588 false +1476276624709 test-last 1 4588 false diff --git a/.besouro/20161012143355930/randomHeuristicEpisodes.txt b/.besouro/20161012143355930/randomHeuristicEpisodes.txt index e69de29..89ce915 100644 --- a/.besouro/20161012143355930/randomHeuristicEpisodes.txt +++ b/.besouro/20161012143355930/randomHeuristicEpisodes.txt @@ -0,0 +1 @@ +1476276624704 test-last 1 4588 false diff --git a/.besouro/20161012143355930/zorroEpisodes.txt b/.besouro/20161012143355930/zorroEpisodes.txt index e69de29..89ce915 100644 --- a/.besouro/20161012143355930/zorroEpisodes.txt +++ b/.besouro/20161012143355930/zorroEpisodes.txt @@ -0,0 +1 @@ +1476276624704 test-last 1 4588 false diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 42c8b206d3b1607ccc1b581682fc9a43ee709619..2c816ac13d1af7c29757fe3cc8fec6a648d79b13 100644 GIT binary patch delta 335 zcmZWk%}T>S7@RLLG;FqFqpkmcRoeuGAm}Nl9y}BRf`x*DhgFxfp+rr#UcGr%d=f7z z3O+#J#upH`>LK7|_-2L~zWFroEjIdk`v9;9?}3eOOK=HJ=PHxpBJWA57%G_Iuuvsf zUc2pgZOjsk*6!Gu=UBiZ!HlIMG`uJgHzF8_G!8l{>!)$(|Cekm6KJ1d73(Fe5vDG) zI7o(RU!4T4JeQf`sAGe`#Sc5U9*RLuXcqeq&k}jA!b1I@;&=6Xd5=(z3OmBb9lAR` z!UPPxw)T$7v2DL#I@)$?&zN(UUa|6|9Rp0`ButHtzRRd;=8QAHNpP(}I~<$Xf?k4# H<_4PI#lc2z delta 175 zcmbQh`jMII)W2Q(7#J8#7^Ek1or>UK5MpEy_RB9(s7x(U$jmLsNzF~oD@je^Vh~{v zV`mU$WDv+NO4rXS&C4v&cPuVWEh^z*5ND8JWMD~4%*N-Rs%&q>Tn*AFf! z%FIi*)(o4xma)y=gn Date: Wed, 12 Oct 2016 15:51:27 +0300 Subject: [PATCH 10/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ .besouro/20161012143355930/besouroEpisodes.txt | 1 + .../randomHeuristicEpisodes.txt | 1 + .besouro/20161012143355930/zorroEpisodes.txt | 1 + bin/SpreadsheetTest.class | Bin 656 -> 801 bytes src/Cell.java | 2 +- 6 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index e0de8f9..0c4f692 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -43,3 +43,6 @@ EditAction 1476276618588 SpreadsheetTest.java 213 1 2 1 UnitTestCaseAction 1476276624703 SpreadsheetTest.java OK UnitTestSessionAction 1476276624704 SpreadsheetTest.java OK EditAction 1476276674258 SpreadsheetTest.java 247 1 3 1 +UnitTestCaseAction 1476276678517 SpreadsheetTest.java OK +UnitTestSessionAction 1476276678518 SpreadsheetTest.java OK +EditAction 1476276687193 Cell.java 119 1 1 0 diff --git a/.besouro/20161012143355930/besouroEpisodes.txt b/.besouro/20161012143355930/besouroEpisodes.txt index 735b134..a792945 100644 --- a/.besouro/20161012143355930/besouroEpisodes.txt +++ b/.besouro/20161012143355930/besouroEpisodes.txt @@ -4,3 +4,4 @@ 1476276624707 test-last 1 4588 false 1476276624708 test-last 1 4588 false 1476276624709 test-last 1 4588 false +1476276678518 refactoring 1A 4 true diff --git a/.besouro/20161012143355930/randomHeuristicEpisodes.txt b/.besouro/20161012143355930/randomHeuristicEpisodes.txt index 89ce915..2f23ba5 100644 --- a/.besouro/20161012143355930/randomHeuristicEpisodes.txt +++ b/.besouro/20161012143355930/randomHeuristicEpisodes.txt @@ -1 +1,2 @@ 1476276624704 test-last 1 4588 false +1476276678518 refactoring 1A 4 false diff --git a/.besouro/20161012143355930/zorroEpisodes.txt b/.besouro/20161012143355930/zorroEpisodes.txt index 89ce915..623564c 100644 --- a/.besouro/20161012143355930/zorroEpisodes.txt +++ b/.besouro/20161012143355930/zorroEpisodes.txt @@ -1 +1,2 @@ 1476276624704 test-last 1 4588 false +1476276678518 refactoring 1A 53 false diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 2c816ac13d1af7c29757fe3cc8fec6a648d79b13..b43e21e11a7b9b6cf23397bbecaa4ef81aa50b76 100644 GIT binary patch delta 261 zcmbQhx{!_Q)W2Q(7#J8#7)&;D^)c3SGN>}BvookMG6-ZPmL=-vB<7{-2UixCq~`K4 zXfS9pGBD?tmM}7i`hcY~^YsIYGV@A;ONvqxbFH};v>9~S8FUyKgt18TFz7MpGcvFi zfOG(j(14f$v7!Vhm~K6J8spsDBnB1+CZL;?b~6Y@a&T;C5cbg)65GZgAtbYdL2eU+ z3WT?fL2DyW6%zv&kQ4&yVPN0}vUwRq8Tc3!8Tf%b1_m*RNenzdaR#8Q1cL#CAp;{2 K8UguC48{O=6g4CO delta 117 zcmZ3;Hi4Dv)W2Q(7#J8#7&JC=^)XJCWSSit#K6M91QZk7%^(=b!Lgk|*hgDPY#W1w zkjxGSxs5;>CI&7b$;ZG9B)NfXUItMhj~k>1qLYCKD8>Mk;bBl=P-S2QLNy?ti9sCz D0fY|5 diff --git a/src/Cell.java b/src/Cell.java index 972b000..1f7776d 100644 --- a/src/Cell.java +++ b/src/Cell.java @@ -4,5 +4,5 @@ public Cell(String loc) { location = loc; } String location=""; - String value="5"; + String value="7"; } From 4dd5d8aa70a39edb03167950715dfe6570a3a1c0 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 15:52:00 +0300 Subject: [PATCH 11/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 5 +++++ tests/SpreadsheetTest.java | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 0c4f692..2419d44 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -46,3 +46,8 @@ EditAction 1476276674258 SpreadsheetTest.java 247 1 3 1 UnitTestCaseAction 1476276678517 SpreadsheetTest.java OK UnitTestSessionAction 1476276678518 SpreadsheetTest.java OK EditAction 1476276687193 Cell.java 119 1 1 0 +UnitTestCaseAction 1476276691706 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476276691707 SpreadsheetTest.java FAIL +UnitTestCaseAction 1476276699447 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476276699448 SpreadsheetTest.java FAIL +EditAction 1476276720179 SpreadsheetTest.java 247 1 3 1 diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 0e24818..14d5142 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -9,9 +9,9 @@ public class SpreadsheetTest { @Test public void testGetCell() { Spreadsheet sh = new Spreadsheet(5,5); - - assertEquals(sh.get("A1"),"5"); System.out.print(sh.get("A1")); + assertEquals(sh.get("A1"),"5"); + } } From bce4b22813a3e62b328adb49af76b62e40a28f8e Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 15:52:30 +0300 Subject: [PATCH 12/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 801 -> 801 bytes tests/SpreadsheetTest.java | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 2419d44..6de7167 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -51,3 +51,6 @@ UnitTestSessionAction 1476276691707 SpreadsheetTest.java FAIL UnitTestCaseAction 1476276699447 SpreadsheetTest.java FAIL UnitTestSessionAction 1476276699448 SpreadsheetTest.java FAIL EditAction 1476276720179 SpreadsheetTest.java 247 1 3 1 +UnitTestCaseAction 1476276722657 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476276722658 SpreadsheetTest.java FAIL +EditAction 1476276749247 SpreadsheetTest.java 247 1 3 1 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index b43e21e11a7b9b6cf23397bbecaa4ef81aa50b76..fb6392f13d6bb614e7c746432efc60691b34ced1 100644 GIT binary patch delta 172 zcmXBGNe;na7=YpTYelOnp^14OYc2~5%bvtagat`)56OQ4E+ApiIE`zFohCL55dOUo%h?5=O2&j;AAt!Q!81jqIRD>$&H*!NG+uGkJEoKd;l6&q(dw+8QmsF IN`1894}cLKrvLx| delta 171 zcmXBHyAHu{7(ns!m1xx^G^zXjPEiJf(d0=)7)X@WGm!se^a2tF@i^YXNE6F1=UhYA z(CK3tqy=p@Hc66=k|VF?;%(TXcW0ir*zKd#sH?Y3jWA8x zI<5294s__Mw3G}Jhk;IC9VHVO;;M^OR93r<94qxCV-;SM9yI> Date: Wed, 12 Oct 2016 15:52:55 +0300 Subject: [PATCH 13/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ .besouro/20161012143355930/besouroEpisodes.txt | 1 + .../randomHeuristicEpisodes.txt | 1 + .besouro/20161012143355930/zorroEpisodes.txt | 1 + bin/SpreadsheetTest.class | Bin 801 -> 801 bytes tests/SpreadsheetTest.java | 4 ++-- 6 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 6de7167..d02c6ce 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -54,3 +54,6 @@ EditAction 1476276720179 SpreadsheetTest.java 247 1 3 1 UnitTestCaseAction 1476276722657 SpreadsheetTest.java FAIL UnitTestSessionAction 1476276722658 SpreadsheetTest.java FAIL EditAction 1476276749247 SpreadsheetTest.java 247 1 3 1 +UnitTestCaseAction 1476276751949 SpreadsheetTest.java OK +UnitTestSessionAction 1476276751950 SpreadsheetTest.java OK +EditAction 1476276775238 SpreadsheetTest.java 247 1 3 1 diff --git a/.besouro/20161012143355930/besouroEpisodes.txt b/.besouro/20161012143355930/besouroEpisodes.txt index a792945..e35f9b6 100644 --- a/.besouro/20161012143355930/besouroEpisodes.txt +++ b/.besouro/20161012143355930/besouroEpisodes.txt @@ -5,3 +5,4 @@ 1476276624708 test-last 1 4588 false 1476276624709 test-last 1 4588 false 1476276678518 refactoring 1A 4 true +1476276751950 regression 2 64 true diff --git a/.besouro/20161012143355930/randomHeuristicEpisodes.txt b/.besouro/20161012143355930/randomHeuristicEpisodes.txt index 2f23ba5..41577fa 100644 --- a/.besouro/20161012143355930/randomHeuristicEpisodes.txt +++ b/.besouro/20161012143355930/randomHeuristicEpisodes.txt @@ -1,2 +1,3 @@ 1476276624704 test-last 1 4588 false 1476276678518 refactoring 1A 4 false +1476276751950 regression 2 64 true diff --git a/.besouro/20161012143355930/zorroEpisodes.txt b/.besouro/20161012143355930/zorroEpisodes.txt index 623564c..7a9e542 100644 --- a/.besouro/20161012143355930/zorroEpisodes.txt +++ b/.besouro/20161012143355930/zorroEpisodes.txt @@ -1,2 +1,3 @@ 1476276624704 test-last 1 4588 false 1476276678518 refactoring 1A 53 false +1476276751950 regression 2 73 false diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index fb6392f13d6bb614e7c746432efc60691b34ced1..46eaa03a2c8c049919698ce5c765d6c7b19cebeb 100644 GIT binary patch delta 14 VcmZ3;wvcVZenv*~%?B708389P1kC^d delta 14 VcmZ3;wvcVZenv*q%?B708389D1j_&b diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 94e1738..b115919 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -9,8 +9,8 @@ public class SpreadsheetTest { @Test public void testGetCell() { Spreadsheet sh = new Spreadsheet(5,5); - System.out.print(sh.get("A1")); - assertEquals(sh.get("A1"),"7"); + System.out.print(sh.get("F1")); + assertEquals(sh.get("F1"),"7"); } From 94d4c3bb25c99803981f5f51ce22750726bdb72c Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 15:53:49 +0300 Subject: [PATCH 14/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 801 -> 801 bytes tests/SpreadsheetTest.java | 4 ++-- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index d02c6ce..5a91858 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -57,3 +57,6 @@ EditAction 1476276749247 SpreadsheetTest.java 247 1 3 1 UnitTestCaseAction 1476276751949 SpreadsheetTest.java OK UnitTestSessionAction 1476276751950 SpreadsheetTest.java OK EditAction 1476276775238 SpreadsheetTest.java 247 1 3 1 +UnitTestCaseAction 1476276777809 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476276777810 SpreadsheetTest.java FAIL +EditAction 1476276828232 SpreadsheetTest.java 247 1 3 1 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 46eaa03a2c8c049919698ce5c765d6c7b19cebeb..96a55e722512f189f2883e2710a457e0d826a265 100644 GIT binary patch delta 14 VcmZ3;wvcUuH6x?jW*f$*i~u3q1Xut7 delta 14 VcmZ3;wvcUuH6x?rW*f$*i~u3M1XBP2 diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index b115919..57c75c3 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -9,8 +9,8 @@ public class SpreadsheetTest { @Test public void testGetCell() { Spreadsheet sh = new Spreadsheet(5,5); - System.out.print(sh.get("F1")); - assertEquals(sh.get("F1"),"7"); + System.out.print(sh.get("D5")); + assertEquals(sh.get("D5"),"7"); } From d2aa16f3a2ceee7054d41a925513dd1779f8333f Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 15:54:17 +0300 Subject: [PATCH 15/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ .besouro/20161012143355930/besouroEpisodes.txt | 1 + .../randomHeuristicEpisodes.txt | 1 + .besouro/20161012143355930/zorroEpisodes.txt | 1 + bin/SpreadsheetTest.class | Bin 801 -> 801 bytes tests/SpreadsheetTest.java | 2 +- 6 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 5a91858..cdc5f9a 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -60,3 +60,6 @@ EditAction 1476276775238 SpreadsheetTest.java 247 1 3 1 UnitTestCaseAction 1476276777809 SpreadsheetTest.java FAIL UnitTestSessionAction 1476276777810 SpreadsheetTest.java FAIL EditAction 1476276828232 SpreadsheetTest.java 247 1 3 1 +UnitTestCaseAction 1476276830731 SpreadsheetTest.java OK +UnitTestSessionAction 1476276830732 SpreadsheetTest.java OK +EditAction 1476276856484 SpreadsheetTest.java 247 1 3 1 diff --git a/.besouro/20161012143355930/besouroEpisodes.txt b/.besouro/20161012143355930/besouroEpisodes.txt index e35f9b6..e791de8 100644 --- a/.besouro/20161012143355930/besouroEpisodes.txt +++ b/.besouro/20161012143355930/besouroEpisodes.txt @@ -6,3 +6,4 @@ 1476276624709 test-last 1 4588 false 1476276678518 refactoring 1A 4 true 1476276751950 regression 2 64 true +1476276830732 regression 2 55 true diff --git a/.besouro/20161012143355930/randomHeuristicEpisodes.txt b/.besouro/20161012143355930/randomHeuristicEpisodes.txt index 41577fa..56a9189 100644 --- a/.besouro/20161012143355930/randomHeuristicEpisodes.txt +++ b/.besouro/20161012143355930/randomHeuristicEpisodes.txt @@ -1,3 +1,4 @@ 1476276624704 test-last 1 4588 false 1476276678518 refactoring 1A 4 false 1476276751950 regression 2 64 true +1476276830732 regression 2 55 false diff --git a/.besouro/20161012143355930/zorroEpisodes.txt b/.besouro/20161012143355930/zorroEpisodes.txt index 7a9e542..4bf557b 100644 --- a/.besouro/20161012143355930/zorroEpisodes.txt +++ b/.besouro/20161012143355930/zorroEpisodes.txt @@ -1,3 +1,4 @@ 1476276624704 test-last 1 4588 false 1476276678518 refactoring 1A 53 false 1476276751950 regression 2 73 false +1476276830732 regression 2 78 false diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 96a55e722512f189f2883e2710a457e0d826a265..83937a7ca194f7a51423d9675f4bd049e7217750 100644 GIT binary patch delta 15 WcmZ3;wvcUuH6xRY>1JETCyW3kmjsLe delta 15 WcmZ3;wvcUuH6xRo;bvRLCyW3kjRcAS diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 57c75c3..1a97d70 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -10,7 +10,7 @@ public class SpreadsheetTest { public void testGetCell() { Spreadsheet sh = new Spreadsheet(5,5); System.out.print(sh.get("D5")); - assertEquals(sh.get("D5"),"7"); + assertEquals(sh.get("D6"),"7"); } From 4b22a19bc19024cda8c1035d1ad126b444b9811d Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 15:54:54 +0300 Subject: [PATCH 16/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 6 ++++++ bin/SpreadsheetTest.class | Bin 801 -> 809 bytes tests/SpreadsheetTest.java | 10 +++++++++- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index cdc5f9a..81ccb78 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -63,3 +63,9 @@ EditAction 1476276828232 SpreadsheetTest.java 247 1 3 1 UnitTestCaseAction 1476276830731 SpreadsheetTest.java OK UnitTestSessionAction 1476276830732 SpreadsheetTest.java OK EditAction 1476276856484 SpreadsheetTest.java 247 1 3 1 +UnitTestCaseAction 1476276858747 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476276858748 SpreadsheetTest.java FAIL +RefactoringAction 1476276880592 SpreadsheetTest.java ADD void testGetCell()/2 METHOD +RefactoringAction 1476276886106 SpreadsheetTest.java RENAME testGetCell()/2=>void testSetGetCell() METHOD +RefactoringAction 1476276888118 SpreadsheetTest.java RENAME testSetGetCell()=>void testSetCell() METHOD +EditAction 1476276893097 SpreadsheetTest.java 400 2 6 2 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 83937a7ca194f7a51423d9675f4bd049e7217750..c51f4787c77bdefa14728180e8bf469a9ba13e45 100644 GIT binary patch delta 96 zcmZ3;wvvtO)W2Q(7#J8#7|b?uZDG`6axvpz&}L*{H0NT_Wzc75&|_o}$S+FQ&nnH! zEYWu?E>0~f;bAafFr55=@hhjsHU>E%tsM+HlkYK^@Eb80GXS*$4P#(nVlV{&mjo65 delta 72 zcmZ3 Date: Wed, 12 Oct 2016 16:03:28 +0300 Subject: [PATCH 17/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 13 +++++++++++++ bin/.gitignore | 1 + bin/SpreadsheetTest.class | Bin 809 -> 939 bytes src/Index.java | 5 +++++ 4 files changed, 19 insertions(+) create mode 100644 src/Index.java diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 81ccb78..63bf74f 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -69,3 +69,16 @@ RefactoringAction 1476276880592 SpreadsheetTest.java ADD void testGetCell()/2 ME RefactoringAction 1476276886106 SpreadsheetTest.java RENAME testGetCell()/2=>void testSetGetCell() METHOD RefactoringAction 1476276888118 SpreadsheetTest.java RENAME testSetGetCell()=>void testSetCell() METHOD EditAction 1476276893097 SpreadsheetTest.java 400 2 6 2 +RefactoringAction 1476277198096 Spreadsheet.java ADD find ce FIELD +RefactoringAction 1476277200113 Spreadsheet.java RENAME ce=>find cell FIELD +RefactoringAction 1476277206630 Spreadsheet.java REMOVE cell FIELD +RefactoringAction 1476277237212 Spreadsheet.java ADD void getCellIndex() METHOD +RefactoringAction 1476277243244 Spreadsheet.java RENAME getCellIndex()=>void getCellIndex(String) METHOD +RefactoringAction 1476277321262 Spreadsheet.java RENAME getCellIndex(String)=>void IndegetCellIndex(String) METHOD +RefactoringAction 1476277322274 Spreadsheet.java RENAME IndegetCellIndex(String)=>void IndexgetCellIndex(String) METHOD +RefactoringAction 1476277323298 Spreadsheet.java RENAME IndexgetCellIndex(String)=>Index getCellIndex(String) METHOD +RefactoringAction 1476277393091 Index.java ADD Index.java CLASS +FileOpenedAction 1476277393253 Index.java 29 0 0 0 +RefactoringAction 1476277398749 Index.java ADD int i FIELD +RefactoringAction 1476277404254 Index.java ADD int j FIELD +EditAction 1476277407695 Index.java 45 0 0 0 diff --git a/bin/.gitignore b/bin/.gitignore index d07dd14..999f53e 100644 --- a/bin/.gitignore +++ b/bin/.gitignore @@ -2,3 +2,4 @@ /SpreadsheetTest.class /Table.class /Cell.class +/Index.class diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index c51f4787c77bdefa14728180e8bf469a9ba13e45..aceb39c830e674daaa1a746913ab060ec4771582 100644 GIT binary patch delta 176 zcmZ3E88I@NO}1rh=$%NB@!H|Iw2#qE$XEO7F z%WVW&!oxEy5tiAj+V~AkM%I6cGc;GcYJI@G$TKX)Xo{2AEOCKt2_tH9ohf@ delta 112 zcmZ3@zLJgW)W2Q(7#J8#7|b?u88I@NPPS!i)M9cm<6zKcWMDMsV$fyKXJ^o3WDv+N zO4rXS&C4v&cPuVWEh^z*Fkmp8{D3iFvK^ByBh%y@rgBb=Z47ckT00nYCcj}a;WuJ1 PW&j!jG@OBfiNO>A2jv*^ diff --git a/src/Index.java b/src/Index.java new file mode 100644 index 0000000..c3fde5f --- /dev/null +++ b/src/Index.java @@ -0,0 +1,5 @@ + +public class Index { + int i; + int j; +} From 55699c2dc6bc59b25cf98c3aa3378e80ca9eacd0 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:04:23 +0300 Subject: [PATCH 18/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 2 ++ src/Index.java | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 63bf74f..8260e06 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -82,3 +82,5 @@ FileOpenedAction 1476277393253 Index.java 29 0 0 0 RefactoringAction 1476277398749 Index.java ADD int i FIELD RefactoringAction 1476277404254 Index.java ADD int j FIELD EditAction 1476277407695 Index.java 45 0 0 0 +RefactoringAction 1476277440451 Index.java ADD Index(int, int) METHOD +EditAction 1476277462787 Index.java 102 1 2 0 diff --git a/src/Index.java b/src/Index.java index c3fde5f..aa74cb6 100644 --- a/src/Index.java +++ b/src/Index.java @@ -1,5 +1,9 @@ public class Index { + public Index(int i2, int j2) { + i = i2; + j=j2; + } int i; int j; } From 59e021a6eb10a76ccb68146e48df83158b0203f2 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:05:46 +0300 Subject: [PATCH 19/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 1 + src/Spreadsheet.java | 34 +++++++++++++++++++++++--- 2 files changed, 32 insertions(+), 3 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 8260e06..fc44260 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -84,3 +84,4 @@ RefactoringAction 1476277404254 Index.java ADD int j FIELD EditAction 1476277407695 Index.java 45 0 0 0 RefactoringAction 1476277440451 Index.java ADD Index(int, int) METHOD EditAction 1476277462787 Index.java 102 1 2 0 +EditAction 1476277545581 Spreadsheet.java 1128 5 10 0 diff --git a/src/Spreadsheet.java b/src/Spreadsheet.java index bf24b07..10e2136 100644 --- a/src/Spreadsheet.java +++ b/src/Spreadsheet.java @@ -3,10 +3,12 @@ public class Spreadsheet { Cell[][] cells; int row; int column; + Spreadsheet(int row,int column) { this.row=row; this.column=column; cells = new Cell[row][column]; + for(int i=0; i Date: Wed, 12 Oct 2016 16:20:46 +0300 Subject: [PATCH 20/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/Spreadsheet.class | Bin 1557 -> 1898 bytes src/Spreadsheet.java | 29 ++++++++++--------------- tests/SpreadsheetTest.java | 5 +++-- 4 files changed, 17 insertions(+), 20 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index fc44260..e904d85 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -85,3 +85,6 @@ EditAction 1476277407695 Index.java 45 0 0 0 RefactoringAction 1476277440451 Index.java ADD Index(int, int) METHOD EditAction 1476277462787 Index.java 102 1 2 0 EditAction 1476277545581 Spreadsheet.java 1128 5 10 0 +CompilationAction 1476277547750 Spreadsheet.java +CompilationAction 1476278353352 Spreadsheet.java +EditAction 1476278445597 SpreadsheetTest.java 421 2 7 2 diff --git a/bin/Spreadsheet.class b/bin/Spreadsheet.class index ac201d3649eda55ef40878931755da44412459f5..4a8b8b8f85377ea5dbca0a4c27be781ec4d2e5b6 100644 GIT binary patch delta 777 zcmYk4%WD%+6vn?hk4!opYX}Y%o3V|>sOf~%P--<$#cFD6l3MF4zQ-CuN=QIraFTO`9R)}tCOQr4mlYuM+Pv_`uH1u7jln4EZxvjuk>cCriG?IM@qvY6>2-w_>Vs5rqjN_9{*gacF` zL5%7%jEn^;IEhodQ4g1}L^ngsU1n7Urx^`H{6x$kw!jLmK(vVhwD~M$ogPFn)rUw) z2ri2m_Z9M6O!%K+oZ5%UkRZd+9z!w^*=2D03>22bV380_l{D&Knsy%ta^{4RG@mG= zbI*x_I=hJ(bz0j*Lb~E)Y>kForByecBk~UOCCAp@;C8|7tZTy7m=xXE`LeDGhsVgq z&bIr{x&%i8Oc29`ffR?5Ms*C63?1h+MQ)cE)4g7%0)*XOa{XQuW(0m}I3s^M_F__q rza6oq$5H6NV9;Y)t&36R2L{>LUH_v#F0%f2eRyv$8G(DuR&f6h+vIvj delta 453 zcmYLFyG{a86r8&cSa1VM5Yey+pb#fbD-U%X*-G`UWZqT;lyb#1t-QQoy~_omSOMjJ)&&J_ zc%Z>Y48scpLx@2~f|DZe3(l@EVtpvpS{oAeKvv#pA}wc{m`Zjq8c7+c4z}iAu=@o6 z|Ky-mmxaMT(CB~GB@tmc+~{{ji#ud25hvgx2B9KEpD<>4FS5@t$1<7Zzz-`}1!^2* zaf}=UgREnXu_eZzr(EO0P4a%IJ*c7wMHtdIcM246Lexpx0+~m&36c}QMGA;JX3+sT mFtcTUUUtQwgetK(wW99H#I*Au#3lA3C!JFb!U>!?UGW!-GC$7% diff --git a/src/Spreadsheet.java b/src/Spreadsheet.java index 10e2136..64159c8 100644 --- a/src/Spreadsheet.java +++ b/src/Spreadsheet.java @@ -21,32 +21,24 @@ public class Spreadsheet { public String get(String cell) { - for(int i=0; i Date: Wed, 12 Oct 2016 16:21:54 +0300 Subject: [PATCH 21/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 939 -> 1024 bytes tests/SpreadsheetTest.java | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index e904d85..2d296a1 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -88,3 +88,6 @@ EditAction 1476277545581 Spreadsheet.java 1128 5 10 0 CompilationAction 1476277547750 Spreadsheet.java CompilationAction 1476278353352 Spreadsheet.java EditAction 1476278445597 SpreadsheetTest.java 421 2 7 2 +UnitTestCaseAction 1476278447757 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476278447758 SpreadsheetTest.java FAIL +EditAction 1476278514189 SpreadsheetTest.java 421 2 7 2 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index aceb39c830e674daaa1a746913ab060ec4771582..2cafbd976bbfdca26d3a1334bd54fa5a4dda99e4 100644 GIT binary patch delta 206 zcmZ3@-oU|i>ff$?3=9k=47MA&jF?P07)%%$m>i8c7|a+M7|pmC1Q{%N7%UmA7#Wz0 zQ%e{b)HQsv63Y_xa}x8?^@B@_GV{`{CkHYLGlp%pVPaye%wu3-U;-MbwVOdOl7nMA zgRqabkg<^IHU{%e3}Qg$HU_zE3`!7&kj4%Mt&Kp{OblE=QjCEWND2elA`C(dq6~6C l5lsdO25zt%*i;4{23{bKi$Q_GfWeRf=tc%>AfJiB1^_GGAM*eJ delta 80 zcmZqRSk2CL>ff$?3=9k=45k~ojF>jJGBGhu=4Q4s7G~gL5MdBw5M@wg5NF^9DiLE~ d0+LD$JPf=*nu|e#!GOV#fe{FefqW(g698P(3J3rI diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 3f5b2f9..b1f1b7f 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -19,7 +19,7 @@ public void testSetCell() { Spreadsheet sh = new Spreadsheet(5,5); sh.set("A3", "6"); System.out.print(sh.get("A3")); - assertEquals(sh.get("A3"),"7"); + assertEquals(sh.get("A3"),"6"); } From f225a24c19164cb119e39bcb1bed38f9a91974eb Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:22:34 +0300 Subject: [PATCH 22/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 1024 -> 1024 bytes tests/SpreadsheetTest.java | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 2d296a1..e0c4c5c 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -91,3 +91,6 @@ EditAction 1476278445597 SpreadsheetTest.java 421 2 7 2 UnitTestCaseAction 1476278447757 SpreadsheetTest.java FAIL UnitTestSessionAction 1476278447758 SpreadsheetTest.java FAIL EditAction 1476278514189 SpreadsheetTest.java 421 2 7 2 +UnitTestCaseAction 1476278516759 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476278516760 SpreadsheetTest.java FAIL +EditAction 1476278553288 SpreadsheetTest.java 423 2 6 2 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 2cafbd976bbfdca26d3a1334bd54fa5a4dda99e4..3ca66556f32a265172a316f9b3c37c7f3d2d747c 100644 GIT binary patch delta 13 UcmZqRXyDkem6_3W@-}8K03LS)MF0Q* delta 13 UcmZqRXyDkem6=gv@-}8K03J33H~;_u diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index b1f1b7f..0cd711e 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -17,7 +17,7 @@ public void testGetCell() { @Test public void testSetCell() { Spreadsheet sh = new Spreadsheet(5,5); - sh.set("A3", "6"); + //sh.set("A3", "6"); System.out.print(sh.get("A3")); assertEquals(sh.get("A3"),"6"); From 3564acd17ff41c3a86ca486dda9eb29b729929ab Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:23:12 +0300 Subject: [PATCH 23/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 1024 -> 954 bytes tests/SpreadsheetTest.java | 4 ++-- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index e0c4c5c..8e24b0f 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -94,3 +94,6 @@ EditAction 1476278514189 SpreadsheetTest.java 421 2 7 2 UnitTestCaseAction 1476278516759 SpreadsheetTest.java FAIL UnitTestSessionAction 1476278516760 SpreadsheetTest.java FAIL EditAction 1476278553288 SpreadsheetTest.java 423 2 6 2 +UnitTestCaseAction 1476278555513 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476278555514 SpreadsheetTest.java FAIL +EditAction 1476278591859 SpreadsheetTest.java 423 2 6 2 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 3ca66556f32a265172a316f9b3c37c7f3d2d747c..013b8fb798eb78b29d5de19dbb1338489bd331ae 100644 GIT binary patch delta 114 zcmZqR*u~Cu>ff$?3=9k=43-ff$?3=9k=47MA&9GTR(7z7zCco-}htQZ-Xi&IM&8Pqj=vJ%S@^>Y&Q z()EK&iZb)kttSUE3Nwan_GV&Yl+I&dVPFE9ptYMpFp`5~JA<%~wve%q={5%Q$qCGg zwqgvdKv`i1E(Q?>AqG(fIR-HXO$G@DZlI_bL?;6e122%r#h}1oz+lM02!z%^J`;lt E0ONfb-2eap diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 0cd711e..5007c7b 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -9,8 +9,8 @@ public class SpreadsheetTest { @Test public void testGetCell() { Spreadsheet sh = new Spreadsheet(5,5); - System.out.print(sh.get("D6")); - assertEquals(sh.get("D6"),"7"); + System.out.print(sh.get("D5")); + assertEquals(sh.get("D5"),"7"); } From 02f8eaf9b58fd0e3e47342cec7e1d6d01a82ed19 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:23:45 +0300 Subject: [PATCH 24/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 954 -> 954 bytes tests/SpreadsheetTest.java | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 8e24b0f..44b440a 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -97,3 +97,6 @@ EditAction 1476278553288 SpreadsheetTest.java 423 2 6 2 UnitTestCaseAction 1476278555513 SpreadsheetTest.java FAIL UnitTestSessionAction 1476278555514 SpreadsheetTest.java FAIL EditAction 1476278591859 SpreadsheetTest.java 423 2 6 2 +UnitTestCaseAction 1476278594093 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476278594094 SpreadsheetTest.java FAIL +EditAction 1476278624606 SpreadsheetTest.java 421 2 7 2 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 013b8fb798eb78b29d5de19dbb1338489bd331ae..89759c1120f9f9edd3691bc0d226278008f5dff0 100644 GIT binary patch delta 14 VcmdnRzKeZ>4I`uJW?RNuCIBN<1Qq}Q delta 14 VcmdnRzKeZ>4I`u3W?RNuCIBN_1Q!4R diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 5007c7b..787d991 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -17,7 +17,7 @@ public void testGetCell() { @Test public void testSetCell() { Spreadsheet sh = new Spreadsheet(5,5); - //sh.set("A3", "6"); + sh.set("A3", "6"); System.out.print(sh.get("A3")); assertEquals(sh.get("A3"),"6"); From 3985499051f61419e0aa24a89d3476143a96ef70 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:24:35 +0300 Subject: [PATCH 25/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 954 -> 1024 bytes tests/SpreadsheetTest.java | 4 ++-- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 44b440a..9509f8d 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -100,3 +100,6 @@ EditAction 1476278591859 SpreadsheetTest.java 423 2 6 2 UnitTestCaseAction 1476278594093 SpreadsheetTest.java FAIL UnitTestSessionAction 1476278594094 SpreadsheetTest.java FAIL EditAction 1476278624606 SpreadsheetTest.java 421 2 7 2 +UnitTestCaseAction 1476278626680 SpreadsheetTest.java OK +UnitTestSessionAction 1476278626681 SpreadsheetTest.java OK +EditAction 1476278674351 SpreadsheetTest.java 421 2 7 2 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 89759c1120f9f9edd3691bc0d226278008f5dff0..75a1492dcfb3c1fb5f5a32094b67a3cf9229b5e0 100644 GIT binary patch delta 163 zcmdnR-oU|i>ff$?3=9k=47MA&9GTR(7z7zCco-}htQZ-Xi&IM&8Pqj=vJ%S@^>Y&Q z()EK&iZb)kttSUE3Nwan_GV&Yl+I&dVPFE9ptYMpFp`5~JA<%~wve%q={5%Q$qCGg zwqgvdKv`i1E(Q?>AqG(fIR-HXO$G@DZlI_bL?;6e122%r#h}1oz+lM02!z%^J`;lt E0ONfb-2eap delta 114 zcmZqR*u~Cu>ff$?3=9k=43- Date: Wed, 12 Oct 2016 16:24:44 +0300 Subject: [PATCH 26/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 1024 -> 1032 bytes tests/SpreadsheetTest.java | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 9509f8d..8b03d44 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -103,3 +103,6 @@ EditAction 1476278624606 SpreadsheetTest.java 421 2 7 2 UnitTestCaseAction 1476278626680 SpreadsheetTest.java OK UnitTestSessionAction 1476278626681 SpreadsheetTest.java OK EditAction 1476278674351 SpreadsheetTest.java 421 2 7 2 +UnitTestCaseAction 1476278676583 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476278676584 SpreadsheetTest.java FAIL +EditAction 1476278683945 SpreadsheetTest.java 421 2 7 2 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 75a1492dcfb3c1fb5f5a32094b67a3cf9229b5e0..7c5f0195a739c4b598c4c0e60226c1dc3e6dd8e5 100644 GIT binary patch delta 56 zcmZqR=-}Ww^>5cc1_lNb2K$X%)l3{53^t4mOpYd-TbYy?xvaM_$Zca#(iXCwyph?1 L-4>{jiNOv4pxq3s delta 47 zcmeC+XyD*F^>5cc1_lNb2HTBX)l8dvnUom0jJGk!ZDUZ<7BZf^li7pa8Ys`iU;_YB C6bs=1 diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 5d2078b..657d874 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -19,7 +19,7 @@ public void testSetCell() { Spreadsheet sh = new Spreadsheet(5,5); sh.set("A3", "6"); System.out.print(sh.get("A4")); - assertEquals(sh.get("A4"),"6"); + assertEquals(sh.get("A4"),"7"); } From 977f6b18b4aaed75d03a6fb891f2b532068693a8 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:25:28 +0300 Subject: [PATCH 27/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 1032 -> 1032 bytes tests/SpreadsheetTest.java | 6 +++--- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 8b03d44..38dec7b 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -106,3 +106,6 @@ EditAction 1476278674351 SpreadsheetTest.java 421 2 7 2 UnitTestCaseAction 1476278676583 SpreadsheetTest.java FAIL UnitTestSessionAction 1476278676584 SpreadsheetTest.java FAIL EditAction 1476278683945 SpreadsheetTest.java 421 2 7 2 +UnitTestCaseAction 1476278685944 SpreadsheetTest.java OK +UnitTestSessionAction 1476278685945 SpreadsheetTest.java OK +EditAction 1476278727891 SpreadsheetTest.java 422 2 7 2 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 7c5f0195a739c4b598c4c0e60226c1dc3e6dd8e5..61e89c5f8b08a9c50bcb0601e2d4eb8ecfa803f0 100644 GIT binary patch delta 13 UcmeC+=-}9}mzhyx@;+uS03S{SSO5S3 delta 13 UcmeC+=-}9}mzmLY@;+uS03VM8WdHyG diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 657d874..61ec890 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -17,9 +17,9 @@ public void testGetCell() { @Test public void testSetCell() { Spreadsheet sh = new Spreadsheet(5,5); - sh.set("A3", "6"); - System.out.print(sh.get("A4")); - assertEquals(sh.get("A4"),"7"); + sh.set("A7", "6"); + System.out.print(sh.get("A7")); + assertEquals(sh.get("A7"),null); } From faaa3e27b178d371ea6031e99b37dc1146e37127 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:25:47 +0300 Subject: [PATCH 28/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 1032 -> 1023 bytes tests/SpreadsheetTest.java | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 38dec7b..5fe1d6a 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -109,3 +109,6 @@ EditAction 1476278683945 SpreadsheetTest.java 421 2 7 2 UnitTestCaseAction 1476278685944 SpreadsheetTest.java OK UnitTestSessionAction 1476278685945 SpreadsheetTest.java OK EditAction 1476278727891 SpreadsheetTest.java 422 2 7 2 +UnitTestCaseAction 1476278730193 SpreadsheetTest.java OK +UnitTestSessionAction 1476278730195 SpreadsheetTest.java OK +EditAction 1476278746277 SpreadsheetTest.java 421 2 7 2 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 61e89c5f8b08a9c50bcb0601e2d4eb8ecfa803f0..ce253f9c30e5f3fc41545a8ca3ca4db70ad189d7 100644 GIT binary patch delta 123 zcmeC+_|MLD>ff$?3=9k=47MA&ESVV1C%Z5?Zti7bV${oJU}0baN@?z95RByD*v=sA zqb+1CWV(&Pd=rBhkhzUPZX1IVguys@AG4yS27?3xH&BZhL?Z(a122%r#URgMz+lM0 M2!z%^J`;lt0G+252><{9 delta 115 zcmey*-oe3j>ff$?3=9k=4E7tjESVUMC%Z5?a&R!%FfuSXnrv=mVq)aXV_;!m0; Date: Wed, 12 Oct 2016 16:26:03 +0300 Subject: [PATCH 29/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 1023 -> 1024 bytes tests/SpreadsheetTest.java | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 5fe1d6a..9bbc418 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -112,3 +112,6 @@ EditAction 1476278727891 SpreadsheetTest.java 422 2 7 2 UnitTestCaseAction 1476278730193 SpreadsheetTest.java OK UnitTestSessionAction 1476278730195 SpreadsheetTest.java OK EditAction 1476278746277 SpreadsheetTest.java 421 2 7 2 +UnitTestCaseAction 1476278749269 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476278749270 SpreadsheetTest.java FAIL +EditAction 1476278763036 SpreadsheetTest.java 422 2 7 2 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index ce253f9c30e5f3fc41545a8ca3ca4db70ad189d7..79a5d847d090391dc21028bc3afafae84995615a 100644 GIT binary patch delta 70 zcmey*-oUY;otZO_frWvIfq_A5@&slTCLz Date: Wed, 12 Oct 2016 16:29:09 +0300 Subject: [PATCH 30/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 1 + bin/SpreadsheetTest.class | Bin 1024 -> 1023 bytes src/Spreadsheet.java | 4 ++-- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 9bbc418..009fa7a 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -115,3 +115,4 @@ EditAction 1476278746277 SpreadsheetTest.java 421 2 7 2 UnitTestCaseAction 1476278749269 SpreadsheetTest.java FAIL UnitTestSessionAction 1476278749270 SpreadsheetTest.java FAIL EditAction 1476278763036 SpreadsheetTest.java 422 2 7 2 +EditAction 1476278948429 Spreadsheet.java 1018 5 13 0 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 79a5d847d090391dc21028bc3afafae84995615a..ce253f9c30e5f3fc41545a8ca3ca4db70ad189d7 100644 GIT binary patch delta 69 zcmZqR_|LwfotZP2frWvIfq_AD@&slTM#jn8m=!fO7$g|Dfns7183rB(ULcQ)L7u^Y P!H|Iw2(5v9CI%Y-hqed$ delta 70 zcmey*-oUY;otZO_frWvIfq_A5@&slTCLz Date: Wed, 12 Oct 2016 16:29:18 +0300 Subject: [PATCH 31/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 1 + bin/Spreadsheet.class | Bin 1898 -> 1912 bytes src/Spreadsheet.java | 1 + 3 files changed, 2 insertions(+) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 009fa7a..e0de44d 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -116,3 +116,4 @@ UnitTestCaseAction 1476278749269 SpreadsheetTest.java FAIL UnitTestSessionAction 1476278749270 SpreadsheetTest.java FAIL EditAction 1476278763036 SpreadsheetTest.java 422 2 7 2 EditAction 1476278948429 Spreadsheet.java 1018 5 13 0 +EditAction 1476278957537 Spreadsheet.java 1021 5 13 0 diff --git a/bin/Spreadsheet.class b/bin/Spreadsheet.class index 4a8b8b8f85377ea5dbca0a4c27be781ec4d2e5b6..1aa31b3057d4b24325447a06880cc20081b681be 100644 GIT binary patch delta 105 zcmaFG_k)k?)W2Q(7#J8#7?L+~9bx9;Vqj!Q;9+oJaNK;3Ihxtkih&6T85r2Kw6`(D sZve8G7|cO@pgINyYX%D-DF#u&V98(w Date: Wed, 12 Oct 2016 16:30:07 +0300 Subject: [PATCH 32/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 6 ++++++ tests/SpreadsheetTest.java | 8 ++++++++ 2 files changed, 14 insertions(+) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index e0de44d..1ca1e94 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -117,3 +117,9 @@ UnitTestSessionAction 1476278749270 SpreadsheetTest.java FAIL EditAction 1476278763036 SpreadsheetTest.java 422 2 7 2 EditAction 1476278948429 Spreadsheet.java 1018 5 13 0 EditAction 1476278957537 Spreadsheet.java 1021 5 13 0 +RefactoringAction 1476278983037 SpreadsheetTest.java ADD void testSetCell()/2 METHOD +RefactoringAction 1476278990049 SpreadsheetTest.java RENAME testSetCell()/2=>void testCell() METHOD +RefactoringAction 1476278994563 SpreadsheetTest.java RENAME testCell()=>void testEvaluationCell() METHOD +RefactoringAction 1476278999575 SpreadsheetTest.java RENAME testEvaluationCell()=>void testEvaluatCell() METHOD +RefactoringAction 1476279003088 SpreadsheetTest.java RENAME testEvaluatCell()=>void testEvaluateCell() METHOD +EditAction 1476279006866 SpreadsheetTest.java 600 3 11 3 diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 61ec890..bee1a4a 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -23,4 +23,12 @@ public void testSetCell() { } + @Test + public void testEvaluateCell() { + Spreadsheet sh = new Spreadsheet(5,5); + sh.set("A7", "6"); + System.out.print(sh.get("A7")); + assertEquals(sh.get("A7"),null); + + } } From 4861f39b9bd148d647029913676c2f6c0f34d993 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:32:18 +0300 Subject: [PATCH 33/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 4 ++++ bin/SpreadsheetTest.class | Bin 1023 -> 1177 bytes tests/SpreadsheetTest.java | 8 ++++---- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 1ca1e94..f7aadea 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -123,3 +123,7 @@ RefactoringAction 1476278994563 SpreadsheetTest.java RENAME testCell()=>void tes RefactoringAction 1476278999575 SpreadsheetTest.java RENAME testEvaluationCell()=>void testEvaluatCell() METHOD RefactoringAction 1476279003088 SpreadsheetTest.java RENAME testEvaluatCell()=>void testEvaluateCell() METHOD EditAction 1476279006866 SpreadsheetTest.java 600 3 11 3 +RefactoringAction 1476279096105 SpreadsheetTest.java RENAME testEvaluateCell()=>void testEvaluateNCell() METHOD +RefactoringAction 1476279099618 SpreadsheetTest.java RENAME testEvaluateNCell()=>void testEvaluateNunmberCell() METHOD +RefactoringAction 1476279104631 SpreadsheetTest.java RENAME testEvaluateNunmberCell()=>void testEvaluateNunmberHandlingCell() METHOD +EditAction 1476279137262 SpreadsheetTest.java 616 3 11 3 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index ce253f9c30e5f3fc41545a8ca3ca4db70ad189d7..4c443713474d95fb628c0c24787008b428cfe362 100644 GIT binary patch delta 82 zcmey*K9iH{)W2Q(7#J8#80I;ZC3Om1b;XJpyDmC2QH kaxrtLpbP^SgDis(gB%dbGiWd Date: Wed, 12 Oct 2016 16:32:47 +0300 Subject: [PATCH 34/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 1177 -> 1209 bytes tests/SpreadsheetTest.java | 4 ++-- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index f7aadea..3307e3e 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -127,3 +127,6 @@ RefactoringAction 1476279096105 SpreadsheetTest.java RENAME testEvaluateCell()=> RefactoringAction 1476279099618 SpreadsheetTest.java RENAME testEvaluateNCell()=>void testEvaluateNunmberCell() METHOD RefactoringAction 1476279104631 SpreadsheetTest.java RENAME testEvaluateNunmberCell()=>void testEvaluateNunmberHandlingCell() METHOD EditAction 1476279137262 SpreadsheetTest.java 616 3 11 3 +UnitTestCaseAction 1476279139554 SpreadsheetTest.java OK +UnitTestSessionAction 1476279139555 SpreadsheetTest.java OK +EditAction 1476279166136 SpreadsheetTest.java 620 3 9 3 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 4c443713474d95fb628c0c24787008b428cfe362..9ed2c97784751362919603cd55c1bc34b884f133 100644 GIT binary patch delta 167 zcmbQqxs#LY)W2Q(7#J8#7@Rh8)iN2#m!uY#xRxd6lqQy>`jzJ8CZ!g6B<7{$Wagzi zr{?5vFxWCOFgY4>FxUfWUBk^Ym^vBt^B7ndn1H5e?Pd^+I;ZC3Y~Ie)$vAl@v!kF4 e0~doVgAjup5Xv)XFepyuW|3#N0cvJqumu2&krKuL diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 69ba8d0..123bb19 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -9,7 +9,7 @@ public class SpreadsheetTest { @Test public void testGetCell() { Spreadsheet sh = new Spreadsheet(5,5); - System.out.print(sh.get("D5")); + //System.out.print(sh.get("D5")); assertEquals(sh.get("D5"),"7"); } @@ -18,7 +18,7 @@ public void testGetCell() { public void testSetCell() { Spreadsheet sh = new Spreadsheet(5,5); sh.set("A7", "6"); - System.out.print(sh.get("A7")); + //System.out.print(sh.get("A7")); assertEquals(sh.get("A7"),null); } From 07bab001d1877b1478efa2f5ffdf56d9220191ef Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:40:55 +0300 Subject: [PATCH 35/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 1209 -> 1177 bytes src/Spreadsheet.java | 7 +++++++ 3 files changed, 10 insertions(+) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 3307e3e..d52be5a 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -130,3 +130,6 @@ EditAction 1476279137262 SpreadsheetTest.java 616 3 11 3 UnitTestCaseAction 1476279139554 SpreadsheetTest.java OK UnitTestSessionAction 1476279139555 SpreadsheetTest.java OK EditAction 1476279166136 SpreadsheetTest.java 620 3 9 3 +UnitTestCaseAction 1476279169037 SpreadsheetTest.java OK +UnitTestSessionAction 1476279169038 SpreadsheetTest.java OK +EditAction 1476279654583 Spreadsheet.java 1180 5 16 0 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 9ed2c97784751362919603cd55c1bc34b884f133..ab12acb77770b0aad217281126b92ac73e02b0f9 100644 GIT binary patch delta 422 zcmY+8J5K^p5QWcO2)nGSz(pP^i}*xYaRKGwTM`o+6BDC_g?7ehp~-@+cGj9(@iVjl zjeo{}VX23psKuR`J7?y6^BQagA3mgkgn+hFHW9&yg;9*DUEyX8*aD(zVjL4XG6Lai z@7%q-xw>e&^+w~&Yg(AZlzJDZi8&h7s|Ir1sC0c6Eab7MjyT3bt9~yx88zRSs(Lr?2k?}T?GWCM= z6BP|6;}Cp|1FQ!TLx>f3dYiD=0~HI?m;vv@ECSR*><0J?GwXaO-z@u=weQHRoNvQn zCRF@mO3njOIuApVmO}Cm*Y0zpeXgqw{JGbet Gq5cJ}JvM3p delta 488 zcmZ9HJ5K^Z6ot>OEBkN}7!(lX=>rgPMdYC(N@8iH#>7U02_X`}1kl99gwEPz3ggev z0yO>&|BJ16F$>XR=AJt<_ndED)DQLPJEFpiIT=0y&PMgFYFt-ab>sNH)2%gi_z~cz zVu&dS3J?!+8e9nLh#<;U!B8|TU`fUze-M2W%ZT%5F%nmh6d)8dq>z@eO1?Mky3x38 zU3HC0r&DWpb*#bQ7s9!BlUyqW1$mmto90CwTiE7b!pZcmd6!YJM>U<{1M#tU2?-*A z*e6_PiZX!v@C}|6o9`pkN96HkLc1AP66lonE*b#+;I*=YZ(W#v}4L+3I%6v>aIqQm;fK4pri`~Z^+LSFy? diff --git a/src/Spreadsheet.java b/src/Spreadsheet.java index 2fcd50d..8ca6adf 100644 --- a/src/Spreadsheet.java +++ b/src/Spreadsheet.java @@ -55,6 +55,13 @@ Index getCellIndex(String cell){ } public String evaluate(String cell) { + String errorMessg = "#Error"; + int op1; + try { + op1 = Integer.parseInt(get(cell)); + } catch (NumberFormatException e) { + return errorMessg; + } return get(cell); From 11047515ecff2900397b791842bb3168cdd0f06a Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:43:17 +0300 Subject: [PATCH 36/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 1 + bin/Spreadsheet.class | Bin 1912 -> 2179 bytes src/Spreadsheet.java | 5 +++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index d52be5a..2a39cb9 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -133,3 +133,4 @@ EditAction 1476279166136 SpreadsheetTest.java 620 3 9 3 UnitTestCaseAction 1476279169037 SpreadsheetTest.java OK UnitTestSessionAction 1476279169038 SpreadsheetTest.java OK EditAction 1476279654583 Spreadsheet.java 1180 5 16 0 +EditAction 1476279796656 Spreadsheet.java 1200 5 17 0 diff --git a/bin/Spreadsheet.class b/bin/Spreadsheet.class index 1aa31b3057d4b24325447a06880cc20081b681be..00326415daecc92dc00f9d0e0c72ec8143861d4f 100644 GIT binary patch delta 358 zcmaivy-EW?6otRpiEdbe5~BetQ9C0BK`=&)KM)~c)ZRiTaahp|FYFlPJg4HB|6ggN5SG)c;x5pCg*rloO4 ci-bhQCg(@yX&2=(BPT}x3oT!xEdqz&7e0qZvj6}9 delta 105 zcmZn`{K3a{>ff$?3=9k=49Oe0jxcj^F)%VD@Gv+qIBqUviDq`SVqgM71_m}Q?QIP4 s8-Oe(26GS}sE&cbn!y4{ia}H`STa}vc_6s}27jPDBSRvP$Hb5X06Z`b*#H0l diff --git a/src/Spreadsheet.java b/src/Spreadsheet.java index 8ca6adf..2b2baec 100644 --- a/src/Spreadsheet.java +++ b/src/Spreadsheet.java @@ -57,13 +57,14 @@ Index getCellIndex(String cell){ public String evaluate(String cell) { String errorMessg = "#Error"; int op1; + String value = get(cell); try { - op1 = Integer.parseInt(get(cell)); + op1 = Integer.parseInt(value); } catch (NumberFormatException e) { return errorMessg; } - return get(cell); + return value; } From 46c5f4627e80ab20ae1e31c441db8a14a3b98d88 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:44:51 +0300 Subject: [PATCH 37/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 6 ++++++ bin/Spreadsheet.class | Bin 2179 -> 2214 bytes tests/SpreadsheetTest.java | 9 +++++++++ 3 files changed, 15 insertions(+) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 2a39cb9..c4feb7e 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -134,3 +134,9 @@ UnitTestCaseAction 1476279169037 SpreadsheetTest.java OK UnitTestSessionAction 1476279169038 SpreadsheetTest.java OK EditAction 1476279654583 Spreadsheet.java 1180 5 16 0 EditAction 1476279796656 Spreadsheet.java 1200 5 17 0 +RefactoringAction 1476279813330 SpreadsheetTest.java ADD void testEvaluateNunmberHandlingCell()/2 METHOD +RefactoringAction 1476279848866 SpreadsheetTest.java RENAME testEvaluateNunmberHandlingCell()/2=>void testWrongly FIELD +RefactoringAction 1476279853881 SpreadsheetTest.java RENAME integersCell()=>void formattedntegersCell() METHOD +RefactoringAction 1476279854897 SpreadsheetTest.java RENAME formattedntegersCell()=>void formattedIntegersCell() METHOD +RefactoringAction 1476279859920 SpreadsheetTest.java RENAME testWronglyormattedIntegersCell()=>void testWronglyFormattedIntegersCell() METHOD +EditAction 1476279891032 SpreadsheetTest.java 821 4 13 4 diff --git a/bin/Spreadsheet.class b/bin/Spreadsheet.class index 00326415daecc92dc00f9d0e0c72ec8143861d4f..cb8037bbdc5877d45c5d8f3fa37a0d0a4b90ce43 100644 GIT binary patch delta 227 zcmYL?y9&ZU6hu!p8&|A+AflzEk6H~91sfY5y@iN{`1}P6|3%wW;ztO6Qk(=qSaxUc zoSAzo-AnP?T|XFdK%=~#wc1ZMp{?5&+vtG{gHBwxF&+hqRM_FuOW7Nk`V$s18+ zOpOVB`BPj*4G8t7{E~%Qd=YyoqlC|aJpM|fpUjrbWm}aQj+_Wo3|&m3?SaE{G<8(p SO!Y2N_CHQt;T~t*hRYWu{ul!Q delta 192 zcmXAiy$ZrW5QM+nMbAQzGZ3(~RC{B<2==0HAYu{xeFY2OMH`D$;zRgIg3d))c4l{H zW^exLtGBy6Ff@Q(cfA-4pKM-ii#sllM^!ynL|EE%D1~E5)7p@0nrdI*nUOFj)2*Nx z!kCZ?16#4I6H<0!Mh?rKmU<#>_NQKl14m*-1(W&epLIlzzA9k(!A43tNnkkt0Dr9( AqW}N^ diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index 123bb19..fa05888 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -31,4 +31,13 @@ public void testEvaluateNunmberHandlingCell() { assertEquals(sh.get("A1"),"-1"); } + + @Test + public void testWronglyFormattedIntegersCell() { + Spreadsheet sh = new Spreadsheet(5,5); + sh.set("A1", "1A"); + System.out.print(sh.get("A1")); + assertEquals(sh.get("A1"),"#Error"); + + } } From a6d0c0f45c8aee70befdde4be052fe5b90c6acb9 Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:46:12 +0300 Subject: [PATCH 38/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 1177 -> 1368 bytes tests/SpreadsheetTest.java | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index c4feb7e..f61f94e 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -140,3 +140,6 @@ RefactoringAction 1476279853881 SpreadsheetTest.java RENAME integersCell()=>void RefactoringAction 1476279854897 SpreadsheetTest.java RENAME formattedntegersCell()=>void formattedIntegersCell() METHOD RefactoringAction 1476279859920 SpreadsheetTest.java RENAME testWronglyormattedIntegersCell()=>void testWronglyFormattedIntegersCell() METHOD EditAction 1476279891032 SpreadsheetTest.java 821 4 13 4 +UnitTestCaseAction 1476279897205 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476279897206 SpreadsheetTest.java FAIL +EditAction 1476279972051 SpreadsheetTest.java 823 4 12 4 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index ab12acb77770b0aad217281126b92ac73e02b0f9..561d42b9d5b3018b9ecfcf551ce27b24f1ed0d7b 100644 GIT binary patch delta 187 zcmbQqd4r4V)W2Q(7#J8#7~D5 Date: Wed, 12 Oct 2016 16:46:50 +0300 Subject: [PATCH 39/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 1368 -> 1352 bytes tests/SpreadsheetTest.java | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index f61f94e..167b16b 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -143,3 +143,6 @@ EditAction 1476279891032 SpreadsheetTest.java 821 4 13 4 UnitTestCaseAction 1476279897205 SpreadsheetTest.java FAIL UnitTestSessionAction 1476279897206 SpreadsheetTest.java FAIL EditAction 1476279972051 SpreadsheetTest.java 823 4 12 4 +UnitTestCaseAction 1476279975659 SpreadsheetTest.java FAIL +UnitTestSessionAction 1476279975660 SpreadsheetTest.java FAIL +EditAction 1476280009442 SpreadsheetTest.java 828 4 12 4 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index 561d42b9d5b3018b9ecfcf551ce27b24f1ed0d7b..c047882d66b235ba4cd117bb23bf3c74504dc6ad 100644 GIT binary patch delta 207 zcmcb?b%JYy8PnwLOsZ;Tj0{YMj+_h@3|8z6mW&JnS&3zd`ZH5Ky#U-h^JPg(h zHj~4c6xi$-9M~D`C)Y4ZFgr3hO`guAu=x>FDPwXR0}BHa0|SHHZU(_f4vy^%!amwU z20}*L7_@=(HU5Kuh>gA9-@3uMa!Nks;3pokd66b2p!ULcQ) nL4-ktL6w0K2u&u(GmB2X&mt~h3N&;RgE_?9Z49=P*;s=Bx%4E7 delta 236 zcmX@Xb%Sez8IuAhgDHbKJA)Y`gFsedS)zVUVqUs_aAk2xYAz3h1%u_}MkWPaYX)0( z1{+2OVX%_SeEoo;%)FA|lA_c^pej2CdqxJ<0+0|RgQ&*j4~$}yEtr(qoERCH3>`N= zVk%{ve4a%-#%LRZ_9g}sZ6Skg3=-QItRM^_qa6%#8yOfFm>9T#q!co=wrG#7&cg9?Kx10xVROpa$31z95Ch-S&;Z!AFovx_g? diff --git a/tests/SpreadsheetTest.java b/tests/SpreadsheetTest.java index f268e00..423ee34 100644 --- a/tests/SpreadsheetTest.java +++ b/tests/SpreadsheetTest.java @@ -37,7 +37,7 @@ public void testWronglyFormattedIntegersCell() { Spreadsheet sh = new Spreadsheet(5,5); sh.set("A1", "1A"); System.out.print(sh.get("A1")); - assertEquals(sh.get("A1"),"#Error"); + assertEquals(sh.evaluate("A1"),"#Error"); } } From 410c6dd443773c269776872689876e725cda654e Mon Sep 17 00:00:00 2001 From: somename Date: Wed, 12 Oct 2016 16:47:13 +0300 Subject: [PATCH 40/41] besouro automatic message --- .besouro/20161012143355930/actions.txt | 3 +++ bin/SpreadsheetTest.class | Bin 1352 -> 1373 bytes tests/SpreadsheetTest.java | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20161012143355930/actions.txt b/.besouro/20161012143355930/actions.txt index 167b16b..1d14a08 100644 --- a/.besouro/20161012143355930/actions.txt +++ b/.besouro/20161012143355930/actions.txt @@ -146,3 +146,6 @@ EditAction 1476279972051 SpreadsheetTest.java 823 4 12 4 UnitTestCaseAction 1476279975659 SpreadsheetTest.java FAIL UnitTestSessionAction 1476279975660 SpreadsheetTest.java FAIL EditAction 1476280009442 SpreadsheetTest.java 828 4 12 4 +UnitTestCaseAction 1476280011860 SpreadsheetTest.java OK +UnitTestSessionAction 1476280011862 SpreadsheetTest.java OK +EditAction 1476280032154 SpreadsheetTest.java 833 4 12 4 diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index c047882d66b235ba4cd117bb23bf3c74504dc6ad..f1043e31fd98b4230667ac3b10ed7d16af293e38 100644 GIT binary patch delta 65 zcmX@Xb(f3l)W2Q(7#J8#7`!%e-C&a7Vi06-;bCxPkY;4yNG(guDNQU%4mZSp@BXLb*u4kiXq0Akh Date: Wed, 12 Oct 2016 16:48:08 +0300 Subject: [PATCH 41/41] Latest changes --- bin/SpreadsheetTest.class | Bin 1373 -> 1373 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/bin/SpreadsheetTest.class b/bin/SpreadsheetTest.class index f1043e31fd98b4230667ac3b10ed7d16af293e38..662c7911e45af6f3113aa55c6dc653e5de6da068 100644 GIT binary patch delta 174 zcmcc1b(d>{8Ivd%gCK(`4}%$lG$R8?YFT1VX<|w0WHTmJHA_YYCPPO~25Saeb_N?p z27#=^vPAuy#JqI<;L75X)Lb40I|lp7jZ6xH`2nlq?{8PjBMCRH^vMg}HBM@|L{1}k<3OGXBPti-ZJ{hY+Sbp7DU;*!){9tLX$ zo5|Cd6xi$-9M~D`C+}gBV0L71ntYu}L6nO@kimtA!IeRpk%1$%EHS4vu_Sf#cc!U~ tj1rT3SsWQnCO=>no&1DFT+DPEgZ3r{b8R7mZ446I7;M1|=gESsJ^-+IBZB|{