From dc64b04f1ba8c6e4c1d9605fbb4971b2d8eb3d89 Mon Sep 17 00:00:00 2001 From: crupest Date: Sat, 8 Aug 2020 16:12:34 +0800 Subject: Add unique id test in name validator. --- Timeline.Tests/UsernameValidatorUnitTest.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Timeline.Tests/UsernameValidatorUnitTest.cs') diff --git a/Timeline.Tests/UsernameValidatorUnitTest.cs b/Timeline.Tests/UsernameValidatorUnitTest.cs index 8824362b..5b568adf 100644 --- a/Timeline.Tests/UsernameValidatorUnitTest.cs +++ b/Timeline.Tests/UsernameValidatorUnitTest.cs @@ -52,6 +52,12 @@ namespace Timeline.Tests FailAndMessage(new string('a', 40)).Should().ContainEquivalentOf("long"); } + [Fact(Skip = "Currently name can't be longer than 26. So this will print message of too long.")] + public void UniqueId() + { + FailAndMessage("e4c80127d092d9b2fc19c5e04612d4c0").Should().ContainEquivalentOf("unique id"); + } + [Theory] [InlineData(null)] [InlineData("abc")] -- cgit v1.2.3