14 lines
219 B
C#
14 lines
219 B
C#
|
using NUnit.Framework;
|
|||
|
|
|||
|
namespace Aya_Backend.Tests
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class WorkpageControllerTests
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void Test1()
|
|||
|
{
|
|||
|
Assert.Pass();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|