Package de.olivergierke.whoops

Source Code of de.olivergierke.whoops.ApplicationConfiguration$ArgumentAnswer

/*
* 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 de.olivergierke.whoops;

import static org.mockito.Matchers.*;
import static org.mockito.Mockito.*;

import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.ComponentScan.Filter;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Controller;

import de.olivergierke.whoops.domain.account.Account;
import de.olivergierke.whoops.domain.customer.Customer;
import de.olivergierke.whoops.repository.account.AccountRepository;
import de.olivergierke.whoops.repository.customer.CustomerRepository;

/**
* @author Oliver Gierke
*/
@Configuration
@ComponentScan(excludeFilters = { @Filter(Controller.class) })
class ApplicationConfiguration {

  @Bean
  public AccountRepository accountRepository() {

    AccountRepository repository = mock(AccountRepository.class);
    when(repository.save(any(Account.class))).thenAnswer(withArgument());
    return repository;
  }

  @Bean
  public CustomerRepository customerRepository() {
    CustomerRepository repository = mock(CustomerRepository.class);
    when(repository.save(any(Customer.class))).thenAnswer(withArgument());
    return repository;
  }

  private static <T> Answer<T> withArgument() {
    return new ArgumentAnswer<T>();
  }

  private static class ArgumentAnswer<T> implements Answer<T> {

    @SuppressWarnings("unchecked")
    public T answer(InvocationOnMock invocation) throws Throwable {
      return (T) invocation.getArguments()[0];
    }
  }
}
TOP

Related Classes of de.olivergierke.whoops.ApplicationConfiguration$ArgumentAnswer

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.