From: Bojnourdi Date: Tue, 11 Aug 2015 09:36:50 +0000 (+0200) Subject: - Working on tests for Study X-Git-Tag: gde-v0.1~18^2~63 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=4ec5c851a5ccf8a302b4f077e4e66da73bbbb93f;p=modules%2Fgde.git - Working on tests for Study --- diff --git a/projects/GDE_App/GDE-war/test/com/edf/gde/test/dao/StudyDaoTest.java b/projects/GDE_App/GDE-war/test/com/edf/gde/test/dao/StudyDaoTest.java new file mode 100644 index 0000000..1c0c8eb --- /dev/null +++ b/projects/GDE_App/GDE-war/test/com/edf/gde/test/dao/StudyDaoTest.java @@ -0,0 +1,36 @@ +/* + * (C) 2015 EDF + */ +package com.edf.gde.test.dao; + +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; + +/** + * + * @author Kavoos + */ +public class StudyDaoTest { + + @BeforeClass + public static void setUpClass() { + } + + @AfterClass + public static void tearDownClass() { + } + + @Before + public void setUp() { + } + + @After + public void tearDown() { + } + + public void testCreateStudy() throws Exception { + + } +}