Remove some bad test cases.

Can't actually assign null to int so these test cases weren't getting ran.
This commit is contained in:
Pieter-Jan Briers
2020-07-30 15:05:57 +02:00
parent e8abe89820
commit 681f1419c7

View File

@@ -129,11 +129,9 @@ namespace Content.Tests.Shared.Chemistry
[TestCase(1, 0, false)]
[TestCase(0, 0, true)]
[TestCase(-1, 0, false)]
[TestCase(null, 0, true)]
[TestCase(1, 1, true)]
[TestCase(0, 1, false)]
[TestCase(-1, 1, false)]
[TestCase(null, 1, false)]
public void ReagentUnitEquals(int a, int b, bool expected)
{
var parameter = ReagentUnit.New(a);