1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 23:56:05 +02:00

New tests

This commit is contained in:
Brian Fiete 2020-01-31 16:09:35 -08:00
parent 5d909752c9
commit 9c2f95e1cd
3 changed files with 45 additions and 0 deletions

View file

@ -215,5 +215,30 @@ namespace Tests
let oai2 = OuterOp2<float>.InnerOp<int>.Op(2.0f, 200);
Test.Assert(oai2 == 202.0f);*/
}
struct IntStruct
{
public int mA = 123;
public typealias ZaffInt = int;
public ZaffInt GetIt()
{
return 123;
}
public static implicit operator int(Self val)
{
return val.mA;
}
}
[Test]
public static void TestCompareWithCastOperator()
{
IntStruct iVal = .();
Test.Assert(iVal == 123);
Test.Assert(iVal == 123.0f);
}
}
}