public void IsSuccess_BasicResponse的Code为SUCCESS_返回True()
        {
            //arrange
            BasicResponse response = new BasicResponse();

            //act
            response.Code = "SUCCESS";

            //assert
            Assert.IsTrue(response.IsSuccess);
        }
        public void IsSuccess_BasicResponse的Code为空_返回False()
        {
            //arrange
            BasicResponse response = new BasicResponse();

            //act
            response.Code = "";
            
            //assert
            Assert.IsFalse(response.IsSuccess);
        }