From 26519a0588350fe2a1b002400bc4e55391f284cb Mon Sep 17 00:00:00 2001 From: Ellie Kelsch Date: Tue, 11 Jul 2023 16:40:06 +0100 Subject: [PATCH] feat: cleanup --- .../v3/clients/OrganisationClientTest.java | 72 ------------------- 1 file changed, 72 deletions(-) delete mode 100644 src/test/java/com/spotify/github/v3/clients/OrganisationClientTest.java diff --git a/src/test/java/com/spotify/github/v3/clients/OrganisationClientTest.java b/src/test/java/com/spotify/github/v3/clients/OrganisationClientTest.java deleted file mode 100644 index 2fabc1b9..00000000 --- a/src/test/java/com/spotify/github/v3/clients/OrganisationClientTest.java +++ /dev/null @@ -1,72 +0,0 @@ -/*- - * -\-\- - * github-api - * -- - * Copyright (C) 2016 - 2020 Spotify AB - * -- - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * -/-/- - */ - -package com.spotify.github.v3.clients; - -import static com.google.common.io.Resources.getResource; -import static com.spotify.github.v3.clients.GitHubClient.LIST_TEAMS; -import static java.nio.charset.Charset.defaultCharset; -import static java.util.concurrent.CompletableFuture.completedFuture; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.core.Is.is; -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.ArgumentMatchers.eq; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.when; - -import com.google.common.io.Resources; -import com.spotify.github.jackson.Json; -import com.spotify.github.v3.Team; -import com.spotify.github.v3.orgs.requests.TeamCreate; -import java.io.IOException; -import java.util.List; -import java.util.concurrent.CompletableFuture; -import okhttp3.Headers; -import okhttp3.Response; -import okhttp3.ResponseBody; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mockito.ArgumentCaptor; -import org.powermock.core.classloader.annotations.PrepareForTest; -import org.powermock.modules.junit4.PowerMockRunner; - -@RunWith(PowerMockRunner.class) -@PrepareForTest({ Headers.class, ResponseBody.class, Response.class}) -public class OrganisationClientTest { - - private GitHubClient github; - - private OrganisationClient organisationClient; - - private Json json; - - private static String getFixture(String resource) throws IOException { - return Resources.toString(getResource(OrganisationClientTest.class, resource), defaultCharset()); - } - - @Before - public void setUp() { - github = mock(GitHubClient.class); - organisationClient = new OrganisationClient(github, "github"); - json = Json.create(); - when(github.json()).thenReturn(json); - } -}