Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid W. Miller2013-11-20 16:29:19 +0000
committerRyan D. Brooks2013-11-20 16:29:19 +0000
commit766a016fc8f6a8f7c772d603dd86d469da9b64d9 (patch)
tree16c4aac6c23b7d51679e0c16900692b51837c9ab /plugins
parent087e8f6a5608bd83d2cd92f1775b8f00e8787eed (diff)
downloadorg.eclipse.osee-766a016fc8f6a8f7c772d603dd86d469da9b64d9.tar.gz
org.eclipse.osee-766a016fc8f6a8f7c772d603dd86d469da9b64d9.tar.xz
org.eclipse.osee-766a016fc8f6a8f7c772d603dd86d469da9b64d9.zip
feature[ats_SMCYL]: Initial testing framework for Define Reports
Change-Id: I39c62aad60c526e98cfcc725aa21904222a9300a Conflicts: plugins/org.eclipse.osee.x.server.parent/pom.xml
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.osee.define.report.test/.classpath7
-rw-r--r--plugins/org.eclipse.osee.define.report.test/.project28
-rw-r--r--plugins/org.eclipse.osee.define.report.test/META-INF/MANIFEST.MF11
-rw-r--r--plugins/org.eclipse.osee.define.report.test/build.properties4
-rw-r--r--plugins/org.eclipse.osee.define.report.test/pom.xml30
-rw-r--r--plugins/org.eclipse.osee.define.report.test/src/org/eclipse/osee/define/report/OseeDefineTestSuite.java24
-rw-r--r--plugins/org.eclipse.osee.define.report.test/src/org/eclipse/osee/define/report/internal/DefineReportInternalTestSuite.java23
-rw-r--r--plugins/org.eclipse.osee.define.report.test/src/org/eclipse/osee/define/report/internal/TraceMatchTest.java23
-rw-r--r--plugins/org.eclipse.osee.disposition.integration.test/.project28
-rw-r--r--plugins/org.eclipse.osee.x.server.parent/pom.xml2
10 files changed, 180 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.define.report.test/.classpath b/plugins/org.eclipse.osee.define.report.test/.classpath
new file mode 100644
index 00000000000..ad32c83a788
--- /dev/null
+++ b/plugins/org.eclipse.osee.define.report.test/.classpath
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/plugins/org.eclipse.osee.define.report.test/.project b/plugins/org.eclipse.osee.define.report.test/.project
new file mode 100644
index 00000000000..61ab233ec78
--- /dev/null
+++ b/plugins/org.eclipse.osee.define.report.test/.project
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.osee.define.report.test</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.ManifestBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.SchemaBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.PluginNature</nature>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
diff --git a/plugins/org.eclipse.osee.define.report.test/META-INF/MANIFEST.MF b/plugins/org.eclipse.osee.define.report.test/META-INF/MANIFEST.MF
new file mode 100644
index 00000000000..0dfa440b196
--- /dev/null
+++ b/plugins/org.eclipse.osee.define.report.test/META-INF/MANIFEST.MF
@@ -0,0 +1,11 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: OSEE Define Test
+Bundle-SymbolicName: org.eclipse.osee.define.report.test
+Bundle-Version: 0.17.0.qualifier
+Bundle-Vendor: Eclipse Open System Engineering Environment
+Fragment-Host: org.eclipse.osee.define.report
+Bundle-RequiredExecutionEnvironment: JavaSE-1.6
+Import-Package: org.junit,
+ org.junit.runner,
+ org.junit.runners
diff --git a/plugins/org.eclipse.osee.define.report.test/build.properties b/plugins/org.eclipse.osee.define.report.test/build.properties
new file mode 100644
index 00000000000..34d2e4d2dad
--- /dev/null
+++ b/plugins/org.eclipse.osee.define.report.test/build.properties
@@ -0,0 +1,4 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+ .
diff --git a/plugins/org.eclipse.osee.define.report.test/pom.xml b/plugins/org.eclipse.osee.define.report.test/pom.xml
new file mode 100644
index 00000000000..c563e02e905
--- /dev/null
+++ b/plugins/org.eclipse.osee.define.report.test/pom.xml
@@ -0,0 +1,30 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse.osee</groupId>
+ <artifactId>org.eclipse.osee.x.server.parent</artifactId>
+ <version>0.17.0-SNAPSHOT</version>
+ <relativePath>../../plugins/org.eclipse.osee.x.server.parent</relativePath>
+ </parent>
+
+ <artifactId>org.eclipse.osee.define.report.test</artifactId>
+ <packaging>eclipse-test-plugin</packaging>
+ <name>OSEE Define Report Test - (Incubation)</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <testSuite>org.eclipse.osee.define.report.test</testSuite>
+ <testClass>org.eclipse.osee.define.report.OseeDefineTestSuite</testClass>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/plugins/org.eclipse.osee.define.report.test/src/org/eclipse/osee/define/report/OseeDefineTestSuite.java b/plugins/org.eclipse.osee.define.report.test/src/org/eclipse/osee/define/report/OseeDefineTestSuite.java
new file mode 100644
index 00000000000..f3b6c5fd805
--- /dev/null
+++ b/plugins/org.eclipse.osee.define.report.test/src/org/eclipse/osee/define/report/OseeDefineTestSuite.java
@@ -0,0 +1,24 @@
+/*******************************************************************************
+ * Copyright (c) 2013 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.define.report;
+
+import org.eclipse.osee.define.report.internal.DefineReportInternalTestSuite;
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+/**
+ * @author David W. Miller
+ */
+@RunWith(Suite.class)
+@Suite.SuiteClasses({DefineReportInternalTestSuite.class})
+public class OseeDefineTestSuite {
+ // Test Suite
+}
diff --git a/plugins/org.eclipse.osee.define.report.test/src/org/eclipse/osee/define/report/internal/DefineReportInternalTestSuite.java b/plugins/org.eclipse.osee.define.report.test/src/org/eclipse/osee/define/report/internal/DefineReportInternalTestSuite.java
new file mode 100644
index 00000000000..dd8438cbf67
--- /dev/null
+++ b/plugins/org.eclipse.osee.define.report.test/src/org/eclipse/osee/define/report/internal/DefineReportInternalTestSuite.java
@@ -0,0 +1,23 @@
+/*******************************************************************************
+ * Copyright (c) 2013 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.define.report.internal;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+/**
+ * @author David W. Miller
+ */
+@RunWith(Suite.class)
+@Suite.SuiteClasses({TraceMatchTest.class})
+public class DefineReportInternalTestSuite {
+ // Test Suite
+}
diff --git a/plugins/org.eclipse.osee.define.report.test/src/org/eclipse/osee/define/report/internal/TraceMatchTest.java b/plugins/org.eclipse.osee.define.report.test/src/org/eclipse/osee/define/report/internal/TraceMatchTest.java
new file mode 100644
index 00000000000..77a1220c677
--- /dev/null
+++ b/plugins/org.eclipse.osee.define.report.test/src/org/eclipse/osee/define/report/internal/TraceMatchTest.java
@@ -0,0 +1,23 @@
+/*******************************************************************************
+ * Copyright (c) 2013 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.define.report.internal;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+public class TraceMatchTest {
+
+ @Test
+ public void test() {
+ Assert.assertTrue(true);
+ }
+
+}
diff --git a/plugins/org.eclipse.osee.disposition.integration.test/.project b/plugins/org.eclipse.osee.disposition.integration.test/.project
new file mode 100644
index 00000000000..4a5d016f4e9
--- /dev/null
+++ b/plugins/org.eclipse.osee.disposition.integration.test/.project
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.osee.disposition.integration.test</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.ManifestBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.SchemaBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.PluginNature</nature>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
diff --git a/plugins/org.eclipse.osee.x.server.parent/pom.xml b/plugins/org.eclipse.osee.x.server.parent/pom.xml
index 7e5a7037c26..bccc7b15588 100644
--- a/plugins/org.eclipse.osee.x.server.parent/pom.xml
+++ b/plugins/org.eclipse.osee.x.server.parent/pom.xml
@@ -18,6 +18,8 @@
<modules>
<module>../../plugins/org.eclipse.osee.define.report</module>
+ <module>../../plugins/org.eclipse.osee.define.report.test</module>
+
<module>../../plugins/org.eclipse.osee.framework.authentication.ldap.core</module>
<module>../../plugins/org.eclipse.osee.framework.core.server</module>
<module>../../plugins/org.eclipse.osee.framework.core.server.test</module>

Back to the top