Пример #1
0
        public void BaseCommandToKnownSystemTest(DiscImageCreator.Command command, KnownSystem?expected)
        {
            KnownSystem?actual = DiscImageCreator.Converters.ToKnownSystem(command);

            Assert.Equal(expected, actual);
        }
Пример #2
0
        public void BaseCommandToMediaTypeTest(DiscImageCreator.Command command, MediaType?expected)
        {
            MediaType?actual = DiscImageCreator.Converters.ToMediaType(command);

            Assert.Equal(expected, actual);
        }