public void GetFileCountByLocationTest()
        {
            //arrange
            ISharePointUploader fetcher = new SharePointUploader (
                _testUserId,
                _testPassword,
                _testBaseUrl
            );

            //act
            var count = fetcher.GetFileCountByLocation(_testLibrary);

            //assert
            Assert.AreEqual(count, 4);
        }