Skip to content

Instantly share code, notes, and snippets.

@nedgrady
Created May 1, 2023 20:29
Show Gist options
  • Select an option

  • Save nedgrady/38aceabaae126de85482af673b6c8d02 to your computer and use it in GitHub Desktop.

Select an option

Save nedgrady/38aceabaae126de85482af673b6c8d02 to your computer and use it in GitHub Desktop.
[Test]
public void FullNameConcatenatesFirstAndLastName()
{
// Arrange
Person personUnderTest = new()
{
FirstName = "SomeFirstName",
LastName = "SomeSecondName",
Email = "[email protected]"
};
// Act
var fullName = personUnderTest.FullName;
// Assert
Assert.AreEqual("SomeFirstName SomeSecondName", fullName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment