Package com.heroku.api.request.domain

Examples of com.heroku.api.request.domain.DomainAdd


    }

    @Test(dataProvider = "app", retryAnalyzer = InternalServerErrorAnalyzer.class)
    public void testAddDomain(App app) {
        String domainName = randomDomain();
        Domain addedDomain = connection.execute(new DomainAdd(app.getName(), domainName), apiKey);
        assertEquals(addedDomain.getDomain(), domainName);
    }
View Full Code Here


    }

    @Test(dataProvider = "app", retryAnalyzer = InternalServerErrorAnalyzer.class)
    public void testDomainList(App app) {
        String domainName = randomDomain();
        connection.execute(new DomainAdd(app.getName(), domainName), apiKey);
        assertDomainIsPresent(app, domainName);
    }
View Full Code Here

    }

    @Test(dataProvider = "app", retryAnalyzer = InternalServerErrorAnalyzer.class)
    public void testRemoveDomain(App app) {
        String domainName = randomDomain();
        connection.execute(new DomainAdd(app.getName(), domainName), apiKey);
        connection.execute(new DomainRemove(app.getName(), domainName), apiKey);
        assertDomainNotPresent(app, domainName);
    }
View Full Code Here

TOP

Related Classes of com.heroku.api.request.domain.DomainAdd

Copyright © 2018 www.massapicom. 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.