Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/util/Collections/SetFromMap.java
41149 views
1
/*
2
* Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/*
25
* @test
26
* @bug 6301089
27
* @summary test Collections.newSetFromMap
28
* @author Martin Buchholz
29
*/
30
31
import java.util.Collections;
32
import java.util.IdentityHashMap;
33
import java.util.Map;
34
import java.util.Set;
35
36
public class SetFromMap {
37
static volatile int passed = 0, failed = 0;
38
static void pass() { passed++; }
39
static void fail() { failed++; Thread.dumpStack(); }
40
static void unexpected(Throwable t) { failed++; t.printStackTrace(); }
41
static void check(boolean cond) { if (cond) pass(); else fail(); }
42
static void equal(Object x, Object y) {
43
if (x == null ? y == null : x.equals(y)) pass();
44
else {System.out.println(x + " not equal to " + y); fail(); }}
45
46
public static void main(String[] args) throws Throwable {
47
try { realMain(); } catch (Throwable t) { unexpected(t); }
48
49
System.out.printf("%nPassed = %d, failed = %d%n%n", passed, failed);
50
if (failed > 0) throw new Exception("Some tests failed");
51
}
52
53
private static void realMain() throws Throwable {
54
try {
55
Map<String,Boolean> m = new IdentityHashMap<>();
56
Set<String> s = Collections.newSetFromMap(m);
57
String foo1 = new String("foo");
58
String foo2 = new String("foo");
59
String bar = new String("bar");
60
check(s.add(foo1));
61
check(s.add(foo2));
62
check(s.add(bar));
63
equal(s.size(), 3);
64
check(s.contains(foo1));
65
check(s.contains(foo2));
66
check(! s.contains(new String(foo1)));
67
} catch (Throwable t) { unexpected(t); }
68
}
69
}
70
71