aboutsummaryrefslogtreecommitdiff
path: root/Timeline.Tests/UsernameValidatorUnitTest.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-08-08 16:12:34 +0800
committercrupest <crupest@outlook.com>2020-08-08 16:12:34 +0800
commitdc64b04f1ba8c6e4c1d9605fbb4971b2d8eb3d89 (patch)
treeaf3fe505853e81240d2006866d0040bd6fb069ba /Timeline.Tests/UsernameValidatorUnitTest.cs
parentdb65d0c37ace61701deec5cc9cd74239208e0935 (diff)
downloadtimeline-dc64b04f1ba8c6e4c1d9605fbb4971b2d8eb3d89.tar.gz
timeline-dc64b04f1ba8c6e4c1d9605fbb4971b2d8eb3d89.tar.bz2
timeline-dc64b04f1ba8c6e4c1d9605fbb4971b2d8eb3d89.zip
Add unique id test in name validator.
Diffstat (limited to 'Timeline.Tests/UsernameValidatorUnitTest.cs')
-rw-r--r--Timeline.Tests/UsernameValidatorUnitTest.cs6
1 files changed, 6 insertions, 0 deletions
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")]