| 75 | //------------------------------------------------------------------------------ |
| 76 | |
| 77 | TEST(SampleTransformTest, NoExpression) { |
| 78 | AvifExpression empty; |
| 79 | ASSERT_EQ( |
| 80 | avifSampleTransformRecipeToExpression(AVIF_SAMPLE_TRANSFORM_NONE, &empty), |
| 81 | AVIF_RESULT_INVALID_ARGUMENT); |
| 82 | EXPECT_TRUE(avifSampleTransformExpressionIsEquivalentTo(&empty, &empty)); |
| 83 | } |
| 84 | |
| 85 | TEST(SampleTransformTest, NoRecipe) { |
| 86 | AvifExpression empty; |
nothing calls this directly
no test coverage detected