public void GetDefaultShellProfileId_Default_DoesNotReturnEmptyGuid()
        {
            var defaultValueProvider = new DefaultValueProvider();

            var defaultShellProfileId = defaultValueProvider.GetDefaultShellProfileId();

            defaultShellProfileId.Should().NotBeEmpty();
        }
        public void GetDefaultShellProfileId_Default_IdIsOneOfThePreInstalledShellProfiles()
        {
            var defaultValueProvider = new DefaultValueProvider();
            var shellProfiles        = defaultValueProvider.GetPreinstalledShellProfiles();

            var defaultShellProfileId = defaultValueProvider.GetDefaultShellProfileId();

            shellProfiles.Select(x => x.Id).Should().Contain(defaultShellProfileId);
        }