0
0
RhSolutions-ML/RhSolutions.ML.Tests/RautitanPipesTests.cs
2023-10-09 21:58:48 +03:00

31 lines
954 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace RhSolutions.ML.Tests;
public class RautitanPipesTests : RhSolutionsTests
{
[TestCase("Труба stabil 16")]
[TestCase("Труба stabil")]
public void StabilPipeTest(string name)
=> Execute(name, expectedGroup: "Stabil");
[TestCase("Труба flex 16")]
[TestCase("Труба flex")]
public void FlexPipeTest(string name)
=> Execute(name, expectedGroup: "Flex");
[TestCase("Труба pink 16")]
[TestCase("Труба pink")]
[TestCase("Унив. труба RAUTITAN pink+ 16х2,2 мм, бухта 120 м")]
public void PinkPipeTest(string name)
=> Execute(name, expectedGroup: "Pink");
[TestCase("Труба black 16")]
[TestCase("Труба black")]
public void BlackPipeTest(string name)
=> Execute(name, expectedGroup: "Black");
[TestCase("Фиксирующий желоб 16")]
[TestCase("Желоб 16")]
public void SupportingClipTest(string name)
=> Execute(name, expectedGroup: "Желоб");
}