class SampleTest
Public Instance Methods
cleanup()
click to toggle source
# File lib/foundation/test/manual/sample_test.rb, line 14 def cleanup # Add cleanup code here end
prepare()
click to toggle source
# File lib/foundation/test/manual/sample_test.rb, line 5 def prepare # Add test preparation here end
run_test()
click to toggle source
# File lib/foundation/test/manual/sample_test.rb, line 9 def run_test puts "This is a sample test!" @notes << "Sample note" end