1*21373fa4SWill Schurman package host.exp.exponent.utils
2*21373fa4SWill Schurman 
3*21373fa4SWill Schurman import host.exp.exponent.generated.ExponentBuildConstants
4*21373fa4SWill Schurman import org.json.JSONObject
5*21373fa4SWill Schurman 
6*21373fa4SWill Schurman object TestConfig {
getnull7*21373fa4SWill Schurman   fun get(): JSONObject {
8*21373fa4SWill Schurman     return try {
9*21373fa4SWill Schurman       JSONObject(ExponentBuildConstants.TEST_CONFIG)
10*21373fa4SWill Schurman     } catch (e: Throwable) {
11*21373fa4SWill Schurman       JSONObject()
12*21373fa4SWill Schurman     }
13*21373fa4SWill Schurman   }
14*21373fa4SWill Schurman }
15