1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-03 06:45:59 +02:00

Nullable fixes with !=

This commit is contained in:
Brian Fiete 2020-05-19 12:27:26 -07:00
parent bf80ec8897
commit 952e3aec58
4 changed files with 32 additions and 5 deletions

View file

@ -31,5 +31,32 @@ namespace Tests
Test.Assert(!intn2.TryGetValue(ref i));
Test.Assert(i == 100);
}
[Test]
public static void TestOperators()
{
int? iNull = null;
bool? bNull = null;
Test.Assert(!(iNull == 0));
Test.Assert(!(iNull <= 0));
Test.Assert(!(iNull >= 0));
Test.Assert(!(bNull == false));
Test.Assert(!(bNull == true));
Test.Assert(bNull != true);
Test.Assert(bNull != false);
iNull = 100;
bNull = false;
Test.Assert(iNull >= 50);
Test.Assert(!(iNull >= 150));
Test.Assert(iNull < 150);
Test.Assert(!(iNull < 50));
Test.Assert(iNull == 100);
Test.Assert(iNull != 99);
Test.Assert(!(iNull != 100));
}
}
}