14 lines
253 B
C#
14 lines
253 B
C#
|
using NUnit.Framework;
|
||
|
using website.Controllers;
|
||
|
|
||
|
namespace unitTests
|
||
|
{
|
||
|
public class Tests
|
||
|
{
|
||
|
[Test]
|
||
|
public void getAll() {
|
||
|
EventController eventController = new();
|
||
|
eventController.get();
|
||
|
}
|
||
|
}
|
||
|
}
|