From 48f14c0c165c30035d78d0518006314000525e3e Mon Sep 17 00:00:00 2001 From: Morten Haraldsen Date: Mon, 28 Feb 2022 10:10:02 +0100 Subject: [PATCH] Ignore JDK test --- .../ethlo/time/DefaultLeapSecondHandler.java | 20 +++++++++++++++++++ .../com/ethlo/time/LeapSecondHandler.java | 20 +++++++++++++++++++ .../time/Java8Rfc3339CorrectnessTest.java | 8 ++++++++ 3 files changed, 48 insertions(+) diff --git a/src/main/java/com/ethlo/time/DefaultLeapSecondHandler.java b/src/main/java/com/ethlo/time/DefaultLeapSecondHandler.java index f1999c8..eaad4aa 100644 --- a/src/main/java/com/ethlo/time/DefaultLeapSecondHandler.java +++ b/src/main/java/com/ethlo/time/DefaultLeapSecondHandler.java @@ -1,5 +1,25 @@ package com.ethlo.time; +/*- + * #%L + * Internet Time Utility + * %% + * Copyright (C) 2017 - 2022 Morten Haraldsen (ethlo) + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; diff --git a/src/main/java/com/ethlo/time/LeapSecondHandler.java b/src/main/java/com/ethlo/time/LeapSecondHandler.java index 4f52f6b..1021d1c 100644 --- a/src/main/java/com/ethlo/time/LeapSecondHandler.java +++ b/src/main/java/com/ethlo/time/LeapSecondHandler.java @@ -1,5 +1,25 @@ package com.ethlo.time; +/*- + * #%L + * Internet Time Utility + * %% + * Copyright (C) 2017 - 2022 Morten Haraldsen (ethlo) + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + import java.time.YearMonth; public interface LeapSecondHandler diff --git a/src/test/java/com/ethlo/time/Java8Rfc3339CorrectnessTest.java b/src/test/java/com/ethlo/time/Java8Rfc3339CorrectnessTest.java index 5625f23..a631e60 100644 --- a/src/test/java/com/ethlo/time/Java8Rfc3339CorrectnessTest.java +++ b/src/test/java/com/ethlo/time/Java8Rfc3339CorrectnessTest.java @@ -86,4 +86,12 @@ public void testParseLeapSecondPSTJune() { // For ignore marker only } + + @Override + @Test + @Disabled + public void testParseLeapSecondPotentiallyCorrect() + { + + } }