Update Project

This commit is contained in:
2026-03-20 13:04:43 +02:00
parent 9b587e6cba
commit beae2dea89
2295 changed files with 251259 additions and 33 deletions
@@ -0,0 +1,45 @@
using System.Collections.Generic;
using NUnit.Framework;
using Assert = ModestTree.Assert;
namespace Zenject.Tests
{
[TestFixture]
public class TestTestUtil
{
[Test]
public void TestTrue()
{
Assert.That(TestListComparer.ContainSameElements(
new List<int> {1},
new List<int> {1}));
Assert.That(TestListComparer.ContainSameElements(
new List<int> {1, 2},
new List<int> {2, 1}));
Assert.That(TestListComparer.ContainSameElements(
new List<int> {1, 2, 3},
new List<int> {3, 2, 1}));
Assert.That(TestListComparer.ContainSameElements(
new List<int>(),
new List<int>()));
}
[Test]
public void TestFalse()
{
Assert.That(!TestListComparer.ContainSameElements(
new List<int> {1, 2, 3},
new List<int> {3, 2, 3}));
Assert.That(!TestListComparer.ContainSameElements(
new List<int> {1, 2},
new List<int> {1, 2, 3}));
}
}
}