class ActiveSupport::TestCase

def test_order

Experimental RBS support (using type sampling data from the type_fusion project).

def test_order: () -> Symbol

This signature was generated using 6 samples from 1 application.

Defaults to +:random+.
Possible values are +:random+, +:parallel+, +:alpha+, +:sorted+.

ActiveSupport::TestCase.test_order # => :random

Returns the order in which test cases are run.
def test_order
  ActiveSupport.test_order ||= :random
end