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.
GameAtlas/Sources/GameAtlas/Tests/UnitTest1.cs

17 lines
396 B

using Models;
using System.Diagnostics;
namespace Tests
{
public class UnitTest1
{
[Fact]
public void Test1()
{
Utilisateur Georges = new Utilisateur("georges.gio@gmail.com", "GeoStorm", "Storm7!");
Debug.WriteLine(Georges.Mail);
Debug.WriteLine(Georges.Pseudo);
Debug.WriteLine(Georges.EstAdmin);
}
}
}