Tests in neues test/integration Verzeichnis verschoben
authorfelix <felix@a944a559-bf0e-0410-8ddc-85264b264b6c>
Sun, 17 Jun 2007 13:42:46 +0000 (13:42 +0000)
committerfelix <felix@a944a559-bf0e-0410-8ddc-85264b264b6c>
Sun, 17 Jun 2007 13:42:46 +0000 (13:42 +0000)
git-svn-id: https://www.internetallee.de/svn/bytewurf@51 a944a559-bf0e-0410-8ddc-85264b264b6c

14 files changed:
projekte/MDB/grails-tests/KommentarTests.groovy [deleted file]
projekte/MDB/grails-tests/ListenplatzTests.groovy [deleted file]
projekte/MDB/grails-tests/ParteiTests.groovy [deleted file]
projekte/MDB/grails-tests/ParteimitgliedschaftTests.groovy [deleted file]
projekte/MDB/grails-tests/PersonTests.groovy [deleted file]
projekte/MDB/grails-tests/WahlkreisTests.groovy [deleted file]
projekte/MDB/grails-tests/WahlkreislisteTests.groovy [deleted file]
projekte/MDB/test/integration/KommentarTests.groovy [new file with mode: 0644]
projekte/MDB/test/integration/ListenplatzTests.groovy [new file with mode: 0644]
projekte/MDB/test/integration/ParteiTests.groovy [new file with mode: 0644]
projekte/MDB/test/integration/ParteimitgliedschaftTests.groovy [new file with mode: 0644]
projekte/MDB/test/integration/PersonTests.groovy [new file with mode: 0644]
projekte/MDB/test/integration/WahlkreisTests.groovy [new file with mode: 0644]
projekte/MDB/test/integration/WahlkreislisteTests.groovy [new file with mode: 0644]

