Commit ab045070 authored by Greg Messner's avatar Greg Messner
Browse files

Minor code cleanup.

parent a9514049
......@@ -21,7 +21,7 @@ import org.junit.experimental.categories.Category;
* If any of the above are NULL, all tests in this class will be skipped.
*
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestAccessToken extends AbstractIntegrationTest {
// TEST_ACCESS_TOKEN must be defined to run this test
......
......@@ -26,7 +26,7 @@ import org.junit.runners.MethodSorters;
*
* If any of the above are NULL, all tests in this class will be skipped.
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestAvatarUpload extends AbstractIntegrationTest {
......
......@@ -34,7 +34,7 @@ import org.junit.runners.MethodSorters;
*
* If any of the above are NULL, all tests in this class will be skipped.
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestCommitsApi extends AbstractIntegrationTest {
......
......@@ -16,7 +16,7 @@ import org.junit.experimental.categories.Category;
* If any of the above are NULL, all tests in this class will be skipped.
*
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestDeployKeysApi extends AbstractIntegrationTest {
// The following needs to be set to your test repository
......
......@@ -27,7 +27,7 @@ import org.junit.experimental.categories.Category;
*
* If any of the above are NULL, all tests in this class will be skipped.
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestEventsApi extends AbstractIntegrationTest {
private static GitLabApi gitLabApi;
......
......@@ -26,7 +26,7 @@ import org.junit.runners.MethodSorters;
*
* If any of the above are NULL, all tests in this class will be skipped.
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestFileUpload extends AbstractIntegrationTest {
......
......@@ -21,7 +21,7 @@ import org.junit.experimental.categories.Category;
* If any of the above are NULL, all tests in this class will be skipped.
*
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestGitLabApi extends AbstractIntegrationTest {
// The following needs to be set to your test repository
......
......@@ -28,7 +28,7 @@ import org.junit.experimental.categories.Category;
*
* If any of the above are NULL, all tests in this class will be skipped.
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestGitLabApiException extends AbstractIntegrationTest {
private static final String TEST_PROJECT_NAME_DUPLICATE = "test-gitlab4j-create-project-duplicate";
......
......@@ -22,7 +22,7 @@ import org.junit.experimental.categories.Category;
*
* If any of the above are NULL, all tests in this class will be skipped.
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestGitLabLogin {
// The following needs to be set to your test repository
......
......@@ -34,7 +34,7 @@ import org.junit.experimental.categories.Category;
* If any of the above are NULL, all tests in this class will be skipped.
*
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestGroupApi extends AbstractIntegrationTest {
// The following needs to be set to your test repository
......
......@@ -18,7 +18,7 @@ import org.junit.experimental.categories.Category;
* If any of the above are NULL, all tests in this class will be skipped.
*
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestHealthCheckApi {
// The following needs to be set to your test repository
......
......@@ -21,7 +21,7 @@ import org.junit.experimental.categories.Category;
* If any of the above are NULL, all tests in this class will be skipped.
*
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestIgnoreCertificateErrors {
// The following needs to be set to your test repository
......
......@@ -58,7 +58,7 @@ import org.junit.experimental.categories.Category;
*
* If any of the above are NULL, all tests in this class will be skipped.
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestIssuesApi extends AbstractIntegrationTest {
private static GitLabApi gitLabApi;
......
......@@ -46,7 +46,7 @@ import org.junit.experimental.categories.Category;
* <p>
* If any of the above are NULL, all tests in this class will be skipped.
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestJobApi extends AbstractIntegrationTest {
private static GitLabApi gitLabApi;
......
......@@ -23,7 +23,7 @@ import org.junit.experimental.categories.Category;
* If any of the above are NULL, all tests in this class will be skipped.
*
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestNamespaceApi extends AbstractIntegrationTest {
private static GitLabApi gitLabApi;
......
......@@ -27,7 +27,7 @@ import org.junit.runners.MethodSorters;
*
* If any of the above are NULL, all tests in this class will be skipped.
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestNotesApi extends AbstractIntegrationTest {
......
......@@ -29,7 +29,7 @@ import org.junit.runners.MethodSorters;
*
* If any of the above are NULL, all tests in this class will be skipped.
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestNotificationSettingsApi extends AbstractIntegrationTest {
......
......@@ -30,7 +30,7 @@ import org.junit.runners.MethodSorters;
*
* NOTE: &amp;FixMethodOrder(MethodSorters.NAME_ASCENDING) is very important to insure that the tests are in the correct order
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestPager extends AbstractIntegrationTest {
......
......@@ -16,7 +16,7 @@ import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
public class TestPipelineApi extends AbstractIntegrationTest {
private static final String SCHEDULE_DESCRIPTION = "Test pipeline schedule - DELETE AFTER TEST";
......
......@@ -65,7 +65,7 @@ import org.junit.runners.MethodSorters;
*
* NOTE: &amp;FixMethodOrder(MethodSorters.NAME_ASCENDING) is very important to insure that the tests are in the correct order
*/
@Category(org.gitlab4j.api.IntegrationTest.class)
@Category(IntegrationTest.class)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestProjectApi extends AbstractIntegrationTest {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment