コード例 #1
0
 public void CreateFormsCategoryApplication()
 {
     CreateNewCategory.ClickOn();
     //CreateNewCategory.ClickOn();
     CategoryName.SendKeys(Constant.CategoryName);
     SaveCategory.ClickOn();
     softAssert.VerifyElementHasEqual(utility.TableCount(formsCategoryTableCount), Constant.tmpTableCount + 1);
 }
コード例 #2
0
 public async Task <IActionResult> CreateCategory(CreateNewCategory command)
 {
     return(Created("", await _mediator.Send(command)));
 }