Package hudson.scm.SubversionRepositoryStatus

Examples of hudson.scm.SubversionRepositoryStatus.JobProvider


        // GIVEN: a disabled project
        final AbstractProject project = mock(AbstractProject.class);
        when(project.isDisabled()).thenReturn(true);
       
        JobProvider jobProvider = new JobProvider() {
            public List<Job> getAllJobs() {
                return Collections.<Job>singletonList(project);
            }
        };
       
View Full Code Here

TOP

Related Classes of hudson.scm.SubversionRepositoryStatus.JobProvider

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.