Package securesocial.core

Examples of securesocial.core.IdentityId


    public void should_return_default_user() throws Exception {
        final FakeApplication fakeApplication = Helpers.fakeApplication();
        running(fakeApplication, new Runnable() {
            @Override
            public void run() {
                final Identity identity = userService.doFind(new IdentityId("test","icule"));
                assertThat(identity).isNotNull();
                assertThat(identity).isEqualTo(defaultIdentity);
            }
        });
    }
View Full Code Here

TOP

Related Classes of securesocial.core.IdentityId

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.