summaryrefslogtreecommitdiff
path: root/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/VersionTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/VersionTest.php')
-rw-r--r--vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/VersionTest.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/VersionTest.php b/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/VersionTest.php
new file mode 100644
index 0000000..c3a81d1
--- /dev/null
+++ b/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/VersionTest.php
@@ -0,0 +1,27 @@
+<?php
+
+namespace Guzzle\Tests\Common;
+
+use Guzzle\Common\Version;
+
+/**
+ * @covers Guzzle\Common\Version
+ */
+class VersionTest extends \Guzzle\Tests\GuzzleTestCase
+{
+ /**
+ * @expectedException \PHPUnit_Framework_Error_Deprecated
+ */
+ public function testEmitsWarnings()
+ {
+ Version::$emitWarnings = true;
+ Version::warn('testing!');
+ }
+
+ public function testCanSilenceWarnings()
+ {
+ Version::$emitWarnings = false;
+ Version::warn('testing!');
+ Version::$emitWarnings = true;
+ }
+}