mirror of
https://github.com/danog/tgvoip-test-suite.git
synced 2024-12-02 09:37:56 +01:00
10 lines
234 B
PHP
Executable File
10 lines
234 B
PHP
Executable File
<?php
|
|
|
|
// Calculates average scores for each library version
|
|
// Usage:
|
|
// php tests/mean.php [path/to/file.csv]
|
|
|
|
require_once('tests/CallTester.php');
|
|
$tester = new CallTester($argv[0], true);
|
|
|
|
$tester->printCsvScores($argv[1] ?? ''); |