public void CreateCardInsideExistingList_ShouldReturnNewCard() { var listId = "60981703c97b4a7aa03edd9f"; // Exams preparation list var cardName = "Pay attention to compiler labs"; _trelloEndpoints.CreateCard(listId, cardName) .TestBody("check name", x => x.name == cardName) .Assert("check name"); }
public void WhenTheFunctionToCreateCardAreExecuted() { _responseContext = _trelloEndpoints.CreateCard(ListId, CardName); }