diff options
author | crupest <crupest@outlook.com> | 2022-12-19 16:09:43 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-20 20:32:53 +0800 |
commit | 238759a621890c8c2ea7745713f1500737f12760 (patch) | |
tree | 7d459c2eb45c2a4afdd855e5f09d5f89dea84747 /docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/TableInfoTest.cs | |
parent | 54adcc6c2fcb4b67717450e8061cc781f73985b9 (diff) | |
download | crupest-238759a621890c8c2ea7745713f1500737f12760.tar.gz crupest-238759a621890c8c2ea7745713f1500737f12760.tar.bz2 crupest-238759a621890c8c2ea7745713f1500737f12760.zip |
Develop secret api. v46
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/TableInfoTest.cs')
-rw-r--r-- | docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/TableInfoTest.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/TableInfoTest.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/TableInfoTest.cs index 87f4a00..102df5d 100644 --- a/docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/TableInfoTest.cs +++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/TableInfoTest.cs @@ -1,8 +1,10 @@ +using Microsoft.Extensions.Logging.Abstractions; + namespace CrupestApi.Commons.Crud.Tests; public class TableInfoTest { - private static TableInfoFactory TableInfoFactory = new TableInfoFactory(new ColumnTypeProvider()); + private static TableInfoFactory TableInfoFactory = new TableInfoFactory(new ColumnTypeProvider(), NullLoggerFactory.Instance); private TableInfo _tableInfo; |