This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
usingAPI.Controllers;
usingAPI.Dto;
usingMicrosoft.AspNetCore.Mvc;
usingStubLib;
usingSystem.Collections.Generic;
namespaceTestProject1
{
publicclassTests
{
[SetUp]
publicvoidSetup()
{
}
/*[Test]
public void TestGET()
{
//Arrange
//Act
var championResult = ChampionController.get();
//Assert
var objectResult = championResult as OkObjectResult;
//vérifie que c’est un ok 200 et un objet
Assert.IsNotNull(objectResult);
var champions = objectResult?.Value as IEnumerable<ChampionDto>;