How about using enums(mapper int to string) and you don't need to unit test anything.
enum Days {Sat=1, Sun, Mon, Tue, Wed, Thu, Fri};
Now let's assume your mapper is used by some method that returns different results based on the mapper. Here is how I would test it.
- Programatically get all the values in the mapper.
- Iterate through each and call your method with that value.
- Assert after each response.
The example above would do well if you are loading something from filesystem that corresponds to your enum values or something similar. Your situation could vary.