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 | 18065fa9d203a9187df46bf4ed6328ffdc10bdc5 (patch) | |
tree | c56b563b812d008597ee17ddaf915fb2c02b9b19 /Timeline.Tests/UsernameValidatorUnitTest.cs | |
parent | 5ec61fd4b5dc019893b06aae2590799db38790e7 (diff) | |
download | timeline-18065fa9d203a9187df46bf4ed6328ffdc10bdc5.tar.gz timeline-18065fa9d203a9187df46bf4ed6328ffdc10bdc5.tar.bz2 timeline-18065fa9d203a9187df46bf4ed6328ffdc10bdc5.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")]
|