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.
EntityFrameworkCore.Jet/test/EFCore.Jet.FunctionalTests/GraphUpdateWithIdentityJetT...

28 lines
905 B
C#

using Xunit;
namespace EntityFramework.Jet.FunctionalTests
{
public class GraphUpdatesWithIdentityJetTest : GraphUpdatesJetTestBase<GraphUpdatesWithIdentityJetTest.GraphUpdatesWithIdentityJetFixture>
{
public GraphUpdatesWithIdentityJetTest(GraphUpdatesWithIdentityJetFixture fixture)
: base(fixture)
{
}
public class GraphUpdatesWithIdentityJetFixture : GraphUpdatesJetFixtureBase
{
protected override string DatabaseName => "GraphIdentityUpdatesTest";
}
public override void Optional_One_to_one_with_AK_relationships_are_one_to_one()
{
base.Optional_One_to_one_with_AK_relationships_are_one_to_one();
}
public override void Optional_One_to_one_relationships_are_one_to_one()
{
base.Optional_One_to_one_relationships_are_one_to_one();
}
}
}