/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
stripe
/
stripe-php
/
tests
/
Stripe
/
Upload File
HOME
<?php namespace Stripe; /** * @internal * @covers \Stripe\Stripe */ final class StripeTest extends \Stripe\TestCase { use TestHelper; /** @var array */ protected $orig; /** * @before */ public function saveOriginalValues() { $this->orig = [ 'caBundlePath' => Stripe::$caBundlePath, ]; } /** * @after */ public function restoreOriginalValues() { Stripe::$caBundlePath = $this->orig['caBundlePath']; } public function testCABundlePathAccessors() { Stripe::setCABundlePath('path/to/ca/bundle'); static::assertSame('path/to/ca/bundle', Stripe::getCABundlePath()); } }