require 'minitest/autorun' require_relative './sort_tests' require_relative './bubble_sort' class TestBubbleSort < Minitest::Test include SortTests def sort(input) bubble_sort(input) end end
Ruby
Kotlin
© The Algorithms 2021