Need to test .properties one by one in every possibility?

Posted by ??? Shengyuan Lu on Programmers See other posts from Programmers or by ??? Shengyuan Lu
Published on 2012-03-18T03:29:05Z Indexed on 2012/03/18 18:21 UTC
Read the original article Hit count: 206

Filed under:
|

For example, there are some key-value configuration in .properties file. Such like someFeatureEnable=true. It must be bool type value which will be parsed by framework, in my case it's typical Java Spring configuration. Spring will handle the configuration and throw Exception when users set someFeatureEnable=123.

My question is: if there many properties in .properties file, Is it worth testing them one by one? It's quite troublesome and low priority. The .properties file is always configured by tech administrator stuff. Limited chances that they will mess up the configuration.

Thanks!

© Programmers or respective owner

Related posts about java

Related posts about testing