| 77 | }; |
| 78 | |
| 79 | TEST_F(clfft_UnitTest, get_plan_context_should_get_a_context) { |
| 80 | cl_context the_context = NULL; |
| 81 | |
| 82 | EXPECT_EQ( CLFFT_SUCCESS, clfftGetPlanContext( test_plan, &the_context ) ); |
| 83 | if( the_context == NULL ) |
| 84 | EXPECT_EQ( "context is null :(", "context should not be null"); |
| 85 | } |
| 86 | |
| 87 | TEST_F(clfft_UnitTest, copyPlan_should_copy_plan) { |
| 88 | clfftPlanHandle copied_plan; |
nothing calls this directly
no test coverage detected