CapRaffle.UnitTests.ParticipantControllerTests.Can_Get_Json_Result C# (CSharp) Method

Can_Get_Json_Result() private method

private Can_Get_Json_Result ( ) : void
return void
        public void Can_Get_Json_Result()
        {
            //Arrange

            //Act
            ActionResult result = controller.Create(participant);

            //Assert
            //Assert.AreEqual(true, result.Data);
            mock.Verify(m => m.SaveParticipant(participant), Times.Once());
        }