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.
27 lines
1016 B
C#
27 lines
1016 B
C#
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using EntityFrameworkCore.Jet.FunctionalTests.TestUtilities;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.ChangeTracking.Internal;
|
|
using Microsoft.EntityFrameworkCore.Diagnostics;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Storage;
|
|
using Microsoft.EntityFrameworkCore.TestUtilities;
|
|
using Xunit;
|
|
|
|
// ReSharper disable InconsistentNaming
|
|
namespace EntityFrameworkCore.Jet.FunctionalTests
|
|
{
|
|
public class StoreGeneratedJetTest(StoreGeneratedJetTest.StoreGeneratedJetFixture fixture)
|
|
: StoreGeneratedJetTestBase<StoreGeneratedJetTest.StoreGeneratedJetFixture>(fixture)
|
|
{
|
|
public class StoreGeneratedJetFixture : StoreGeneratedJetFixtureBase
|
|
{
|
|
protected override string StoreName
|
|
=> "StoreGeneratedTest";
|
|
}
|
|
}
|
|
}
|