Skip to content

Commit

Permalink
skip tests that use mockito
Browse files Browse the repository at this point in the history
  • Loading branch information
mpeddada1 committed Apr 22, 2022
1 parent 520bd65 commit b53f3ce
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import org.junit.runners.JUnit4;

@RunWith(JUnit4.class)
public class BigtableEmulatorRuleTest {
public class ITBigtableEmulatorRuleTest {
@Rule public BigtableEmulatorRule bigtableRule = BigtableEmulatorRule.create();
private BigtableTableAdminBlockingStub tableAdminStub;
private BigtableBlockingStub dataStub;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
import org.mockito.stubbing.Answer;

@RunWith(JUnit4.class)
public class BigtableInstanceAdminClientTest {
public class BigtableInstanceAdminClientTests {
@Rule public MockitoRule mockitoRule = MockitoJUnit.rule().strictness(Strictness.WARN);

private static final String PROJECT_ID = "my-project";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import org.threeten.bp.Duration;

@RunWith(JUnit4.class)
public class BigtableInstanceAdminSettingsTest {
public class BigtableInstanceAdminSettingsTests {
@Test
public void testProjectName() throws Exception {
String projectId = "my-project";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
import org.threeten.bp.Instant;

@RunWith(JUnit4.class)
public class BigtableTableAdminClientTest {
public class BigtableTableAdminClientTests {
@Rule public final MockitoRule mockitoRule = MockitoJUnit.rule();

private static final String PROJECT_ID = "my-project";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import org.threeten.bp.Duration;

@RunWith(JUnit4.class)
public class BigtableTableAdminSettingsTest {
public class BigtableTableAdminSettingsTests {

@Test
public void testInstanceName() throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
import org.mockito.stubbing.Answer;

@RunWith(JUnit4.class)
public class BigtableDataClientTest {
public class BigtableDataClientTests {

@Rule public MockitoRule mockitoRule = MockitoJUnit.rule().strictness(Strictness.WARN);

Expand Down

0 comments on commit b53f3ce

Please sign in to comment.