public void ReadFileTest_TeamFormReduce_ExpectContent()
 {
     var target = new EmbededFileReader();
     const string name = "TeamForm";
     const string mapName = "reduce.js";
     string actual = target.ReadFile(name, mapName);
     Assert.IsFalse(string.IsNullOrEmpty(actual));
 }
 public void ReadFileTest_SeriesStandingsMap_ExpectContent()
 {
     var target = new EmbededFileReader();
     const string name = "SeriesStandings";
     const string mapName = "map.js";
     string actual = target.ReadFile(name, mapName);
     Assert.IsFalse(string.IsNullOrEmpty(actual));
 }