This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package friendsofmine | |
| import friendsofmine.repositories.ActiviteRepository | |
| import org.springframework.data.repository.PagingAndSortingRepository | |
| import spock.lang.Specification | |
| /** | |
| * Created by franck on 18/10/2016. | |
| */ | |
| class ActiviteServiceTest extends Specification { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package friendsofmine | |
| import friendsofmine.repositories.ActiviteRepository | |
| import org.springframework.beans.factory.annotation.Autowired | |
| import org.springframework.boot.test.context.SpringBootTest | |
| import org.springframework.data.repository.PagingAndSortingRepository | |
| import org.springframework.test.context.ContextConfiguration | |
| import spock.lang.Specification | |
| import javax.validation.ConstraintViolationException |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package friendsofmine | |
| import spock.lang.Specification | |
| import spock.lang.Unroll | |
| import javax.validation.Validation | |
| import javax.validation.Validator | |
| import javax.validation.ValidatorFactory | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package friendsofmine | |
| import spock.lang.Specification | |
| import spock.lang.Unroll | |
| import javax.validation.Validation | |
| import javax.validation.Validator | |
| import javax.validation.ValidatorFactory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package friendsofmine | |
| import friendsofmine.repositories.ActiviteRepository | |
| import org.springframework.beans.factory.annotation.Autowired | |
| import org.springframework.boot.test.context.SpringBootTest | |
| import org.springframework.data.repository.PagingAndSortingRepository | |
| import org.springframework.test.context.ContextConfiguration | |
| import spock.lang.Specification | |
| import javax.validation.ConstraintViolationException |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package friendsofmine | |
| import friendsofmine.repositories.ActiviteRepository | |
| import org.springframework.data.repository.PagingAndSortingRepository | |
| import spock.lang.Specification | |
| /** | |
| * Created by franck on 18/10/2016. | |
| */ | |
| class ActiviteServiceTest extends Specification { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package friendsofmine | |
| import friendsofmine.repositories.ActiviteRepository | |
| import org.springframework.beans.factory.annotation.Autowired | |
| import org.springframework.boot.test.context.SpringBootTest | |
| import org.springframework.data.repository.PagingAndSortingRepository | |
| import org.springframework.test.context.ContextConfiguration | |
| import org.springframework.transaction.annotation.Transactional | |
| import spock.lang.Specification |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package friendsofmine | |
| import org.springframework.beans.factory.annotation.Autowired | |
| import org.springframework.boot.test.context.SpringBootTest | |
| import org.springframework.test.context.ContextConfiguration | |
| import org.springframework.transaction.annotation.Transactional | |
| import spock.lang.Specification | |
| import javax.validation.ConstraintViolationException |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package friendsofmine | |
| import spock.lang.Specification | |
| /** | |
| * Created by franck on 19/10/2016. | |
| */ | |
| class BootstrapTest extends Specification { | |
| void "test bootstrap init method call the initialisation service"() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package friendsofmine | |
| import spock.lang.Specification | |
| /** | |
| * Created by franck on 20/10/2016. | |
| */ | |
| class ActiviteControllerTest extends Specification { | |
| private ActiviteService activiteService |