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.
24 lines
591 B
C#
24 lines
591 B
C#
using System;
|
|
using System.Data.Common;
|
|
using EFCore.Jet.Integration.Test;
|
|
using EFCore.Jet.Integration.Test.GearOfWar;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace EFCore.SqlServer.Integration.Test.GearOfWar
|
|
{
|
|
//[TestClass]
|
|
public class GearOfWarTestSqlCe : TestBase<GearsOfWarContext>
|
|
{
|
|
protected override DbConnection GetConnection()
|
|
{
|
|
return Helpers.GetSqlCeConnection();
|
|
}
|
|
|
|
[TestMethod]
|
|
public void GearOfWarTestSqlCeSeedTest()
|
|
{
|
|
GearsOfWarContext.Seed(Context);
|
|
}
|
|
}
|
|
}
|