Skip to content

Instantly share code, notes, and snippets.

@nedgrady
Created May 1, 2023 20:29
Show Gist options
  • Save nedgrady/38aceabaae126de85482af673b6c8d02 to your computer and use it in GitHub Desktop.
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 = "Any.Email@anywhere.co.uk"
};
// 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