Created
July 4, 2018 14:56
-
-
Save knjname/fc5f48d49490956d16d606b348c17b32 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
''' 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