-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract the one test that requires add_opens to a separate file, run …
…it with add_opens in the one classloading strategy that requires it. Also run it with other strategies/defaults w/o add_opens (in scenarios where it doesn't require it). PiperOrigin-RevId: 475929909
- Loading branch information
Showing
4 changed files
with
79 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
core/test/com/google/inject/ImplicitBindingJdkPackagePrivateTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright (C) 2022 Google Inc. | ||
* | ||
* 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. | ||
*/ | ||
|
||
package com.google.inject; | ||
|
||
import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION; | ||
|
||
import java.net.InetAddress; | ||
import junit.framework.TestCase; | ||
|
||
/** | ||
* This test is split out from ImplicitBindingTest so that we can run it with --add_opens to | ||
* InetAddress, so validate that it will work when opened. | ||
*/ | ||
public class ImplicitBindingJdkPackagePrivateTest extends TestCase { | ||
|
||
public void testImplicitJdkBindings_packagePrivateCxtor() { | ||
Injector injector = Guice.createInjector(); | ||
// Validate that, when the JDK allows it, we can construct package private JDK things. | ||
if (Double.parseDouble(JAVA_SPECIFICATION_VERSION.value()) < 17) { | ||
assertNotNull(injector.getInstance(InetAddress.class)); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters