diff options
| author | RblSb <msrblsb@gmail.com> | 2020-04-03 04:48:36 +0300 |
|---|---|---|
| committer | RblSb <msrblsb@gmail.com> | 2020-04-03 04:48:36 +0300 |
| commit | 5f2a3b89eaa1199d9bc2ddd10622f9803cec983f (patch) | |
| tree | ee9064ee7b683cfe2ac7b504ba81674b490367b6 /test/Main.hx | |
| parent | 62c9be74228549ff888b684a62f77fb056571470 (diff) | |
Sync playback rate
Diffstat (limited to 'test/Main.hx')
| -rw-r--r-- | test/Main.hx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Main.hx b/test/Main.hx new file mode 100644 index 0000000..d2ea286 --- /dev/null +++ b/test/Main.hx @@ -0,0 +1,15 @@ +package; + +import utest.Runner; +import utest.ui.Report; + +class Main { + + static function main() { + final runner = new Runner(); + runner.addCases(test.tests); + Report.create(runner); + runner.run(); + } + +} |