diff --git a/projekte/MDB/grails-tests/KommentarTests.groovy b/projekte/MDB/grails-tests/KommentarTests.groovy
deleted file mode 100644 (file)
index 7e11714..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-class KommentarTests extends GroovyTestCase {
-
-       void testSomething() {
-               
-       }
-}
diff --git a/projekte/MDB/grails-tests/ListenplatzTests.groovy b/projekte/MDB/grails-tests/ListenplatzTests.groovy
deleted file mode 100644 (file)
index dae1a5c..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-class ListenplatzTests extends GroovyTestCase {
-
-       void testSomething() {
-               
-       }
-}
diff --git a/projekte/MDB/grails-tests/ParteiTests.groovy b/projekte/MDB/grails-tests/ParteiTests.groovy
deleted file mode 100644 (file)
index 66619fe..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-class ParteiTests extends GroovyTestCase {
-
-       void testSomething() {
-               
-       }
-}
diff --git a/projekte/MDB/grails-tests/ParteimitgliedschaftTests.groovy b/projekte/MDB/grails-tests/ParteimitgliedschaftTests.groovy
deleted file mode 100644 (file)
index b165c1a..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-class ParteimitgliedschaftTests extends GroovyTestCase {
-
-       void testSomething() {
-               
-       }
-}
diff --git a/projekte/MDB/grails-tests/PersonTests.groovy b/projekte/MDB/grails-tests/PersonTests.groovy
deleted file mode 100644 (file)
index 255374b..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-class PersonTests extends GroovyTestCase {
-
-       void testSomething() {
-               Person.list()*.delete()
-               Person f = new Person(nachname: 'Schumacher', vorname: 'Felix', titel:'', geburtsort:'',geburtsdatum: new Date(), sterbeort: '',sterbedatum: new Date())
-               Person u = new Person(nachname: 'Herrmann', vorname: 'Urte', titel:'', geburtsort:'',geburtsdatum: new Date(), sterbeort: '',sterbedatum: new Date())
-               f.save()
-               u.save()
-               assert Person.list() 
-               assert Person.findAll()[0].nachname == 'Schumacher'
-       }
-}
diff --git a/projekte/MDB/grails-tests/WahlkreisTests.groovy b/projekte/MDB/grails-tests/WahlkreisTests.groovy
deleted file mode 100644 (file)
index 4fbfb48..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-class WahlkreisTests extends GroovyTestCase {
-
-       void testSomething() {
-               
-       }
-}
diff --git a/projekte/MDB/grails-tests/WahlkreislisteTests.groovy b/projekte/MDB/grails-tests/WahlkreislisteTests.groovy
deleted file mode 100644 (file)
index 4ed8177..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-class WahlkreislisteTests extends GroovyTestCase {
-
-       void testSomething() {
-               
-       }
-}
diff --git a/projekte/MDB/test/integration/KommentarTests.groovy b/projekte/MDB/test/integration/KommentarTests.groovy
new file mode 100644 (file)
index 0000000..7e11714
--- /dev/null
@@ -0,0 +1,6 @@
+class KommentarTests extends GroovyTestCase {
+
+       void testSomething() {
+               
+       }
+}
diff --git a/projekte/MDB/test/integration/ListenplatzTests.groovy b/projekte/MDB/test/integration/ListenplatzTests.groovy
new file mode 100644 (file)
index 0000000..dae1a5c
--- /dev/null
@@ -0,0 +1,6 @@
+class ListenplatzTests extends GroovyTestCase {
+
+       void testSomething() {
+               
+       }
+}
diff --git a/projekte/MDB/test/integration/ParteiTests.groovy b/projekte/MDB/test/integration/ParteiTests.groovy
new file mode 100644 (file)
index 0000000..66619fe
--- /dev/null
@@ -0,0 +1,6 @@
+class ParteiTests extends GroovyTestCase {
+
+       void testSomething() {
+               
+       }
+}
diff --git a/projekte/MDB/test/integration/ParteimitgliedschaftTests.groovy b/projekte/MDB/test/integration/ParteimitgliedschaftTests.groovy
new file mode 100644 (file)
index 0000000..b165c1a
--- /dev/null
@@ -0,0 +1,6 @@
+class ParteimitgliedschaftTests extends GroovyTestCase {
+
+       void testSomething() {
+               
+       }
+}
diff --git a/projekte/MDB/test/integration/PersonTests.groovy b/projekte/MDB/test/integration/PersonTests.groovy
new file mode 100644 (file)
index 0000000..255374b
--- /dev/null
@@ -0,0 +1,12 @@
+class PersonTests extends GroovyTestCase {
+
+       void testSomething() {
+               Person.list()*.delete()
+               Person f = new Person(nachname: 'Schumacher', vorname: 'Felix', titel:'', geburtsort:'',geburtsdatum: new Date(), sterbeort: '',sterbedatum: new Date())
+               Person u = new Person(nachname: 'Herrmann', vorname: 'Urte', titel:'', geburtsort:'',geburtsdatum: new Date(), sterbeort: '',sterbedatum: new Date())
+               f.save()
+               u.save()
+               assert Person.list() 
+               assert Person.findAll()[0].nachname == 'Schumacher'
+       }
+}
diff --git a/projekte/MDB/test/integration/WahlkreisTests.groovy b/projekte/MDB/test/integration/WahlkreisTests.groovy
new file mode 100644 (file)
index 0000000..4fbfb48
--- /dev/null
@@ -0,0 +1,6 @@
+class WahlkreisTests extends GroovyTestCase {
+
+       void testSomething() {
+               
+       }
+}
diff --git a/projekte/MDB/test/integration/WahlkreislisteTests.groovy b/projekte/MDB/test/integration/WahlkreislisteTests.groovy
new file mode 100644 (file)
index 0000000..4ed8177
--- /dev/null
@@ -0,0 +1,6 @@
+class WahlkreislisteTests extends GroovyTestCase {
+
+       void testSomething() {
+               
+       }
+}