Examples of GetSupportingEvidenceRequest


Examples of org.openbel.framework.ws.model.GetSupportingEvidenceRequest

    }

    private void validateStatementCount(final KamEdge edge, final int sc) {
        assertThat(edge, is(not(nullValue())));

        GetSupportingEvidenceRequest evreq = factory
                .createGetSupportingEvidenceRequest();
        evreq.setKamEdge(edge);
        GetSupportingEvidenceResponse evres = webAPI.getSupportingEvidence(evreq);

        List<BelStatement> statements = evres.getStatements();
        assertThat(statements.size(), is(sc));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.