Files
2026-01-07 22:41:11 +08:00

24 lines
645 B
C#

using SortingModel.SortingAlgorithms;
using SortingModel.SortingAlgorithms.Interfaces;
namespace Testing
{
[TestClass]
public sealed class BubbleSortTest : SortingTestBase
{
protected override ISortingAlgorithm CreateAlgorithm() => new BubbleSortAlgorithm();
}
[TestClass]
public sealed class QuickSortTest : SortingTestBase
{
protected override ISortingAlgorithm CreateAlgorithm() => new QuickSortAlgorithm();
}
[TestClass]
public sealed class MergeSortTest : SortingTestBase
{
protected override ISortingAlgorithm CreateAlgorithm() => new MergeSortAlgorithm();
}
}