-
Notifications
You must be signed in to change notification settings - Fork 0
/
InstitutionValidatorTests.cs
61 lines (52 loc) · 1.57 KB
/
InstitutionValidatorTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using Athena.Core.Models;
using AutoFixture;
using FluentValidation.TestHelper;
using Xunit;
namespace Athena.Core.Validation.Tests
{
public class InstitutionValidatorTests : UniqueObjectValidatorTest<Institution>
{
public InstitutionValidatorTests() : base(new InstitutionValidator())
{
}
[Fact]
public void Valid()
{
var arg = new Institution
{
Id = Guid.NewGuid(),
Name = "University of Toledo",
Description = "Senior Design II"
};
Assert.True(_sut.Validate(arg).IsValid);
}
[Fact]
public void NameCannotBeNull()
{
var arg = _fixture.Build<Institution>()
.WithAutoProperties()
.With(i => i.Name, null)
.Create();
_sut.ShouldHaveValidationErrorFor(i => i.Name, arg);
}
[Fact]
public void NameCannotBeEmpty()
{
var arg = _fixture.Build<Institution>()
.WithAutoProperties()
.With(i => i.Name, string.Empty)
.Create();
_sut.ShouldHaveValidationErrorFor(i => i.Name, arg);
}
[Fact]
public void DescriptionCannotBeNull()
{
var arg = _fixture.Build<Institution>()
.WithAutoProperties()
.With(i => i.Description, null)
.Create();
_sut.ShouldHaveValidationErrorFor(i => i.Description, arg);
}
}
}