From 97ea151134466f1309af612b26dd52666be00585 Mon Sep 17 00:00:00 2001 From: Owen Stephens Date: Fri, 8 Jun 2018 08:22:57 +0100 Subject: [PATCH] Removed date tests --- .../operations/cell/MassOperationTests.java | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/main/tests/server/src/com/google/refine/tests/operations/cell/MassOperationTests.java b/main/tests/server/src/com/google/refine/tests/operations/cell/MassOperationTests.java index 81b9fcf3e..b592efcf9 100644 --- a/main/tests/server/src/com/google/refine/tests/operations/cell/MassOperationTests.java +++ b/main/tests/server/src/com/google/refine/tests/operations/cell/MassOperationTests.java @@ -78,19 +78,6 @@ public class MassOperationTests extends RefineTest { Assert.assertFalse(editList.get(0).fromError); } - @Test - public void testReconstructEditDate() throws Exception { - editsString = "[{\"from\":[\"2018-10-04T00:00:00Z\"],\"to\":\"newString\",\"type\":\"text\"}]"; - - editList = MassEditOperation.reconstructEdits(ParsingUtilities.evaluateJsonStringToArray(editsString)); - - Assert.assertEquals(editList.get(0).from.size(), 1); - Assert.assertEquals(editList.get(0).from.get(0), "2018-10-04T00:00Z"); - Assert.assertEquals(editList.get(0).to,"newString" ); - Assert.assertFalse(editList.get(0).fromBlank); - Assert.assertFalse(editList.get(0).fromError); - } - @Test public void testReconstructEditEmpty() throws Exception { editsString = "[{\"from\":[\"\"],\"to\":\"newString\",\"type\":\"text\"}]"; @@ -105,6 +92,7 @@ public class MassOperationTests extends RefineTest { } - //Not yet testing for editing a cell containing an OR error + //Not yet testing for mass edit from OR Error + //Not yet testing for mass edit from OR Date }