View Javadoc

1   package org.apache.onami.test.mock.framework;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.onami.test.annotation.MockObjType;
23  import org.apache.onami.test.mock.MockEngine;
24  import org.easymock.EasyMock;
25  
26  /**
27   * Specifies the Easy-Mock Framework.
28   *
29   * @see MockEngine
30   */
31  public class EasyMockFramework
32      implements MockEngine
33  {
34  
35      /**
36       * {@inheritDoc}
37       */
38      public void resetMock( Object... objects )
39      {
40          EasyMock.reset( objects );
41      }
42  
43      /**
44       * {@inheritDoc}
45       */
46      public <T> T createMock( Class<T> cls, MockObjType type )
47      {
48          switch ( type )
49          {
50              case EASY_MOCK_NICE:
51                  return EasyMock.createNiceMock( cls );
52  
53              case EASY_MOCK_STRICT:
54                  return EasyMock.createStrictMock( cls );
55  
56              case EASY_MOCK_NORMAL:
57              case DEFAULT:
58                  return EasyMock.createMock( cls );
59  
60              default:
61                  throw new IllegalArgumentException( "Unsupported mock type '" + type + "' for Easy-Mock Framework." );
62          }
63      }
64  
65  }