Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/AtsDbInitTest.java')
-rw-r--r--plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/AtsDbInitTest.java68
1 files changed, 34 insertions, 34 deletions
diff --git a/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/AtsDbInitTest.java b/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/AtsDbInitTest.java
index 80efe66feff..e3ff9f81631 100644
--- a/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/AtsDbInitTest.java
+++ b/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/AtsDbInitTest.java
@@ -1,34 +1,34 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 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.ats.test;
-
-import static org.junit.Assert.assertFalse;
-import org.eclipse.osee.ats.util.AtsUtil;
-import org.eclipse.osee.framework.database.init.DatabaseInitializationOperation;
-import org.junit.Before;
-
-/**
- * @author Donald G. Dunne
- */
-public class AtsDbInitTest {
-
- @Before
- protected void setUp() throws Exception {
- // This test should only be run on test db
- assertFalse(AtsUtil.isProductionDb());
- }
-
- @org.junit.Test
- public void testDemoDbInit() throws Exception {
- DatabaseInitializationOperation.executeWithoutPrompting("ATS - Developer");
- }
-
-}
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 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.ats.test;
+
+import static org.junit.Assert.assertFalse;
+import org.eclipse.osee.ats.util.AtsUtil;
+import org.eclipse.osee.framework.database.init.DatabaseInitializationOperation;
+import org.junit.Before;
+
+/**
+ * @author Donald G. Dunne
+ */
+public class AtsDbInitTest {
+
+ @Before
+ protected void setUp() throws Exception {
+ // This test should only be run on test db
+ assertFalse(AtsUtil.isProductionDb());
+ }
+
+ @org.junit.Test
+ public void testDemoDbInit() throws Exception {
+ DatabaseInitializationOperation.executeWithoutPrompting("ATS - Developer");
+ }
+
+}

Back to the top