Open nadvolod opened 4 years ago
I thought we decided that was a feature, not a bug since it was going to be all handled by ENV.
you could just do:
System.getEnv("SAUCE_USERNAME")
What is the use case for getting it? We should be abstracting everything you can do with it...
@titusfortner I think the Set can be private. But the Get can be public. Use Cases:
getSauceAccessKey()
and getSauceUsername()
to configure my mobile caps, but couldn't. Yes, I could do this System.getEnv("SAUCE_USERNAME")
, but why when it's already inside one of our objects?getSauceAccessKey()
and getSauceUsername()
? Maybe for reporting purposes?
I'm trying to use these methods in one of my tests to read the values but they are private. A hinderance to users I believe.