rubyx/test/fragments/test_class.rb
2015-10-09 21:53:22 +03:00

20 lines
274 B
Ruby

require_relative 'helper'
class TestBasicClass < MiniTest::Test
include Fragments
def test_class_basic
@string_input = <<HERE
class Bar
int buh()
return 1
end
end
HERE
@expect = [ [Virtual::MethodEnter] ,[Virtual::MethodReturn]]
check
end
end