diff options
author | chai <chaifix@163.com> | 2021-10-20 13:36:36 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-20 13:36:36 +0800 |
commit | dde719dd575090b36aaa3ad85bb3cabf33f36c5a (patch) | |
tree | 3e0a8e70f716dbfee2f644f5202da7ee74b3c6b7 /Resources/Libraries/luaunit/test/legacy_example_with_luaunit.lua | |
parent | 943411c9006345b07557e76ff360c388ee8366c1 (diff) |
+luaunit test
Diffstat (limited to 'Resources/Libraries/luaunit/test/legacy_example_with_luaunit.lua')
-rw-r--r-- | Resources/Libraries/luaunit/test/legacy_example_with_luaunit.lua | 140 |
1 files changed, 140 insertions, 0 deletions
diff --git a/Resources/Libraries/luaunit/test/legacy_example_with_luaunit.lua b/Resources/Libraries/luaunit/test/legacy_example_with_luaunit.lua new file mode 100644 index 0000000..c73a6d3 --- /dev/null +++ b/Resources/Libraries/luaunit/test/legacy_example_with_luaunit.lua @@ -0,0 +1,140 @@ +EXPORT_ASSERT_TO_GLOBALS = true +require('luaunit') + +TestToto = {} --class + + function TestToto:setUp() + -- set up tests + self.a = 1 + self.s = 'hop' + self.t1 = {1,2,3} + self.t2 = {one=1,two=2,three=3} + self.t3 = {1,2,three=3} + end + + function TestToto:test1_withFailure() + print( "some stuff test 1" ) + assertEquals( self.a , 1 ) + -- will fail + assertEquals( self.a , 2 ) + assertEquals( self.a , 2 ) + end + + function TestToto:test2_withFailure() + print( "some stuff test 2" ) + assertEquals( self.a , 1 ) + assertEquals( self.s , 'hop' ) + -- will fail + assertEquals( self.s , 'bof' ) + assertEquals( self.s , 'bof' ) + end + + function TestToto:test3() + print( "some stuff test 3" ) + assertEquals( self.a , 1 ) + assertEquals( self.s , 'hop' ) + assertEquals( type(self.a), 'number' ) + end + + function TestToto:test4() + print( "some stuff test 4" ) + assertNotEquals( self.a , 1 ) + end + + function TestToto:test5() + print( "some stuff test 5" ) + assertTrue( self.a ) + assertFalse( self.a ) + end + + function TestToto:test6() + print( "some stuff test 6" ) + assertTrue( false ) + end + + function TestToto:test7() + -- assertEquals( {1,2}, self.t1 ) + -- assertEquals( {1,2}, self.t2 ) + assertEquals( {1,2}, self.t3 ) + end + + function TestToto:test8a() + -- failure occurs in a submethod + self:funcWithError() + end + + function TestToto:test8b() + -- failure occurs in a submethod + self:funcWithFuncWithError() + end + + function TestToto:funcWithFuncWithError() + self:funcWithError() + end + + function TestToto:funcWithError() + error('Bouhouhoum error!') + end + + +-- class TestToto + +TestTiti = {} --class + function TestTiti:setUp() + -- set up tests + self.a = 1 + self.s = 'hop' + print( 'TestTiti:setUp' ) + end + + function TestTiti:tearDown() + -- some tearDown() code if necessary + print( 'TestTiti:tearDown' ) + end + + function TestTiti:test1_withFailure() + print( "some stuff test 1" ) + assertEquals( self.a , 1 ) + -- will fail + assertEquals( self.a , 2 ) + assertEquals( self.a , 2 ) + end + + function TestTiti:test2_withFailure() + print( "some stuff test 2" ) + assertEquals( self.a , 1 ) + assertEquals( self.s , 'hop' ) + -- will fail + assertEquals( self.s , 'bof' ) + assertEquals( self.s , 'bof' ) + end + + function TestTiti:test3() + print( "some stuff test 3" ) + assertEquals( self.a , 1 ) + assertEquals( self.s , 'hop' ) + end +-- class TestTiti + +-- simple test functions that were written previously can be integrated +-- in luaunit too +function test1_withFailure() + assert( 1 == 1) + -- will fail + assert( 1 == 2) +end + +function test2_withFailure() + assert( 'a' == 'a') + -- will fail + assert( 'a' == 'b') +end + +function test3() + assert( 1 == 1) + assert( 'a' == 'a') +end + +local lu = LuaUnit.new() +lu:setOutputType("tap") +os.exit( lu:runSuite() ) |