Skip to content

Instantly share code, notes, and snippets.

@rafaeldalsenter
Created April 3, 2020 01:20
Show Gist options
  • Select an option

  • Save rafaeldalsenter/8d9f17b24710ccf256a632e9901719ef to your computer and use it in GitHub Desktop.

Select an option

Save rafaeldalsenter/8d9f17b24710ccf256a632e9901719ef to your computer and use it in GitHub Desktop.
[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