Currently the code starts like this
Directory directory = DirectoryServiceFactory.getDirectoryService();
directory.groups().get(someEmail).execute();
I am not sure how to write test case for it or should i even write a test case. What exactly it means to write a test case here .
In theory, you should only test your own code. If you have to test your framework, you are using the wrong framework. Something remote like connection to and using a Google API is something you would only test in an integration test, but not a unit test.
So, in this case, I would try to encapsulate your own code in a way that allows you to put mock versions of the classes that connect the the Google API and do something there into it, for example by writing a
GoogleAPIConnector Interface
or something like this:You would create one "real" implementation of this interface, that actually connects to Google and does the real work. Testing this would be the scope of an integration test. Would probably look somehow like this...
For unit tests, you would instead use mock object that returns "fake" data instead of the real deal, allowing you to run tests with the assumption that the google connection works, testing all the stuff you wrote around it, for example (with Mockito):
This way, your unit tests will be fast and not depend on the Google API (if your network is down, they will still succeed). Your integration tests are slower and depend on the Google API, but as they don't have to run as often (and don't have to fail the build), that's ok.