PNG %k25u25%fgd5n!
/home/mkuwqnjx/palaknaturals.com/wp-content/plugins/woo-razorpay/tests/phpunit/tests/test-hooks.php
<?php
/**
 * @covers \WC_Razorpay
 * @covers addRouteModuleSettingFields
 */

class Test_Hooks extends WP_UnitTestCase
{
    public $razorpayTests;

    public function setup():void
    {
        parent::setup();

        $this->razorpayTests = new WC_Razorpay();
    }

    public function testRegisteredHooks()
    {
        $this->assertTrue(Util::has_action('woocommerce_receipt_' . $this->razorpayTests->id,
            $this->razorpayTests, 'receipt_page'));

        $this->assertTrue(Util::has_action('woocommerce_api_' . $this->razorpayTests->id,
            $this->razorpayTests, 'check_razorpay_response'));

        $this->assertTrue(Util::has_action('woocommerce_update_options_payment_gateways_' . $this->razorpayTests->id,
            $this->razorpayTests, 'pluginInstrumentation'));
            
        $this->assertTrue(Util::has_action('woocommerce_update_options_payment_gateways_' . $this->razorpayTests->id,
            $this->razorpayTests, 'process_admin_options'));
           
        $this->assertTrue(Util::has_action('woocommerce_update_options_payment_gateways_' . $this->razorpayTests->id,
            $this->razorpayTests, 'autoEnableWebhook'));
            
        $this->assertTrue(Util::has_action('woocommerce_update_options_payment_gateways_' . $this->razorpayTests->id,
            $this->razorpayTests, 'addAdminCheckoutSettingsAlert'));
            
        $this->assertTrue(Util::has_action('woocommerce_receipt_' . $this->razorpayTests->id,
            $this->razorpayTests, 'receipt_page'));

        $this->assertTrue(Util::has_action('woocommerce_api_' . $this->razorpayTests->id,
            $this->razorpayTests, 'check_razorpay_response'));

    }
    
    public function testHooks()
    {
        $this->assertSame(0, has_action('plugins_loaded', 'woocommerce_razorpay_init'));
       
        $this->assertSame(10, has_action('admin_post_nopriv_rzp_wc_webhook', 'razorpay_webhook_init'));
       
        $this->assertSame(10, has_action('woocommerce_before_single_product', 'trigger_affordability_widget'));
    }
}