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 413c335 commit 2b26b1aCopy full SHA for 2b26b1a
tests/pdal/capi/PipelineTest.c
@@ -156,6 +156,12 @@ TEST PDALValidatePipelineTest(void)
156
{
157
bool valid = PDALValidatePipeline(NULL);
158
ASSERT_FALSEm("Null pipeline evaluated as valid when it should be invalid", valid);
159
+
160
+ PDALPipelinePtr pipeline = PDALCreatePipeline(gPipelineJson);
161
+ ASSERT_FALSE(pipeline == NULL);
162
+ valid = PDALValidatePipeline(NULL);
163
+ ASSERT_FALSEm("Valid pipeline evaluated as invalid", !valid);
164
165
PASS();
166
}
167
0 commit comments