package protected test classes - Pulsar binder

This commit is contained in:
Soby Chacko
2023-11-02 15:10:03 -04:00
parent 4b67440c27
commit 462d42b3ad
8 changed files with 8 additions and 8 deletions

View File

@@ -44,7 +44,7 @@ import static org.assertj.core.api.Assertions.assertThatNoException;
* @author Soby Chacko
* @author Chris Bono
*/
public class ConsumerConfigPropertiesTests {
class ConsumerConfigPropertiesTests {
@Test
void basePropsCanBeExtractedToMap() {

View File

@@ -40,7 +40,7 @@ import static org.assertj.core.api.Assertions.assertThatNoException;
*
* @author Chris Bono
*/
public class PulsarBinderConfigurationPropertiesTests {
class PulsarBinderConfigurationPropertiesTests {
@Test
void partitionCountProperty() {

View File

@@ -66,7 +66,7 @@ import static org.assertj.core.api.Assertions.assertThat;
*
* @author Soby Chacko
*/
public class PulsarBinderTests extends
class PulsarBinderTests extends
PartitionCapableBinderTests<AbstractPulsarTestBinder, ExtendedConsumerProperties<PulsarConsumerProperties>, ExtendedProducerProperties<PulsarProducerProperties>>
implements PulsarTestContainerSupport {

View File

@@ -45,7 +45,7 @@ import static org.mockito.Mockito.when;
* @author Soby Chacko
* @author Chris Bono
*/
public class PulsarBinderUtilsTests {
class PulsarBinderUtilsTests {
@Nested
class SubscriptionNameTests {

View File

@@ -42,7 +42,7 @@ import static org.assertj.core.api.Assertions.assertThatNoException;
*
* @author Chris Bono
*/
public class PulsarExtendedBindingPropertiesTests {
class PulsarExtendedBindingPropertiesTests {
@Test
void producerProperties() {

View File

@@ -33,7 +33,7 @@ import org.springframework.pulsar.support.header.PulsarHeaderMapper;
* @author Soby Chacko
* @author Chris Bono
*/
public class PulsarTestBinder extends AbstractPulsarTestBinder {
class PulsarTestBinder extends AbstractPulsarTestBinder {
@SuppressWarnings({ "unchecked" })
PulsarTestBinder(PulsarTopicProvisioner pulsarTopicProvisioner, PulsarTemplate<?> pulsarTemplate,

View File

@@ -27,7 +27,7 @@ import org.testcontainers.utility.DockerImageName;
* @author Chris Bono
*/
@Testcontainers(disabledWithoutDocker = true)
public interface PulsarTestContainerSupport {
interface PulsarTestContainerSupport {
PulsarContainer PULSAR_CONTAINER = new PulsarContainer(getPulsarImage());

View File

@@ -38,7 +38,7 @@ import static org.mockito.Mockito.verify;
/**
* @author Soby Chacko
*/
public class PulsarTopicProvisionerTests {
class PulsarTopicProvisionerTests {
@Test
void provisionThroughProducerBindingWithDefaultPartitioning() {