oont-contents/plugins/mailpoet/vendor/mixpanel/mixpanel-php/test/ConsumerStrategies/SocketConsumerTest.php
2025-02-08 15:10:23 +01:00

23 lines
507 B
PHP

<?php
if (!defined('ABSPATH')) exit;
class ConsumerStrategies_SocketConsumerTest extends PHPUnit_Framework_TestCase {
protected $_instance = null;
protected $_file = null;
protected function setUp()
{
parent::setUp();
$this->_instance = new ConsumerStrategies_SocketConsumer(array(
"host" => "localhost",
"endpoint" => "/endpoint",
"timeout" => 2,
"use_ssl" => false
));
}
protected function tearDown()
{
parent::tearDown();
$this->_instance = null;
}
public function testPersist() {
}
}