Examples of JobProvider


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
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.