-
Notifications
You must be signed in to change notification settings - Fork 164
Add tests chapter08 v8 #93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
} | ||
|
||
[TestMethod] | ||
public void CompareTo_ObjLargerThanThis_Return1() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test and the one above appear to have the same condition name. One should be renamed
// Split the assigned value into | ||
// first and last names | ||
string[] names; | ||
names = value.Split(new char[] { ' ' }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did the original not combine the declaration and assignment?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It did not. I lifted the Name property from a previous listing. Other properties were not included in the listing so I didn't have to make a book update. So I can change the property to an override above as well.
No description provided.