When I do 'git clone https://github.com/snikhil0/avro-mr.git; cd avro-mr; ant test', I see:
[junit] Running com.telenav.logshed.collector.muxdemux.MuxDemuxRunnableTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 12.637 sec
BUILD SUCCESSFUL
Finally, Nikhil suggested above that your problem is in
MuxDemuxJob.java, where you set properties on the JobConf after
creating the Job. The AvroJob methods should instead be called before
the Job is constructed.
Doug
