Package by.fly.repository

Source Code of by.fly.repository.OrganizationRepositoryTest

package by.fly.repository;

import by.fly.model.Organization;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.annotation.Rollback;

public class OrganizationRepositoryTest extends AbstractBaseTest {

    @Autowired
    OrganizationRepository organizationRepository;

    @Test
    @Rollback(false)
    public void createDefaultOrganization() {
        Organization organization = new Organization("fly");
        organization.setInn("111");
        organizationRepository.save(organization);
    }

}
TOP

Related Classes of by.fly.repository.OrganizationRepositoryTest

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.