Package org.zkybase.service.impl

Source Code of org.zkybase.service.impl.EnvironmentServiceImplTests

/*
* Copyright 2011-2012 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.zkybase.service.impl;

import static org.mockito.Matchers.anyLong;
import static org.mockito.Mockito.when;

import java.util.Iterator;

import org.junit.Before;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.neo4j.helpers.collection.ClosableIterable;
import org.springframework.data.neo4j.repository.GraphRepository;
import org.zkybase.model.Environment;
import org.zkybase.repository.EnvironmentRepository;
import org.zkybase.service.impl.AbstractCIService;
import org.zkybase.service.impl.EnvironmentServiceImpl;

/**
* @author Willie Wheeler (willie.wheeler@gmail.com)
*/
public class EnvironmentServiceImplTests extends AbstractEntityServiceImplTests<Environment> {
  @InjectMocks private EnvironmentServiceImpl environmentService;
  @Mock private EnvironmentRepository environmentRepo;
 
  // Test objects
  @Mock private Environment environment;
  @Mock private ClosableIterable<Environment> environments;
  @Mock private Iterator<Environment> environmentIterator;
 
  /* (non-Javadoc)
   * @see org.zkybase.service.impl.AbstractEntityServiceImplTests#getRepository()
   */
  @Override
  protected GraphRepository<Environment> getRepository() { return environmentRepo; }

  /* (non-Javadoc)
   * @see org.zkybase.service.impl.AbstractEntityServiceImplTests#getService()
   */
  @Override
  protected AbstractCIService<Environment> getService() { return environmentService; }
 
  /**
   * @throws Exception
   */
  @Before
  public void setUp() throws Exception {
    this.environmentService = new EnvironmentServiceImpl();
   
    MockitoAnnotations.initMocks(this);
   
    when(environmentRepo.findOne(anyLong())).thenReturn(environment);
    when(environmentRepo.findAll()).thenReturn(environments);
    when(environments.iterator()).thenReturn(environmentIterator);
  }

}
TOP

Related Classes of org.zkybase.service.impl.EnvironmentServiceImplTests

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.