Need one help with MRUnit. I am adding my config file to MapReduceDriver as below.
conf = mapReduceDriver.getConfiguration();
conf.addResource("path_to_config.xml");
When reducer class is trying to access the the property in setUp() mehtod, its not getting the values from the passed in configuration file.
Configuration conf = context.getConfiguration();
String appNameListStr = conf.get("CODE.MAPPING");
// this appNameListStr is returned as null;
Any suggestions/hints on this.