@InjectMocks will not instantiate or mock your class. This annotation is used for injecting mocks into this field.
If you want to test serviceImpl you will need to mock in this way:
@Mock
private OrderIF order;
@InjectMocks
private Service reqService = new ServiceImpl();
To make it work you either need to use runner or MockitoAnnotations.initMocks(this); in @Before method.