コード例 #1
0
        public void TestProjectController_ProjectTransferVerifyEmail_ShouldReturnEmptyResult(string httpMethod, string email)
        {
            SetUpProjectControllerForTesting(httpMethod);
            projectController.CurrentUser = user;

            EmptyResult result = projectController.ProjectTransferVerfiyEmail(email);

            Assert.IsInstanceOf <EmptyResult>(result);
            Assert.That(result, Is.Not.EqualTo(null));
        }