We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24b403e commit 31426adCopy full SHA for 31426ad
sdk/src/test/java/com/google/cloud/dataflow/sdk/io/BigQueryIOTest.java
@@ -1734,6 +1734,13 @@ public void testTagWithUniqueIdsAndTableProjectNotNullWithNvp() {
1734
assertNotNull(table.getProjectId());
1735
}
1736
1737
+ @Test
1738
+ public void testWriteHandlesNullTable() {
1739
+ BigQueryIO.Write.Bound write = BigQueryIO.Write
1740
+ .withoutValidation();
1741
+ assertNull(write.getTable());
1742
+ }
1743
+
1744
private static void testNumFiles(File tempDir, int expectedNumFiles) {
1745
assertEquals(expectedNumFiles, tempDir.listFiles(new FileFilter() {
1746
@Override
0 commit comments