getMockBuilder( WC_Product::class ) ->setMethods( array( 'maybe_defer_product_sync' ) ) ->getMock(); $product->method( 'maybe_defer_product_sync' ) ->will( $this->returnCallback( $defer_product_callback ) ); $product->$operation(); $this->assertTrue( $defer_sync_invoked ); } }