aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-05-15 22:31:59 +0800
committercrupest <crupest@outlook.com>2021-05-15 22:31:59 +0800
commitd832591db5ddc594a97cc8a75739e0868094e3ec (patch)
tree97cb22dd8e60a0372d6abcb7992dc18caa0d1604 /BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs
parent8f88c6c995b340a64086aedd27d312d5732d3e7d (diff)
downloadtimeline-d832591db5ddc594a97cc8a75739e0868094e3ec.tar.gz
timeline-d832591db5ddc594a97cc8a75739e0868094e3ec.tar.bz2
timeline-d832591db5ddc594a97cc8a75739e0868094e3ec.zip
test: Use xunit logging output.
Diffstat (limited to 'BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs')
-rw-r--r--BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs b/BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs
index 006b5128..173494c8 100644
--- a/BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs
+++ b/BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs
@@ -1,12 +1,13 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using Timeline.Models.Http;
+using Xunit.Abstractions;
namespace Timeline.Tests.IntegratedTests
{
public class BaseTimelineTest : IntegratedTestBase
{
- public BaseTimelineTest() : base(3)
+ public BaseTimelineTest(ITestOutputHelper testOutputHelper) : base(3, testOutputHelper)
{
}