public void ShouldGetPlatformFromDesiredCapabilities() { var platform = new Platform(PlatformType.Windows); var capabilities = new DesiredCapabilities(null, null, platform); Assert.AreEqual(platform.PlatformType, capabilities.Platform.PlatformType); }