public void TestMethod1()
        {
            var laptopBattery = new LaptopBatteryReal();

            laptopBattery.Charge(60);
            Assert.AreEqual(100, laptopBattery.CurrentChargePercentage);
        }
Ejemplo n.º 2
0
 public Laptop(Cpu cpu, Ram ram, IEnumerable <HardDrive> hardDrives, VideoCard videoCard, LaptopBatteryReal laptopBatery)
     : base(cpu, ram, hardDrives, videoCard)
 {
     this.laptopBatery = laptopBatery;
 }
Ejemplo n.º 3
0
 public Laptop(Cpu cpu, Ram ram, IEnumerable<HardDrive> hardDrives, VideoCard videoCard, LaptopBatteryReal laptopBatery)
     : base(cpu, ram, hardDrives, videoCard)
 {
     this.laptopBatery = laptopBatery;
 }