• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2017 Mockito contributors
3  * This program is made available under the terms of the MIT License.
4  */
5 package org.mockitoinline;
6 
7 import org.junit.Test;
8 import org.mockito.internal.configuration.plugins.Plugins;
9 import org.mockito.internal.creation.bytebuddy.InlineByteBuddyMockMaker;
10 
11 import static org.junit.Assert.*;
12 
13 public class PluginTest {
14 
15     @Test
plugin_type_should_be_inline()16     public void plugin_type_should_be_inline() throws Exception {
17         assertTrue(Plugins.getMockMaker() instanceof InlineByteBuddyMockMaker);
18     }
19 
20 }
21