aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline.Tests/IntegratedTests/TokenTest.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
commitb10261186393aacf6cf07491d322f0224c94158f (patch)
tree87ba89ba67f4d938b06e3b0cb08b3960a90c3675 /BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs
parent2a3c2d60cadbae348632ad9f2023367c5ea1e905 (diff)
downloadtimeline-b10261186393aacf6cf07491d322f0224c94158f.tar.gz
timeline-b10261186393aacf6cf07491d322f0224c94158f.tar.bz2
timeline-b10261186393aacf6cf07491d322f0224c94158f.zip
test: Use xunit logging output.
Diffstat (limited to 'BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs')
-rw-r--r--BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs b/BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs
index ac96ef9d..68681b61 100644
--- a/BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs
+++ b/BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs
@@ -6,11 +6,17 @@ using System.Threading.Tasks;
using Timeline.Models.Http;
using Timeline.Services.User;
using Xunit;
+using Xunit.Abstractions;
namespace Timeline.Tests.IntegratedTests
{
public class TokenTest : IntegratedTestBase
{
+ public TokenTest(ITestOutputHelper testOutputHelper) : base(testOutputHelper)
+ {
+
+ }
+
private const string CreateTokenUrl = "token/create";
private const string VerifyTokenUrl = "token/verify";