Add unit tests for Configuration and ApiClient

This commit is contained in:
xhh
2015-05-26 16:41:04 +08:00
parent 62c8f9e1e2
commit a8c526efd5
4 changed files with 51 additions and 0 deletions

View File

@@ -75,6 +75,10 @@ public class ApiClient {
return this;
}
public boolean isDebug() {
return isDebug;
}
public ApiClient enableDebug() {
isDebug = true;
return this;