public void ShouldMap_PlatformTypeDto_To_PlatformTypeViewModel()
        {
            var platformType = new PlatformTypeDto(1, "type");

            PlatformTypeViewModel result = platformType.ToViewModel();

            Assert.AreEqual(platformType.Id, result.Id);
            Assert.AreEqual(platformType.Type, result.Type);
        }