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.

22 lines
333 B
C#

using System;
using System.Data;
using System.Data.Common;
using System.Data.Sql;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Xunit;
namespace ClrDemoTest
{
public class UseXUnit
{
[Fact]
public void ProcedureTest()
{
CallSQL.CallStoredProcedure();
}
}
}