2023-10-03 21:43:15 +03:00
|
|
|
namespace RhSolutions.ML.Tests;
|
2023-12-29 11:24:23 +03:00
|
|
|
public class RautitanTests : TestBase
|
2023-10-03 21:43:15 +03:00
|
|
|
{
|
2023-12-29 11:24:23 +03:00
|
|
|
[TestCaseSource(typeof(RautitanDataset))]
|
|
|
|
public void RhSolutionsTests(Product expected)
|
|
|
|
=> Execute(expected);
|
2023-12-29 12:12:18 +03:00
|
|
|
|
2023-12-29 11:43:22 +03:00
|
|
|
[TestCaseSource(typeof(SanextDataset))]
|
|
|
|
public void SanextTests(Product expected)
|
|
|
|
=> Execute(expected);
|
2023-12-29 12:49:43 +03:00
|
|
|
|
2023-12-29 12:12:18 +03:00
|
|
|
[TestCaseSource(typeof(TeceDataset))]
|
|
|
|
public void TeceTests(Product expected)
|
2023-12-29 12:49:43 +03:00
|
|
|
=> Execute(expected);
|
|
|
|
|
|
|
|
[TestCaseSource(typeof(UponorDataset))]
|
|
|
|
public void UponorTest(Product expected)
|
|
|
|
=> Execute(expected);
|
2023-12-29 14:55:40 +03:00
|
|
|
|
|
|
|
[TestCaseSource(typeof(PradoDataset))]
|
|
|
|
public void PradoTests(Product expexted)
|
|
|
|
=> Execute(expexted);
|
2024-01-10 23:28:14 +03:00
|
|
|
|
2024-01-11 23:34:38 +03:00
|
|
|
[TestCaseSource(typeof(KanDataset))]
|
|
|
|
public void KanTests(Product expected)
|
|
|
|
=>Execute(expected);
|
|
|
|
|
2024-01-10 23:28:14 +03:00
|
|
|
[TestCaseSource(typeof(MiscDataset))]
|
|
|
|
public void MiscTest(Product expected)
|
2024-01-11 23:40:29 +03:00
|
|
|
=> Execute(expected);
|
2023-10-03 21:43:15 +03:00
|
|
|
}
|