public void Init()
 {
     dummyFileLoader = new DummyFileLoader("C:\\placeholder")
     {
         Files =
         {
             ["a"] = new Dictionary <string, object>
             {
                 ["b"] = new Dictionary <string, object>
                 {
                     ["c"] =
                         new Dictionary <string, object>
                     {
                         ["d.txt"] =
                             "the letter d",
                         ["d.bin"] =
                             Encoding.Default.
                             GetBytes(
                                 "the letter d")
                     },
                     ["c.txt"] = "the letter c",
                     ["c.bin"] = Encoding.Default.GetBytes("the letter c")
                 },
                 ["b.txt"] = "the letter b",
                 ["b.bin"] = Encoding.Default.GetBytes("the letter b")
             },
             ["a.txt"] = "the letter a",
             ["a.bin"] = Encoding.Default.GetBytes("the letter a")
         }
     };
 }
 public void Init()
 {
     dummyFileLoader = new DummyFileLoader("C:\\placeholder");
 }