mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-23 15:50:48 +00:00
More meaningful toString() method
Produce toString without dilligently adding it to every single class. Rely on heuristics to cut down the number of fields to show.
This commit is contained in:
@@ -14,6 +14,7 @@ import java.io.IOException;
|
||||
import java.net.URL;
|
||||
import java.util.*;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.concurrent.ExecutionException;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
/**
|
||||
@@ -854,6 +855,18 @@ public class AppTest extends AbstractGitHubApiTestBase {
|
||||
gitHub.listNotifications().markAsRead();
|
||||
}
|
||||
|
||||
/**
|
||||
* Just basic code coverage to make sure toString() doesn't blow up
|
||||
*/
|
||||
@Test
|
||||
public void checkToString() throws Exception {
|
||||
GHUser u = gitHub.getUser("jenkinsci");
|
||||
System.out.println(u);
|
||||
GHRepository r = u.getRepository("jenkins");
|
||||
System.out.println(r);
|
||||
System.out.println(r.getIssue(1));
|
||||
}
|
||||
|
||||
private void kohsuke() {
|
||||
String login = getUser().getLogin();
|
||||
Assume.assumeTrue(login.equals("kohsuke") || login.equals("kohsuke2"));
|
||||
|
||||
Reference in New Issue
Block a user