From: felix Date: Sun, 17 Jun 2007 13:42:46 +0000 (+0000) Subject: Tests in neues test/integration Verzeichnis verschoben X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1360271f3013c9be9d9a9d45bb5a03eb60e8d3ea;p=bytewurf.git Tests in neues test/integration Verzeichnis verschoben git-svn-id: https://www.internetallee.de/svn/bytewurf@51 a944a559-bf0e-0410-8ddc-85264b264b6c --- diff --git a/projekte/MDB/grails-tests/KommentarTests.groovy b/projekte/MDB/grails-tests/KommentarTests.groovy deleted file mode 100644 index 7e11714..0000000 --- a/projekte/MDB/grails-tests/KommentarTests.groovy +++ /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 index dae1a5c..0000000 --- a/projekte/MDB/grails-tests/ListenplatzTests.groovy +++ /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 index 66619fe..0000000 --- a/projekte/MDB/grails-tests/ParteiTests.groovy +++ /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 index b165c1a..0000000 --- a/projekte/MDB/grails-tests/ParteimitgliedschaftTests.groovy +++ /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 index 255374b..0000000 --- a/projekte/MDB/grails-tests/PersonTests.groovy +++ /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 index 4fbfb48..0000000 --- a/projekte/MDB/grails-tests/WahlkreisTests.groovy +++ /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 index 4ed8177..0000000 --- a/projekte/MDB/grails-tests/WahlkreislisteTests.groovy +++ /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 index 0000000..7e11714 --- /dev/null +++ b/projekte/MDB/test/integration/KommentarTests.groovy @@ -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 index 0000000..dae1a5c --- /dev/null +++ b/projekte/MDB/test/integration/ListenplatzTests.groovy @@ -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 index 0000000..66619fe --- /dev/null +++ b/projekte/MDB/test/integration/ParteiTests.groovy @@ -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 index 0000000..b165c1a --- /dev/null +++ b/projekte/MDB/test/integration/ParteimitgliedschaftTests.groovy @@ -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 index 0000000..255374b --- /dev/null +++ b/projekte/MDB/test/integration/PersonTests.groovy @@ -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 index 0000000..4fbfb48 --- /dev/null +++ b/projekte/MDB/test/integration/WahlkreisTests.groovy @@ -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 index 0000000..4ed8177 --- /dev/null +++ b/projekte/MDB/test/integration/WahlkreislisteTests.groovy @@ -0,0 +1,6 @@ +class WahlkreislisteTests extends GroovyTestCase { + + void testSomething() { + + } +}