This is an automated email from the ASF dual-hosted git repository.
matthiasblaesing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git
The following commit(s) were added to refs/heads/master by this push:
new 7f5ee38 [NETBEANS-5783] Testcase checking Gradle ProjectInfo never
return null
new 72bd08f Merge pull request #3319 from lkishalmi/NETBEANS-5783-2
7f5ee38 is described below
commit 7f5ee387711ddb9262fb05802dff41467a55db04
Author: Laszlo Kishalmi <[email protected]>
AuthorDate: Sat Nov 13 07:34:41 2021 -0800
[NETBEANS-5783] Testcase checking Gradle ProjectInfo never return null
---
.../netbeans/modules/gradle/queries/InfoTest.java | 62 ++++++++++++++++++++++
1 file changed, 62 insertions(+)
diff --git
a/extide/gradle/test/unit/src/org/netbeans/modules/gradle/queries/InfoTest.java
b/extide/gradle/test/unit/src/org/netbeans/modules/gradle/queries/InfoTest.java
new file mode 100644
index 0000000..b3d524e
--- /dev/null
+++
b/extide/gradle/test/unit/src/org/netbeans/modules/gradle/queries/InfoTest.java
@@ -0,0 +1,62 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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 org.netbeans.modules.gradle.queries;
+
+import org.junit.Test;
+import org.netbeans.api.project.ProjectManager;
+import org.netbeans.api.project.ProjectUtils;
+import org.netbeans.modules.gradle.AbstractGradleProjectTestCase;
+import org.netbeans.modules.gradle.NbGradleProjectImpl;
+import org.openide.filesystems.FileObject;
+
+/**
+ *
+ * @author lkishalmi
+ */
+public class InfoTest extends AbstractGradleProjectTestCase {
+
+ public InfoTest(String name) {
+ super(name);
+ }
+
+ /**
+ * Test of getName method, of class Info.
+ */
+ @Test
+ public void testGetName() throws Exception {
+ FileObject f = createGradleProject(null, "", "rootProjectName =
'test'");
+ NbGradleProjectImpl p = (NbGradleProjectImpl)
ProjectManager.getDefault().findProject(f);
+ dumpProject(p);
+ assertFalse(p.isGradleProjectLoaded());
+ assertNotNull(ProjectUtils.getInformation(p).getName());
+ }
+
+ /**
+ * Test of getDisplayName method, of class Info.
+ */
+ @Test
+ public void testGetDisplayName() throws Exception {
+ FileObject f = createGradleProject(null, "", "rootProjectName =
'test'");
+ NbGradleProjectImpl p = (NbGradleProjectImpl)
ProjectManager.getDefault().findProject(f);
+ dumpProject(p);
+ assertFalse(p.isGradleProjectLoaded());
+ assertNotNull(ProjectUtils.getInformation(p).getDisplayName());
+ }
+
+}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists