public void GetNamesOfBoard_ShouldReturnListOfBoards()
        {
            const string field = "name";

            _trelloEndpoints.GetBoardsWithParticularFields(field)
            // .TestBody("name is null", x => x[0].name == null)
            // .Assert("name is null");
            .TestBody("name not null", x => x[0].name != null)
            .Assert("name not null");
        }
 public void WhenTheFunctionToGetAreExecuted()
 {
     _responseContext = _trelloEndpoints.GetBoardsWithParticularFields(Name);
 }