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

            laptopBattery.Charge(60);
            Assert.AreEqual(100, laptopBattery.CurrentChargePercentage);
        }