From 6c48f7ec08a873458a4b35d34307eab27379bdd3 Mon Sep 17 00:00:00 2001 From: Corentin R <76619184+Koroh63@users.noreply.github.com> Date: Sat, 25 Mar 2023 18:38:42 +0100 Subject: [PATCH] commit adding test --- Sources/.editorconfig | 4 ++++ Sources/EF_UT/EFDataManagerChampionTest.cs | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 Sources/.editorconfig diff --git a/Sources/.editorconfig b/Sources/.editorconfig new file mode 100644 index 0000000..73bb42e --- /dev/null +++ b/Sources/.editorconfig @@ -0,0 +1,4 @@ +[*.cs] + +# CS8604: Possible null reference argument. +dotnet_diagnostic.CS8604.severity = none diff --git a/Sources/EF_UT/EFDataManagerChampionTest.cs b/Sources/EF_UT/EFDataManagerChampionTest.cs index 07e3ca2..486a8be 100644 --- a/Sources/EF_UT/EFDataManagerChampionTest.cs +++ b/Sources/EF_UT/EFDataManagerChampionTest.cs @@ -47,7 +47,7 @@ namespace EF_UT var ak = (await championsManager.GetItemsByName("A", 0, 1)).First(); Assert.IsNotNull(ak); - //Assert.AreEqual("Akali", ak.Name); + Assert.AreEqual("Aatrox", ak.Name); } } }