summaryrefslogtreecommitdiff
path: root/lib/test/unit/testcase.rb
blob: 89aa0f34c0737301a88a0c13152de283838b71be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'test/unit/assertions'

module Test
  module Unit
    class TestCase < MiniTest::Unit::TestCase
      include Assertions
      def self.test_order
        :sorted
      end
    end
  end
end