classicAspUnit
1.0.0
古典的な ASP コードのテストを支援するための古典的な ASP ユニット フレームワーク。
コンテキストをインスタンス化します。
set testContext = new aspUnit
テストケースを作成します。
set oTest = testContext.addTestCase("User Administration")
アサーションを行う:
oTestMethod.AssertExists usersDB, "optional message override: {1}" ' accepts a wildcard marks for the parammeters oTestMethod.AssertIsA usersDB, "testDB", "" ' leave blank for default message
Test Case
の各テストの前後に実行されるテスト セットアップとティアダウンを作成することもできます。
sub testSetup() set usersDB = new testDB usersDB.TableName = "users" set newUser = new User newUser.id = 1 newUser.name = "Bob" usersDB.add newUser end sub sub testTeardown() set usersDB = nothing end sub
...そして、テスト ケースのメソッド名を渡します。
oTest.Setup("testSetup") oTest.Teardown("testTeardown")
これも機能します:
oTest.Setup("myGlobalObject.MyMethod(1, ""param2"", true)")
警告:これは
Execute
使用してコードを実行し、"myVar = 1"
や"myFunction() : myOtherFunction()"
などの実行可能なコード文字列を受け入れます。
テストを実行して結果を取得するには:
set results = testContext.run results.Update ' This will update the test counters for passed, failed and errors
その後、結果にアクセスして、必要なビューを作成できます。
Response.Write "Test Cases: " & results.TestCases.Count & "
" Response.Write "Tests runned: " & results.Tests & ", " Response.Write "Tests passed: " & results.Passed & ", " Response.Write "Tests failed: " & results.Failed & ", " Response.Write "Tests errored: " & results.Errors & "
" ' loop the testCases for each testCase in result.TestCases.Items Response.Write "-> Test Case: " & testCase.Name & "(" & testCase.Status & ")
" ' loop the tests for each test in testCase.Tests.Items Response.Write "--> Test: " & test.Name & "
" Response.Write "----> " & test.Output & "(" & test.Status & ")
" next next
テストフォルダーにはソースを含むテンプレートビューがあります。