Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Vector<?> getListOfSpecificationLocations(String repositoryUID, String systemUnderTestName)
  • Vector<Object> getSpecification(Vector<Object> specificationParams);
  • Vector<Object> getSpecifications(Vector<Object> systemUnderTestParams, Vector<Object> repositoryParams);
  • Vector<Vector<String>> getListOfSpecificationLocations(String repositoryUID, String systemUnderTestName) : Returns a list of arrays giving Specification Definitions of the form 

    No Format
    Return : [RepositoryClass, RepositoryBaseTestURL, Username, Password, SpecificationName]
  • Vector<Object> createSpecification(Vector<Object> specificationParams);
  • String updateSpecification(Vector<Object> oldSpecificationParams, Vector<Object> newSpecificationParams);
  • String removeSpecification(Vector<Object> specificationParams);
  • Vector<Object> getSpecificationHierarchy(Vector<Object> repositoryParams, Vector<Object> sutParams)

    No Format
    DocumentNode[Title, executable, canBeImplemented, Vector<DocumentNode> children]
    Code Block
    languagepy
    titleExample usage
    specRepo = cf._greenpepper.getAllSpecificationRepositories()[6];
    sut = cf._greenpepper.getSystemUnderTestsOfProject('VenteEncaissement')[4];
    doctree = cf._greenpepper.getSpecificationHierarchy(specRepo, sut);

...