public void GetCollections()
        {
            var filePath    = UTHelpers.Up();
            var ds          = new DataStore(filePath);
            var apiSettings = Options.Create(new ApiSettings());

            var controller = new DynamicController(ds, apiSettings);

            var collections = controller.GetCollections();

            Assert.Equal(3, collections.Count());

            UTHelpers.Down(filePath);
        }