15 lines
224 B
C#
15 lines
224 B
C#
using System;
|
|
using NUnit.Framework;
|
|
|
|
namespace FinalProject.UnitTests
|
|
{
|
|
[TestFixture]
|
|
public class Tests
|
|
{
|
|
[Test]
|
|
public void Test1()
|
|
{
|
|
Assert.True(true);
|
|
}
|
|
}
|
|
} |