Guest User

Untitled

a guest
Dec 11th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class ConfigurationLoaderTest extends Specification {
  2. def "loadConfigurationTest" (){
  3. given:
  4. ConfigurationLoader configLoader = Stub()
  5. when:
  6. def rpcApiInfo= configLoader.loadConfiguration();
  7. then:
  8. rpcApiInfo != null
  9. }
  10. }
Add Comment
Please, Sign In to add comment