public void UpdateAurora_NoFilesSelected_NoFilesDownloaded()
        {
            var defaultAuroraInstallation = new AuroraInstallation(auroraVersion, installationPath);

            Assert.Throws <ArgumentException>(delegate { defaultAuroraInstallation.UpdateAurora(new Dictionary <string, string>()); });
        }
        public void UpdateAurora_NullFiles_ThrowsArgumentNullException()
        {
            var defaultAuroraInstallation = new AuroraInstallation(auroraVersion, installationPath);

            Assert.Throws <ArgumentNullException>(delegate { defaultAuroraInstallation.UpdateAurora(null); });
        }