diff --git a/src/test/java/com/ethlo/time/fuzzer/ParseDateTimeFuzzTest.java b/src/test/java/com/ethlo/time/fuzzer/ParseDateTimeFuzzTest.java index 8fc6783..312c4cb 100644 --- a/src/test/java/com/ethlo/time/fuzzer/ParseDateTimeFuzzTest.java +++ b/src/test/java/com/ethlo/time/fuzzer/ParseDateTimeFuzzTest.java @@ -1,5 +1,25 @@ package com.ethlo.time.fuzzer; +/*- + * #%L + * Internet Time Utility + * %% + * Copyright (C) 2017 - 2024 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.DateTimeException; import com.code_intelligence.jazzer.api.FuzzedDataProvider; @@ -19,4 +39,4 @@ void parse(FuzzedDataProvider data) } } -} \ No newline at end of file +} diff --git a/src/test/java/com/ethlo/time/fuzzer/ParseLenientFuzzTest.java b/src/test/java/com/ethlo/time/fuzzer/ParseLenientFuzzTest.java index 8009040..18fcb90 100644 --- a/src/test/java/com/ethlo/time/fuzzer/ParseLenientFuzzTest.java +++ b/src/test/java/com/ethlo/time/fuzzer/ParseLenientFuzzTest.java @@ -1,5 +1,25 @@ package com.ethlo.time.fuzzer; +/*- + * #%L + * Internet Time Utility + * %% + * Copyright (C) 2017 - 2024 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.DateTimeException; import com.code_intelligence.jazzer.api.FuzzedDataProvider; @@ -28,4 +48,4 @@ void parse(FuzzedDataProvider data) d.toString(); } } -} \ No newline at end of file +}