mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-19 16:40:26 +02:00
New tests
This commit is contained in:
parent
5d909752c9
commit
9c2f95e1cd
3 changed files with 45 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
|||
#pragma warning disable 168
|
||||
|
||||
using System;
|
||||
|
||||
namespace Tests
|
||||
|
@ -57,6 +59,13 @@ namespace Tests
|
|||
Test.Assert(iface1.Get() == 1100);
|
||||
Test.Assert(GetFromIFace(iface1) == 2100);
|
||||
Test.Assert(valB.mA == 1100); // This should copy values
|
||||
|
||||
var boxedVal = scope box valA;
|
||||
iface0 = boxedVal;
|
||||
|
||||
#unwarn
|
||||
var boxedStr = scope box "Test";
|
||||
IHashable ihash = boxedStr;
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue