You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TupleStudy/TupleStudyTest/ValueTupleStudyTest.cs

41 lines
779 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
using Xunit.Abstractions;
using Xunit.Extensions;
using Xunit.Sdk;
using TupleStudy;
namespace TupleStudyTest
{
public class ValueTupleStudyTest
{
private TupleStudy.ValueTupleStudy tupleStudy;
public ValueTupleStudyTest()
{
tupleStudy = new TupleStudy.ValueTupleStudy();
}
[Fact]
public void ValueTuple_Create_Constructor()
{
var emptyTuple = new ValueTuple();
Assert.IsType<ValueTuple>(emptyTuple);
}
[Fact]
public void Test()
{
ValueTuple aa = new ValueTuple();
}
}
}