RhSolutions-AddIn/Tests/SkuAssistTests.cs
2021-12-03 22:25:20 +03:00

16 lines
359 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.

using NUnit.Framework;
namespace Rehau.Sku.Assist.Tests
{
[TestFixture]
public class SkuAssistTests
{
[Test]
public static void BaseTest()
{
var result = Functions.RAUNAME("160001");
Assert.AreEqual("Надвижная гильза REHAU RAUTITAN РХ (11600011001)", result);
}
}
}