Created
June 22, 2018 15:06
-
-
Save joseoliv/972d8565aaa29c0cc8674c32ae5e8d9f to your computer and use it in GitHub Desktop.
Metaobject callTestMethods
This file contains 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
package metaobjectTest | |
@doc{* | |
callTestMethods generates code that calls all methods of | |
the current prototype whose name ends with 'Test'. It | |
is the same as to use annotation @callUnaryMethods(".*Test") | |
*} | |
object CallTestMethods | |
func run { | |
@callTestMethods ; | |
assert count == 3; | |
} | |
func oneTest { ++count } | |
func twoTest { ++count } | |
func threeTest { ++count } | |
var Int count = 0; | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment