21 lines
362 B
Groovy
21 lines
362 B
Groovy
|
package org.bigbluebutton
|
||
|
|
||
|
import grails.test.mixin.TestFor
|
||
|
import spock.lang.Specification
|
||
|
|
||
|
/**
|
||
|
* See the API for {@link grails.test.mixin.web.ControllerUnitTestMixin} for usage instructions
|
||
|
*/
|
||
|
@TestFor(ToolController)
|
||
|
class ToolControllerSpec extends Specification {
|
||
|
|
||
|
def setup() {
|
||
|
}
|
||
|
|
||
|
def cleanup() {
|
||
|
}
|
||
|
|
||
|
void "test something"() {
|
||
|
}
|
||
|
}
|