public void Null_conditional_operators() { var student = new Student(null, "Perez"); Assert.AreEqual(Student.CheckName(student), "Unspecified"); }