From b73b480d7d2733f92642efa2ba82088b486dd6c4 Mon Sep 17 00:00:00 2001 From: Tom Morris Date: Mon, 10 Aug 2020 06:39:30 -0400 Subject: [PATCH] Remove tests of third party code (#3050) Neither of these tests are testing OpenRefine code (and a negative NotEquals test is useless anyway) --- .../refine/util/ParsingUtilitiesTests.java | 25 ++----------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/main/tests/server/src/com/google/refine/util/ParsingUtilitiesTests.java b/main/tests/server/src/com/google/refine/util/ParsingUtilitiesTests.java index 6cb3c969f..125765972 100644 --- a/main/tests/server/src/com/google/refine/util/ParsingUtilitiesTests.java +++ b/main/tests/server/src/com/google/refine/util/ParsingUtilitiesTests.java @@ -1,6 +1,8 @@ /* Copyright 2010, Google Inc. +Copyright 2013,2020 OpenRefine contributors + All rights reserved. Redistribution and use in source and binary forms, with or without @@ -40,11 +42,8 @@ import java.util.zip.GZIPOutputStream; import java.time.OffsetDateTime; import java.time.format.DateTimeFormatter; -import java.util.HashMap; -import java.util.Map; import java.util.TimeZone; -import org.apache.commons.lang3.text.StrSubstitutor; import org.slf4j.LoggerFactory; import org.testng.Assert; import org.testng.annotations.BeforeTest; @@ -114,26 +113,6 @@ public class ParsingUtilitiesTests extends RefineTest { } } - @Test - public void parseProjectModifiedBeforeJDK8() { - String modified = "2014-01-15T21:46:25Z"; - Assert.assertNotEquals(ParsingUtilities.stringToLocalDate(modified).toString(), - modified); - } - - @Test - public void strSubstitutorTest() { - Map data = new HashMap(6); - - data.put("value", "1234"); - data.put("field_format", "String"); - - StrSubstitutor sub = new StrSubstitutor(data); - String message = "The value ${value} in row ${row_number} and column ${column_number} is not type ${field_type} and format ${field_format}"; - String result = sub.replace(message); - Assert.assertTrue(result.contains("1234")); - } - @Test public void testParseGZIPInutstream() throws IOException { // Test decompressing gzip