Push project
This commit is contained in:
23
Testing/Test1.cs
Normal file
23
Testing/Test1.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user