when you write a test for the logic layer, you mock the data access layer that's used, because you don't want the test cases to be dependent on each other.
But what about lookup tables ? lets say you have a logic that calculcates value depending on size in Sizes table:
Small 1
Medium 2
Large 3
Now, do you mock this table somehow in your test? using a dictionary for ex.? when the table changes (a real config table will contain hundreds of values, and sometimes will not be in simple key-value form) how do you keep code and table insync?
or you bend this rule... and get values directly from database? but what if tomorrow i change the data source? or i cannot access the database somehow? aren't test cases supposed to run in whatever conditions ?
what's the best approach?