Package models.auth

Source Code of models.auth.AuthAccountTest

package models.auth;

import models.BaseDataUnitTest;
import models.Member;
import models.ProviderType;
import org.junit.*;

/**
* Unit tests for {@link AuthAccount} domain object
* @author Sryl <cyril.lacote@gmail.com>
*/
public class AuthAccountTest extends BaseDataUnitTest {

    @Test
    public void find() {
        final String login = "ced";
        assertNotNull(AuthAccount.find(ProviderType.LinkIt, login));
    }

    @Test
    public void deleteForMember() {
        final Member member = Member.all().first();
        assertNotNull(AuthAccount.deleteForMember(member));
    }
}
TOP

Related Classes of models.auth.AuthAccountTest

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.