mirror of
https://github.com/jellyfin/jellyfin-roku.git
synced 2024-11-23 14:19:40 +00:00
18 lines
494 B
Plaintext
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
|