8000 AnyEqualityTest now passes on JDK17+ by dmatej · Pull Request #192 · eclipse-ee4j/orb · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

AnyEqualityTest now passes on JDK17+ #192

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/*
* Copyright (c) 2024 Contributors to the Eclipse Foundation
* Copyright (c) 2012, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
Expand Down Expand Up @@ -43,15 +44,18 @@ public class AnyEqualityTest {
@Before
public void setUp() throws Exception {
mementos.add(SystemPropertySupport.install("org.omg.CORBA.ORBClass", "com.sun.corba.ee.impl.orb.ORBImpl"));
ORB orb = ORB.init(new String[0], null);
mementos.add(SystemPropertySupport.install("org.glassfish.gmbal.no.multipleUpperBoundsException", "true"));
ORB orb = ORB.init((String[]) null, null);
any = orb.create_any();
any1 = orb.create_any();
any2 = orb.create_any();
}

@After
public void tearDown() throws Exception {
for (Memento memento : mementos) memento.revert();
for (Memento memento : mementos) {
memento.revert();
}
}

@Test
Expand Down
0