AeroFSSDK.Tests.TestUsers.ShouldDeleteUser C# (CSharp) Method

ShouldDeleteUser() private method

private ShouldDeleteUser ( ) : void
return void
        public void ShouldDeleteUser()
        {
            OrgAdminClient.CreateUser(Email, FirstName, LastName);
            OrgAdminClient.DeleteUser(Email);
            ExpectError(System.Net.HttpStatusCode.NotFound, () => OrgAdminClient.GetUserInfo(Email));
        }