diff options
author | 杨宇千 <crupest@outlook.com> | 2019-08-18 18:07:50 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-08-18 18:07:50 +0800 |
commit | 39aa54bb10da8b76a4021feb984b8aad0df6269b (patch) | |
tree | 21b4c77e48f34e1a72858209e4d4d6d7978b663a /Timeline.Tests/Helpers/MyTestLoggerFactory.cs | |
parent | 2d672de8ea109c923d5a8697e44d5cbbf976ead2 (diff) | |
download | timeline-39aa54bb10da8b76a4021feb984b8aad0df6269b.tar.gz timeline-39aa54bb10da8b76a4021feb984b8aad0df6269b.tar.bz2 timeline-39aa54bb10da8b76a4021feb984b8aad0df6269b.zip |
Add avatar service.
Diffstat (limited to 'Timeline.Tests/Helpers/MyTestLoggerFactory.cs')
-rw-r--r-- | Timeline.Tests/Helpers/MyTestLoggerFactory.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Timeline.Tests/Helpers/MyTestLoggerFactory.cs b/Timeline.Tests/Helpers/MyTestLoggerFactory.cs new file mode 100644 index 00000000..40c6a77e --- /dev/null +++ b/Timeline.Tests/Helpers/MyTestLoggerFactory.cs @@ -0,0 +1,14 @@ +using Microsoft.Extensions.Logging;
+using Microsoft.Extensions.Logging.Testing;
+using Xunit.Abstractions;
+
+namespace Timeline.Tests.Helpers
+{
+ public static class MyTestLoggerFactory
+ {
+ public static LoggerFactory Create(ITestOutputHelper outputHelper)
+ {
+ return new LoggerFactory(new[] { new XunitLoggerProvider(outputHelper) });
+ }
+ }
+}
|