aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/stephenhill/base58/benchmarks/Base58GMPEvent.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/stephenhill/base58/benchmarks/Base58GMPEvent.php')
-rw-r--r--vendor/stephenhill/base58/benchmarks/Base58GMPEvent.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/stephenhill/base58/benchmarks/Base58GMPEvent.php b/vendor/stephenhill/base58/benchmarks/Base58GMPEvent.php
new file mode 100644
index 000000000..d8a4d20bf
--- /dev/null
+++ b/vendor/stephenhill/base58/benchmarks/Base58GMPEvent.php
@@ -0,0 +1,33 @@
+<?php
+
+namespace StephenHill\Benchmarks;
+
+use Athletic\AthleticEvent;
+use StephenHill\Base58;
+use StephenHill\GMPService;
+
+class Base58GMPEvent extends AthleticEvent
+{
+ protected $base58;
+
+ public function setUp()
+ {
+ $this->base58 = new Base58(null, new GMPService());
+ }
+
+ /**
+ * @iterations 10000
+ */
+ public function encodeBase58()
+ {
+ $this->base58->encode('Hello World');
+ }
+
+ /**
+ * @iterations 10000
+ */
+ public function decodeBase58()
+ {
+ $this->base58->decode('JxF12TrwUP45BMd');
+ }
+}