jf-roku/test-app/source/BaseTestSuite.spec.bs
2023-04-22 09:03:44 -04:00

18 lines
494 B
Plaintext

namespace tests
class BaseTestSuite extends rooibos.BaseTestSuite
private appController
protected override function setup()
'Do something here all your files need like setup the logger, etc
end function
protected override function beforeEach()
'do things here that all your tests need
end function
protected override function afterEach()
'tidy things up
end function
end class
end namespace