Package com.jcabi.github

Examples of com.jcabi.github.Release.assets()


     */
    @Test
    public void fetchesRelease() throws Exception {
        final Release rel = release();
        MatcherAssert.assertThat(
            rel.assets().get(1).release(),
            Matchers.is(rel)
        );
    }

    /**
 
View Full Code Here


     */
    @Test
    public void fetchesNumber() throws Exception {
        final Release rel = release();
        MatcherAssert.assertThat(
            rel.assets().get(1).number(),
            Matchers.is(1)
        );
    }

    /**
 
View Full Code Here

     */
    @Test
    public void fetchesRelease() throws Exception {
        final Release rel = release();
        MatcherAssert.assertThat(
            rel.assets().release(),
            Matchers.is(rel)
        );
    }

    /**
 
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.