public void isLicenseOver() { //arrange Commercial commercial = new Commercial("Drweb", "kasperskiy", 1000, new DateTime(2018, 02, 17), 50); bool expected = true; //act bool actual = commercial.isLicenseOver(); //assert Assert.AreEqual(expected, actual); }