コード例 #1
0
        public void GetSasReturnInNotEmpty()
        {
            var getsas = new GetSas();
            var result = getsas.Do();

            Assert.NotEmpty(result);
        }
コード例 #2
0
        public static async Task <IActionResult> Run(
            [HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req,
            ILogger log)
        {
            string responseMessage = new GetSas().Do();

            return(new OkObjectResult(responseMessage));
        }
コード例 #3
0
        public void DoIsReadAndWritePermission()
        {
            var sas = new GetSas().Do();

            Assert.Contains("&sp=rl", sas);
        }
コード例 #4
0
        public void GetSasDoIsASAS()
        {
            var sas = new GetSas().Do();

            Assert.Contains("?sv=", sas);
        }
コード例 #5
0
        public void GetSasDoNotEmpty()
        {
            var theresas = new GetSas().Do();

            Assert.NotEmpty(theresas);
        }