文件名称:php-bench:用一种简单的方法对您PHP应用程序方法进行基准测试
文件大小:15KB
文件格式:ZIP
更新时间:2024-05-20 08:52:43
PHP
对您的类方法或函数进行基准测试 基准化类方法或函数的一种简单方法。 ./vendor/bin/bench run tests/ 或使用不同的路径 ./vendor/bin/bench run tests/ benchs/ 宣告工作台方法 只需在类中创建一个以benchmark关键字开头的方法,或者在文档块中使用简单的@benchmark批注即可。 class MyClass { ... public function benchmarkUsingTheMethodName ( $ b ) { for ( $ i = 0 ; $ i < $ b -> times (); $ i ++) { my_project_function ( "%s" , "hello" ); } } /**
【文件预览】:
php-bench-master
----src()
--------B.php(1KB)
--------IterationStrategy.php(677B)
--------MethodExtractor.php(2KB)
--------RunnerCommand.php(2KB)
--------PrintResult.php(825B)
--------BenchRunner.php(1KB)
----bench(438B)
----phpunit.xml.dist(571B)
----.travis.yml(168B)
----composer.lock(36KB)
----README.md(2KB)
----tests()
--------BTest.php(1KB)
--------RunnerCommandTest.php(957B)
--------MethodExtractorTest.php(3KB)
--------BenchRunnerTest.php(827B)
--------PrintResultTest.php(1KB)
--------test.php(573B)
--------IterationStrategyTest.php(453B)
----.gitignore(19B)
----composer.json(653B)