Skip to content

Instantly share code, notes, and snippets.

@joseoliv
Created June 22, 2018 15:06
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 joseoliv/972d8565aaa29c0cc8674c32ae5e8d9f to your computer and use it in GitHub Desktop.
Save joseoliv/972d8565aaa29c0cc8674c32ae5e8d9f to your computer and use it in GitHub Desktop.
Metaobject callTestMethods
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