Created
April 3, 2020 01:20
-
-
Save rafaeldalsenter/8d9f17b24710ccf256a632e9901719ef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Fact] | |
| public void WithoutTitle_IsInvalid() | |
| { | |
| var domain = new NetflixTitleBuilder() | |
| .WithCast("cast example") | |
| .WithDescription("description example") | |
| .WithId(Guid.NewGuid()) | |
| .Build(); | |
| Assert.False(domain.IsValid()); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment