Ejemplo n.º 1
0
        public void Validate_ReturnTrue_When_PassingEmptyProfileInfo()
        {
            var validator = new ProfileEntriesCollectionValidator();

            Assert.IsTrue(validator.Validate(new ProfileEntriesCollection()).IsValid);
        }
Ejemplo n.º 2
0
        public void ValidateAsync_ThrowArgumentNullException_When_PassingNullProfileInfo()
        {
            var validator = new ProfileEntriesCollectionValidator();

            Assert.Throws <ArgumentNullException>(() => validator.Validate(null as ProfileEntriesCollection));
        }