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

can_get_JSON_Result_With_Users() private method

private can_get_JSON_Result_With_Users ( ) : void
return void
        public void can_get_JSON_Result_With_Users()
        {
            //arrange

            //act
            JsonResult result = controller.GetUsers("aa");
            List<string> list = (List<string>)result.Data;

            //assert
            Assert.IsNotNull(result.Data);
            Assert.AreEqual(1, list.Count);
        }