mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-13 08:21:20 +00:00
16 lines
550 B
Java
16 lines
550 B
Java
package org.kohsuke.github;
|
|
|
|
import org.junit.Test;
|
|
|
|
import static org.hamcrest.Matchers.*;
|
|
|
|
public class GHObjectTest extends org.kohsuke.github.AbstractGitHubWireMockTest {
|
|
|
|
@Test
|
|
public void test_toString() throws Exception {
|
|
GHOrganization org = gitHub.getOrganization(GITHUB_API_TEST_ORG);
|
|
assertThat(org.toString(),
|
|
containsString(
|
|
"login=github-api-test-org,location=<null>,blog=<null>,email=<null>,name=<null>,company=<null>,type=Organization,followers=0,following=0"));
|
|
}
|
|
} |