Esempio n. 1
0
        public Task <string> GetCreatorQueryAsyncTest(
            [PexAssumeUnderTest] GenericContractService target,
            GetCreatorFunction getCreatorFunction,
            BlockParameter blockParameter
            )
        {
            Task <string> result = target.GetCreatorQueryAsync(getCreatorFunction, blockParameter);

            Assert.IsNotNull(result);
            return(result);
        }
Esempio n. 2
0
 public Task <string> GetCreatorQueryAsync(GetCreatorFunction getCreatorFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetCreatorFunction, string>(getCreatorFunction, blockParameter));
 }