We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e345d0d commit 7e8f6f9Copy full SHA for 7e8f6f9
EFCore.Sqlite.NodaTime.Tests/DesignTimeServicesTests.cs
@@ -18,7 +18,8 @@ public void ConfigureDesignTimeServices_works()
18
var serviceProvider = serviceCollection.BuildServiceProvider();
19
20
Assert.IsType<SqliteNodaTimeTypeMappingSourcePlugin>(serviceProvider.GetService<IRelationalTypeMappingSourcePlugin>());
21
- Assert.IsType<SqliteNodaTimeCodeGeneratorPlugin>(serviceProvider.GetService<IProviderCodeGeneratorPlugin>());
+ var plugin = Assert.IsType<SqliteNodaTimeCodeGeneratorPlugin>(serviceProvider.GetService<IProviderCodeGeneratorPlugin>());
22
+ Assert.NotNull(plugin.GenerateProviderOptions().MethodInfo);
23
}
24
25
0 commit comments