Files
rent-a-car/RentACar/Unit Tests/UnitTest1.cs
2022-03-25 17:10:55 +02:00

18 lines
238 B
C#

using NUnit.Framework;
namespace Unit_Tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}