|
| 1 | +/* |
| 2 | + * Copyright 2016-2025 DiffPlug |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package com.diffplug.gradle.spotless; |
| 17 | + |
| 18 | +import java.io.IOException; |
| 19 | + |
| 20 | +import org.junit.jupiter.api.Test; |
| 21 | + |
| 22 | +class RemoveWildcardImportsTest extends GradleIntegrationHarness { |
| 23 | + @Test |
| 24 | + void integration() throws IOException { |
| 25 | + setFile("build.gradle").toLines( |
| 26 | + "plugins {", |
| 27 | + " id 'com.diffplug.spotless'", |
| 28 | + "}", |
| 29 | + "repositories { mavenCentral() }", |
| 30 | + "", |
| 31 | + "spotless {", |
| 32 | + " java {", |
| 33 | + " target file('test.java')", |
| 34 | + " removeWildcardImports()", |
| 35 | + " }", |
| 36 | + "}"); |
| 37 | + |
| 38 | + setFile("test.java").toResource("java/removewildcardimports/JavaCodeWildcardsUnformatted.test"); |
| 39 | + gradleRunner().withArguments("spotlessApply").build(); |
| 40 | + assertFile("test.java").sameAsResource("java/removewildcardimports/JavaCodeWildcardsFormatted.test"); |
| 41 | + } |
| 42 | +} |
0 commit comments