From c58677e66ee9753df725c0eaf801739da30b0273 Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Thu, 9 Sep 2021 21:20:11 +0200 Subject: [PATCH] Remove irrelevant test --- .../batch/item/ItemReaderTests.java | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 spring-batch-infrastructure/src/test/java/org/springframework/batch/item/ItemReaderTests.java diff --git a/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/ItemReaderTests.java b/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/ItemReaderTests.java deleted file mode 100644 index 670ea0b93..000000000 --- a/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/ItemReaderTests.java +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright 2006-2019 the original author or authors. - * - * 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 - * - * https://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. - */ - -package org.springframework.batch.item; - -import static org.junit.Assert.assertEquals; - -import org.junit.Test; -import org.springframework.lang.Nullable; - - -public class ItemReaderTests { - - ItemReader provider = new ItemReader() { - @Nullable - @Override - public String read() { - return "foo"; - } - }; - - @Test - public void testNext() throws Exception { - assertEquals("foo", provider.read()); - } - -}