Faction Test 100.4.0.0

This commit is contained in:
Markus Isberg
2022-11-14 18:28:28 +02:00
parent 87426b68b2
commit c772b61fc1
412 changed files with 16984 additions and 5530 deletions
@@ -0,0 +1,55 @@
#nullable enable
using System;
using Xunit;
using Barotrauma;
using FluentAssertions;
using FsCheck;
namespace TestProject;
public sealed class GenericToolBoxTests
{
public class CustomGenerators
{
public static Arbitrary<DifferentIdentifierPair> IdentifierPairGenerator()
{
return Arb.From(from Identifier first in Arb.Generate<Identifier>()
from Identifier second in Arb.Generate<Identifier>().Where(second => second != first)
select new DifferentIdentifierPair(first, second));
}
}
public readonly struct DifferentIdentifierPair
{
public readonly Identifier First,
Second;
public DifferentIdentifierPair(Identifier first, Identifier second)
{
if (first == second) { throw new InvalidOperationException("Identifiers must be different"); }
First = first;
Second = second;
}
}
public GenericToolBoxTests()
{
Arb.Register<TestProject.CustomGenerators>();
Arb.Register<CustomGenerators>();
}
[Fact]
public void MatchesStatIdentifier()
{
Prop.ForAll<DifferentIdentifierPair>(static pair =>
{
ToolBox.StatIdentifierMatches(pair.First, $"{pair.First}~{pair.Second}".ToIdentifier()).Should().BeTrue();
ToolBox.StatIdentifierMatches(pair.First, pair.First).Should().BeTrue();
ToolBox.StatIdentifierMatches(pair.First, $"{pair.Second}~{pair.First}".ToIdentifier()).Should().BeFalse();
ToolBox.StatIdentifierMatches(pair.First, pair.Second).Should().BeFalse();
}).VerboseCheckThrowOnFailure();
}
}