diff options
author | crupest <crupest@outlook.com> | 2020-08-08 16:12:34 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-08-08 16:12:34 +0800 |
commit | dc64b04f1ba8c6e4c1d9605fbb4971b2d8eb3d89 (patch) | |
tree | af3fe505853e81240d2006866d0040bd6fb069ba /Timeline.Tests/UsernameValidatorUnitTest.cs | |
parent | db65d0c37ace61701deec5cc9cd74239208e0935 (diff) | |
download | timeline-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.cs | 6 |
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")]
|