├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Vagrantfile ├── bin └── .gitignore ├── buddy.cpp.hxml ├── buddy.cs.hxml ├── buddy.flash.hxml ├── buddy.java.hxml ├── buddy.js.hxml ├── buddy.neko.hxml ├── buddy.nodejs.hxml ├── buddy.php.hxml ├── buddy.python.hxml ├── haxelib.json ├── provision.sh ├── src ├── buddy │ ├── Buddy.hx │ ├── BuddySuite.hx │ ├── CompilationShould.hx │ ├── Should.hx │ ├── SingleSuite.hx │ ├── SuitesRunner.hx │ ├── internal │ │ ├── GenerateMain.hx │ │ ├── SuiteBuilder.hx │ │ └── sys │ │ │ ├── Flash.hx │ │ │ ├── Js.hx │ │ │ └── NodeJs.hx │ ├── reporting │ │ ├── ConsoleColorReporter.hx │ │ ├── ConsoleFileReporter.hx │ │ ├── ConsoleReporter.hx │ │ ├── KarmaReporter.hx │ │ ├── Reporter.hx │ │ ├── TraceReporter.hx │ │ ├── TravisHxReporter.hx │ │ └── XUnit2Reporter.hx │ ├── tests │ │ ├── AllTests.hx │ │ ├── SelfTest.hx │ │ ├── buddy.phantomjs.js │ │ └── index.html │ └── tools │ │ └── AsyncTools.hx └── haxelib.json └── tests.hxml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /buddy.cpp.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/buddy.cpp.hxml -------------------------------------------------------------------------------- /buddy.cs.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/buddy.cs.hxml -------------------------------------------------------------------------------- /buddy.flash.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/buddy.flash.hxml -------------------------------------------------------------------------------- /buddy.java.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/buddy.java.hxml -------------------------------------------------------------------------------- /buddy.js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/buddy.js.hxml -------------------------------------------------------------------------------- /buddy.neko.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/buddy.neko.hxml -------------------------------------------------------------------------------- /buddy.nodejs.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/buddy.nodejs.hxml -------------------------------------------------------------------------------- /buddy.php.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/buddy.php.hxml -------------------------------------------------------------------------------- /buddy.python.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/buddy.python.hxml -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/haxelib.json -------------------------------------------------------------------------------- /provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/provision.sh -------------------------------------------------------------------------------- /src/buddy/Buddy.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/Buddy.hx -------------------------------------------------------------------------------- /src/buddy/BuddySuite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/BuddySuite.hx -------------------------------------------------------------------------------- /src/buddy/CompilationShould.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/CompilationShould.hx -------------------------------------------------------------------------------- /src/buddy/Should.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/Should.hx -------------------------------------------------------------------------------- /src/buddy/SingleSuite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/SingleSuite.hx -------------------------------------------------------------------------------- /src/buddy/SuitesRunner.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/SuitesRunner.hx -------------------------------------------------------------------------------- /src/buddy/internal/GenerateMain.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/internal/GenerateMain.hx -------------------------------------------------------------------------------- /src/buddy/internal/SuiteBuilder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/internal/SuiteBuilder.hx -------------------------------------------------------------------------------- /src/buddy/internal/sys/Flash.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/internal/sys/Flash.hx -------------------------------------------------------------------------------- /src/buddy/internal/sys/Js.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/internal/sys/Js.hx -------------------------------------------------------------------------------- /src/buddy/internal/sys/NodeJs.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/internal/sys/NodeJs.hx -------------------------------------------------------------------------------- /src/buddy/reporting/ConsoleColorReporter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/reporting/ConsoleColorReporter.hx -------------------------------------------------------------------------------- /src/buddy/reporting/ConsoleFileReporter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/reporting/ConsoleFileReporter.hx -------------------------------------------------------------------------------- /src/buddy/reporting/ConsoleReporter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/reporting/ConsoleReporter.hx -------------------------------------------------------------------------------- /src/buddy/reporting/KarmaReporter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/reporting/KarmaReporter.hx -------------------------------------------------------------------------------- /src/buddy/reporting/Reporter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/reporting/Reporter.hx -------------------------------------------------------------------------------- /src/buddy/reporting/TraceReporter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/reporting/TraceReporter.hx -------------------------------------------------------------------------------- /src/buddy/reporting/TravisHxReporter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/reporting/TravisHxReporter.hx -------------------------------------------------------------------------------- /src/buddy/reporting/XUnit2Reporter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/reporting/XUnit2Reporter.hx -------------------------------------------------------------------------------- /src/buddy/tests/AllTests.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/tests/AllTests.hx -------------------------------------------------------------------------------- /src/buddy/tests/SelfTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/tests/SelfTest.hx -------------------------------------------------------------------------------- /src/buddy/tests/buddy.phantomjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/tests/buddy.phantomjs.js -------------------------------------------------------------------------------- /src/buddy/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/tests/index.html -------------------------------------------------------------------------------- /src/buddy/tools/AsyncTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/buddy/tools/AsyncTools.hx -------------------------------------------------------------------------------- /src/haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/src/haxelib.json -------------------------------------------------------------------------------- /tests.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/buddy/HEAD/tests.hxml --------------------------------------------------------------------------------