public void It_should_create_all_non_existing_dirs_after_mkdir_invocation()
 {
     OdbDirectory.Mkdirs(NonExistingDbName);
     Assert.That(Directory.Exists("folder"), Is.True);
     Assert.That(Directory.Exists("folder\\subfolder"), Is.True);
 }
 public void It_should_do_nothing_when_want_to_mkdirs_for_existing_path()
 {
     OdbDirectory.Mkdirs(ExistingDbName);
     Assert.Pass();
 }