01: /*
02: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
03: *
04: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
05: *
06: * The contents of this file are subject to the terms of either the GNU
07: * General Public License Version 2 only ("GPL") or the Common
08: * Development and Distribution License("CDDL") (collectively, the
09: * "License"). You may not use this file except in compliance with the
10: * License. You can obtain a copy of the License at
11: * http://www.netbeans.org/cddl-gplv2.html
12: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
13: * specific language governing permissions and limitations under the
14: * License. When distributing the software, include this License Header
15: * Notice in each file and include the License file at
16: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
17: * particular file as subject to the "Classpath" exception as provided
18: * by Sun in the GPL Version 2 section of the License file that
19: * accompanied this code. If applicable, add the following below the
20: * License Header, with the fields enclosed by brackets [] replaced by
21: * your own identifying information:
22: * "Portions Copyrighted [year] [name of copyright owner]"
23: *
24: * If you wish your version of this file to be governed by only the CDDL
25: * or only the GPL Version 2, indicate your decision by adding
26: * "[Contributor] elects to include this software in this distribution
27: * under the [CDDL or GPL Version 2] license." If you do not indicate a
28: * single choice of license, a recipient has the option to distribute
29: * your version of this file under either the CDDL, the GPL Version 2 or
30: * to extend the choice of license to its licensees as provided above.
31: * However, if you add GPL Version 2 code and therefore, elected the GPL
32: * Version 2 license, then the option applies only if the new code is
33: * made subject to such option by the copyright holder.
34: *
35: * Contributor(s):
36: *
37: * Portions Copyrighted 2007 Sun Microsystems, Inc.
38: */
39:
40: package org.netbeans.modules.project.ui;
41:
42: import java.io.IOException;
43: import java.util.Collections;
44: import java.util.Iterator;
45: import java.util.concurrent.CountDownLatch;
46: import java.util.logging.Level;
47: import org.netbeans.api.project.Project;
48: import org.netbeans.junit.Log;
49: import org.netbeans.junit.MockServices;
50: import org.netbeans.junit.NbTestCase;
51: import org.netbeans.modules.project.ui.actions.TestSupport;
52: import org.netbeans.modules.project.ui.actions.TestSupport.TestProject;
53: import org.netbeans.spi.project.ProjectFactory;
54: import org.netbeans.spi.project.ProjectState;
55: import org.netbeans.spi.project.ui.LogicalViewProvider;
56: import org.openide.filesystems.FileObject;
57: import org.openide.loaders.DataObject;
58: import org.openide.nodes.AbstractNode;
59: import org.openide.nodes.Children;
60: import org.openide.nodes.Node;
61: import org.openide.util.Lookup;
62: import org.openide.util.lookup.Lookups;
63: import org.openide.util.lookup.ProxyLookup;
64: import org.openidex.search.SearchInfo;
65:
66: /**
67: *
68: * @author Jaroslav Tulach <jtulach@netbeans.org>
69: */
70: public class ProjectsRootNodePreferredOpen4Test extends
71: ProjectsRootNodePreferredOpenTest {
72: private CharSequence log;
73:
74: public ProjectsRootNodePreferredOpen4Test(String testName) {
75: super (testName);
76: }
77:
78: @Override
79: Lookup createLookup(TestProject project, Object instance) {
80: return Lookups.fixed(instance, project);
81: }
82:
83: @Override
84: protected void setUp() throws Exception {
85: super .setUp();
86: log = Log.enable("", Level.WARNING);
87: }
88:
89: @Override
90: protected void tearDown() throws Exception {
91: super.tearDown();
92: }
93:
94: }
|