I'm working on a module that makes hibernate queries to the openmrs database and as I have been working on unit testing, I noticed a slight difference in case sensitivity of queries. In the module, the hibernate query searches the database for all observations that contain a disease/problem added concept. The parameters to the query include a list of diseases to search for and the query is case insensitive when searching the database for the specific diseases. However, when I am writing our unit tests, the testing harness is case sensitive.
I was wondering if this is something that is created due to how the test database is set up from the BaseConceptSensitiveTest class and if there is some way to make the test harness case insensitive also. I tried searching the dev list to see if this question has already been asked, as I don't want to waste anyone's time, but I was unable to find anything.
Thanks,
Jason