public void PhoneToStringTest()
        {
            Platforms_1.PhoneContact user = new Platforms_1.PhoneContact();
            user.ParseLine("Oleh:99999");
            string expected = "Name: Oleh - \tPhone Number: \t99999";

            Assert.AreEqual(expected, user.ToString());
        }