Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@johngorithm
Created March 12, 2019 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johngorithm/7979a9c71c29f30a842ada00827cdff8 to your computer and use it in GitHub Desktop.
Save johngorithm/7979a9c71c29f30a842ada00827cdff8 to your computer and use it in GitHub Desktop.
package com.jxw.graphql.test_utils;
import com.jxw.graphql.app.DemoApplication;
public class TestDemoApplication extends DemoApplication {
private String baseUrl;
@Override
public String getBaseUrl() {
return baseUrl;
}
public void setBaseUrl(String url) {
this.baseUrl = url;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment