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.
23 lines
661 B
C#
23 lines
661 B
C#
using System;
|
|
using System.Data.Common;
|
|
using EntityFrameworkCore.Jet.Data;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace EntityFrameworkCore.Jet.IntegrationTests.GearOfWar
|
|
{
|
|
[TestClass]
|
|
public class GearOfWarTestJet : TestBase<GearsOfWarContext>
|
|
{
|
|
protected override DbConnection GetConnection()
|
|
{
|
|
return new JetConnection(JetConnection.GetConnectionString("GearOfWar.accdb", Helpers.DataAccessProviderFactory), Helpers.DataAccessProviderFactory);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void GearOfWarTestJetSeedTest()
|
|
{
|
|
GearsOfWarContext.Seed(Context);
|
|
}
|
|
}
|
|
}
|