mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 17:08:00 +02:00
New tests
This commit is contained in:
parent
5d909752c9
commit
9c2f95e1cd
3 changed files with 45 additions and 0 deletions
|
@ -1,9 +1,20 @@
|
|||
#pragma warning disable 168
|
||||
|
||||
using System;
|
||||
|
||||
namespace Tests
|
||||
{
|
||||
class Ints
|
||||
{
|
||||
[Test]
|
||||
public static void TestBasics()
|
||||
{
|
||||
int i;
|
||||
decltype(i + 100) j = 123;
|
||||
Test.Assert(typeof(decltype(j)) == typeof(int));
|
||||
int k = j + 10;
|
||||
}
|
||||
|
||||
[Test]
|
||||
public static void TestUInt64()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue