Java Unit testing using JUnit @RunWith(Suite.class)
As developers we should start writing unit test cases, to be sure the unit of codes we have written works fine. Along with unit testing we can write functional test cases to be ensure our functionality works as expected. In this blog post i’m planing to explain how i used JUnit and selenium for an external OAuth login module. In my module I needed to support set of external account from different OAuth providers, such as google, facebook, microsoft etc … This module is responsible for provide a valid access token for different provider from an API exposed to external systems....