You have a test where you create a Set and you add 3 different instances to the set (new Person(“Simon”), new Person(“Victor”), new Person(“Peter”)) Then you assert that the set.size() returns 3, but the test is failing because the actual set size is 2 So the code is wrong, there is a bug somewhere… Do you know what could be the issue?
這題個人覺得有點問題...