Skip to content

Commit fc4fb75

Browse files
committed
Add a test for getDescription
1 parent a0d7508 commit fc4fb75

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

dumper/app/src/test/java/com/google/edwmigration/dumper/application/dumper/connector/snowflake/SnowflakeLiteConnectorTest.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,15 @@ public void getDefaultFileName_success() {
3939
assertTrue(name, name.contains("lite"));
4040
}
4141

42+
@Test
43+
public void getDescription_success() {
44+
45+
String description = connector.getDescription();
46+
47+
assertTrue(description, description.contains("lite"));
48+
assertTrue(description, description.contains("Snowflake"));
49+
}
50+
4251
@Test
4352
public void validate_databaseFlag_throwsException() {
4453
ImmutableList<String> list =

0 commit comments

Comments
 (0)