Files
importer-labs/azure_devops/bootstrap/code/test/AttendeeTest/AttendeeExists.cs
T

19 lines
403 B
C#
Raw Normal View History

2022-08-23 09:15:23 -07:00
using System;
using Xunit;
using Xunit.Extensions;
using Attendees;
namespace AttendeeTest
{
public class AttendeeTest
{
[Fact]
public void AttendeeExistsReturnTrue()
{
Attendee attendee = new Attendee();
bool doesExist = attendee.AddAttendee("doesnotexist");
Assert.False(doesExist, "The attendee does not exist");
}
}
}