public void CollectionName_CannotBeEmpty() { var na = Client.GetLocalDB(testPath)[""]; }
public void CollectionName_CannotBeNull() { var na = Client.GetLocalDB(testPath)[null]; }
public void CollectionName_OnlyAlphanumericAndUnderScoreSupported() { var na = Client.GetLocalDB(testPath)["!?$@\filesystem.*"]; }