• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Mockito

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have controller class, abcRepository, abcService, abcServiceImplementation. abcRepository extends JPARepository. I have autowired abcService in controller class.

Now how can I use mockito to test my rest APIs with above structure.

Till now I tried and written test class with @Mock on AbcService and @InjectMock on controller, but while running getting error as controller as null.

What is the correct procedure to test rest api with above structure?

Please guide.
 
Sheriff
Posts: 5555
326
IntelliJ IDE Python Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello, welcome to the Ranch!

It's hard to get a grip on what you have got there. Perhaps an example would help?

Can you show us what you've got so far, what it is exactly you're trying to achieve, and exactly what problem you are facing?
 
Tej De
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have
1. Controller class abc.
2. AbcRepository which extend JPAREPOSITORY.
3. Interface as abcService to have CRUD operations.
4. Class AbcServiceImplementation to implement abcService, in that I have used for eg abcRepository.saveandflush().

In controller class, I have autowired abcService, and written APIs to perform crud operations.

All APIs are working.

How can I use mockito to test my rest APIs with above structure.

I am new to mockito. Please guide.

Thanks.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic