diff options
Diffstat (limited to 'RhSolutions.ML.Tests')
-rw-r--r-- | RhSolutions.ML.Tests/Tests.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/RhSolutions.ML.Tests/Tests.cs b/RhSolutions.ML.Tests/Tests.cs index c0924fa..0e17e67 100644 --- a/RhSolutions.ML.Tests/Tests.cs +++ b/RhSolutions.ML.Tests/Tests.cs @@ -149,6 +149,18 @@ public class Tests Assert.That(prediction.Type, Is.EqualTo("Black")); } + [TestCase("Фиксирующий желоб 16")] + [TestCase("Желоб 16")] + public void SupportingClipTest(string name) + { + Product p = new() + { + Name = name + }; + var prediction = _predEngine.Predict(p); + Assert.That(prediction.Type, Is.EqualTo("Желоб")); + } + [TestCase("Труба канализационная")] [TestCase("Труба 110")] [TestCase("Труба 110 500")] |