public void GetStatusStudent_ShouldReturnInactive_AfterConflictWithPython()
        {
            var student = new Student(dialogue);

            student.IsConflict(new Python());
            student.GetStatus().Should().Be(Status.Inactive);
        }