G
George Thomas
Hi,
I have MiniTest derived class to run the test cases.
Its something as follows
class CustomClass < MiniTest::Unit::TestCase
def test1
end
def test2
end
.....
.....
def testn
end
end
My requirement is that if the logic inside test1 fails , I do not want
to execute other tests. (test2 onwards)
(Calling exit , seem to be exiting from test1 only)
How can I do that?
Regards,
George
I have MiniTest derived class to run the test cases.
Its something as follows
class CustomClass < MiniTest::Unit::TestCase
def test1
end
def test2
end
.....
.....
def testn
end
end
My requirement is that if the logic inside test1 fails , I do not want
to execute other tests. (test2 onwards)
(Calling exit , seem to be exiting from test1 only)
How can I do that?
Regards,
George