Class TestConfig
- java.lang.Object
-
- com.snowflake.connectors.common.assertions.configurationRepository.TestConfig
-
public class TestConfig extends Object
Test implementation of a connector configuration entry.
-
-
Constructor Summary
Constructors Constructor Description TestConfig(boolean flag, String stringConfig, int intConfig)
Creates a newTestConfig
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getFlag()
Returns the test boolean value.int
getIntConfig()
Returns the test int value.String
getStringConfig()
Returns the test string value.int
hashCode()
-
-
-
Constructor Detail
-
TestConfig
public TestConfig(boolean flag, String stringConfig, int intConfig)
Creates a newTestConfig
.- Parameters:
flag
- boolean valuestringConfig
- string valueintConfig
- int value
-
-
Method Detail
-
getFlag
public boolean getFlag()
Returns the test boolean value.- Returns:
- test boolean value
-
getStringConfig
public String getStringConfig()
Returns the test string value.- Returns:
- test string value
-
getIntConfig
public int getIntConfig()
Returns the test int value.- Returns:
- test int value
-
-