7f2f9c1201
git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@638 af16638f-c34d-0410-8cfa-b39d5352b314
15 lines
253 B
Groovy
15 lines
253 B
Groovy
import VolunteerOttawaService
|
|
|
|
class VolunteerOttawaServiceTests extends GroovyTestCase {
|
|
|
|
VolunteerOttawaService voService
|
|
|
|
void setUp() {
|
|
voService = new VolunteerOttawaService()
|
|
}
|
|
|
|
void testSomething() {
|
|
assert voService != null
|
|
}
|
|
}
|