Represents the platform on which tests are to be run.
 public void ShouldGetPlatformFromDesiredCapabilities()
 {
     var platform = new Platform(PlatformType.Windows);
     var capabilities = new DesiredCapabilities(null, null, platform);
     Assert.AreEqual(platform.PlatformType, capabilities.Platform.PlatformType);
 }