@BeforeClass
  public static void beforeClass() {

    metaModel = APIClientLegacyIntegrationTestSuiteIT.get_metaModel();
    services = APIClientLegacyIntegrationTestSuiteIT.get_services();
    storyType = metaModel.getAssetType("Story");

    nameDef = storyType.getAttributeDefinition("Name");
    scopeDef = storyType.getAttributeDefinition("Scope");
    momentDef = storyType.getAttributeDefinition("Moment");
    attributesToQuery = new LinkedList<IAttributeDefinition>();
    attributesToQuery.add(nameDef);
    attributesToQuery.add(scopeDef);
    attributesToQuery.add(momentDef);
  }