Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ckachman/sim
Browse files Browse the repository at this point in the history
  • Loading branch information
carloseberhardt committed Jun 1, 2012
2 parents 7ea67d9 + 998e59a commit 713043a
Show file tree
Hide file tree
Showing 11 changed files with 138 additions and 0 deletions.
6 changes: 6 additions & 0 deletions grails-app/controllers/tgt/BackstockController.groovy
@@ -0,0 +1,6 @@
package tgt

class BackstockController {

def index() { }
}
6 changes: 6 additions & 0 deletions grails-app/controllers/tgt/FiatsController.groovy
@@ -0,0 +1,6 @@
package tgt

class FiatsController {

def index() { }
}
8 changes: 8 additions & 0 deletions grails-app/services/tgt/BackstockService.groovy
@@ -0,0 +1,8 @@
package tgt

class BackstockService {

def serviceMethod() {

}
}
8 changes: 8 additions & 0 deletions grails-app/services/tgt/FiatsService.groovy
@@ -0,0 +1,8 @@
package tgt

class FiatsService {

def serviceMethod() {

}
}
8 changes: 8 additions & 0 deletions grails-app/services/tgt/PullService.groovy
@@ -0,0 +1,8 @@
package tgt

class PullService {

def serviceMethod() {

}
}
17 changes: 17 additions & 0 deletions test/unit/tgt/BackstockControllerTests.groovy
@@ -0,0 +1,17 @@
package tgt



import grails.test.mixin.*
import org.junit.*

/**
* See the API for {@link grails.test.mixin.web.ControllerUnitTestMixin} for usage instructions
*/
@TestFor(BackstockController)
class BackstockControllerTests {

void testSomething() {
fail "Implement me"
}
}
17 changes: 17 additions & 0 deletions test/unit/tgt/BackstockServiceTests.groovy
@@ -0,0 +1,17 @@
package tgt



import grails.test.mixin.*
import org.junit.*

/**
* See the API for {@link grails.test.mixin.services.ServiceUnitTestMixin} for usage instructions
*/
@TestFor(BackstockService)
class BackstockServiceTests {

void testSomething() {
fail "Implement me"
}
}
17 changes: 17 additions & 0 deletions test/unit/tgt/FiatsControllerTests.groovy
@@ -0,0 +1,17 @@
package tgt



import grails.test.mixin.*
import org.junit.*

/**
* See the API for {@link grails.test.mixin.web.ControllerUnitTestMixin} for usage instructions
*/
@TestFor(FiatsController)
class FiatsControllerTests {

void testSomething() {
fail "Implement me"
}
}
17 changes: 17 additions & 0 deletions test/unit/tgt/FiatsServiceTests.groovy
@@ -0,0 +1,17 @@
package tgt



import grails.test.mixin.*
import org.junit.*

/**
* See the API for {@link grails.test.mixin.services.ServiceUnitTestMixin} for usage instructions
*/
@TestFor(FiatsService)
class FiatsServiceTests {

void testSomething() {
fail "Implement me"
}
}
17 changes: 17 additions & 0 deletions test/unit/tgt/PullControllerTests.groovy
@@ -0,0 +1,17 @@
package tgt



import grails.test.mixin.*
import org.junit.*

/**
* See the API for {@link grails.test.mixin.web.ControllerUnitTestMixin} for usage instructions
*/
@TestFor(PullController)
class PullControllerTests {

void testSomething() {
fail "Implement me"
}
}
17 changes: 17 additions & 0 deletions test/unit/tgt/PullServiceTests.groovy
@@ -0,0 +1,17 @@
package tgt



import grails.test.mixin.*
import org.junit.*

/**
* See the API for {@link grails.test.mixin.services.ServiceUnitTestMixin} for usage instructions
*/
@TestFor(PullService)
class PullServiceTests {

void testSomething() {
fail "Implement me"
}
}

0 comments on commit 713043a

Please sign in to comment.