GetCardsOfType() публичный Метод

Gets cards for type
public GetCardsOfType ( string type ) : CardsCollection
type string
Результат CardsCollection
 public void TestGetCardsOfType()
 {
     var model = new ViewModel(_mingleHost, MINGLE_INTEGRATION_USER, MINGLE_INTEGRATION_PASSWORD);
     model.SelectProject("test");
     var count = model.GetCardsOfType("Feature").Count;
     Assert.AreEqual(10, count);
 }