-
Notifications
You must be signed in to change notification settings - Fork 1.3k
add test 606 #7
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
add test 606 #7
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,4 +38,12 @@ public void test2(){ | |
System.out.println("Test2"); | ||
assertEquals("1(2()(4))(3)", test.tree2str(t)); | ||
} | ||
@Test | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Leave a blank line between tests please. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So, each time when I PR for a file and I need to close it for the second file that I want to PR? |
||
public void test3(){ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please have a space between |
||
t= new TreeNode(1); | ||
t.right = new TreeNode(2); | ||
t.right.right = new TreeNode(3); | ||
System.out.println("Test3"); | ||
assertEquals("1()(2()(3))", test.tree2str(t)); | ||
} | ||
} |
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.
Please leave a blank line in between different functions.