Skip to content

Instantly share code, notes, and snippets.

@knjname
Created July 4, 2018 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save knjname/fc5f48d49490956d16d606b348c17b32 to your computer and use it in GitHub Desktop.
Save knjname/fc5f48d49490956d16d606b348c17b32 to your computer and use it in GitHub Desktop.
'''
''' A simple unit testing library.
'''
''' @usage
''' Write a test class with the following rules.
'''
''' * A test class name must be ended with `Test` suffix.
''' * A Test method name must be ended with `_Test` suffix.
'''
''' You can see some examples in MonkeyTest class also included in Ariawase.
'''
''' For running tests, open Immediate Window and execute one of the following codes.
'''
''' * Run a test class:
''' Assert.RunTestOf New YourTest
'''
''' * Run all test classes in this project:
''' ' Refresh test runner
''' Assert.TestRunnerClear
''' Assert.TestRunnerGenerate
''' ' Run all test
''' Assert.RunTest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment