Esempio n. 1
0
        public void APS4sDefaultResolutionShouldBe1080p()
        {
            var ps4 = new PlayStation4();

            Assert.AreEqual(1920, ps4.VideoResolution.Width);
            Assert.AreEqual(1080, ps4.VideoResolution.Height);
        }
Esempio n. 2
0
 public static void Main()
 {
     var ps4 = new PlayStation4();  
     ps4.RunStartupRoutine();
     
     Game massEffect = new MassEffect();
     ps4.InstallGame(massEffect);
     
     ps4.Play(massEffect);
 }
Esempio n. 3
0
        public static void Main()
        {
            var ps4 = new PlayStation4();

            ps4.StartUp();

            while (true)
            {
                Thread.Sleep(TimeSpan.FromMilliseconds(8));
            }
        }
Esempio n. 4
0
        public void APS4ShouldHaveAnHDMIConnectionByDefault()
        {
            var ps4 = new PlayStation4();

            Assert.AreEqual(expected: AVInterface.HDMI, actual: ps4.VideoConnectorType);
        }