You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
542 B
23 lines
542 B
using EntityFrameWorkLib;
|
|
using Microsoft.Data.Sqlite;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Model;
|
|
using NUnit.Framework.Internal;
|
|
using Stub;
|
|
using System.Data;
|
|
using static Stub.StubData;
|
|
|
|
namespace ModelTest
|
|
{
|
|
public class Test_Stub
|
|
{
|
|
[Fact]
|
|
public void Test_AddNewPlayer()
|
|
{
|
|
Player player = new Player("Jax");
|
|
GameMode gameMode = new GameMode();
|
|
DateTime dateTime = new DateTime();
|
|
Game game = new Game(dateTime, player, gameMode, 1);
|
|
}
|
|
}
|
|
} |