Package com.heroku.api

Examples of com.heroku.api.LoginVerification


    }

    @Test(groups = "integration")
    public void testValidUsernameAndPassword() throws IOException {
        IntegrationTestConfig.TestUser testUser = CONFIG.getDefaultUser();
        LoginVerification verification = connection.execute(new BasicAuthLogin(testUser.getUsername(), testUser.getPassword()), testUser.getApiKey());
        assertEquals(verification.getEmail(), testUser.getUsername());
    }
View Full Code Here

TOP

Related Classes of com.heroku.api.LoginVerification

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.