M
Mario Ruiz
I'm trying to run different testcases in a file:
require 'testcases/dopTest'
require 'testcases/bipTest'
require 'testcases/canTest'
But when I run it the order is not as I wrote it. First it's run bipTest
and the last one dopTest.
How can I sort the order I want?
Thanks.
require 'testcases/dopTest'
require 'testcases/bipTest'
require 'testcases/canTest'
But when I run it the order is not as I wrote it. First it's run bipTest
and the last one dopTest.
How can I sort the order I want?
Thanks.