Package sagan.team.support

Source Code of sagan.team.support.TeamServiceTests

package sagan.team.support;

import sagan.team.MemberProfile;
import saganx.AbstractIntegrationTests;

import org.junit.Test;

import org.springframework.beans.factory.annotation.Autowired;

import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;

public class TeamServiceTests extends AbstractIntegrationTests {

    @Autowired
    private TeamService teamService;

    @Test
    public void newlyCreatedTeamMembersAreHiddenByDefault() throws Exception {
        MemberProfile jdoe = teamService.createOrUpdateMemberProfile(123L, "jdoe", "http://avatarurl.com", "John Doe");
        assertThat(jdoe.isHidden(), is(true));
    }
}
TOP

Related Classes of sagan.team.support.TeamServiceTests

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.