2025-01-22 16:18:30 +01:00

101 lines
2.6 KiB
Haxe

/*
* Copyright (C)2005-2017 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
package haxe.unit;
/**
TestResult contains the result of the executed unit tests.
**/
class TestResult {
var m_tests : List<TestStatus>;
/**
`true` if the unit test succesfully executed the test cases.
**/
public var success(default, null) : Bool;
public function new() {
m_tests = new List();
success = true;
}
public function add( t:TestStatus ) : Void {
m_tests.add(t);
if( !t.success )
success = false;
}
/**
String representation from the result of the unit test.
**/
public function toString() : String {
var buf = new StringBuf();
var failures = 0;
for ( test in m_tests ){
if (test.success == false){
buf.add("* ");
buf.add(test.classname);
buf.add("::");
buf.add(test.method);
buf.add("()");
buf.add("\n");
buf.add("ERR: ");
if( test.posInfos != null ){
buf.add(test.posInfos.fileName);
buf.add(":");
buf.add(test.posInfos.lineNumber);
buf.add("(");
buf.add(test.posInfos.className);
buf.add(".");
buf.add(test.posInfos.methodName);
buf.add(") - ");
}
buf.add(test.error);
buf.add("\n");
if (test.backtrace != null) {
buf.add(test.backtrace);
buf.add("\n");
}
buf.add("\n");
failures++;
}
}
buf.add("\n");
if (failures == 0)
buf.add("OK ");
else
buf.add("FAILED ");
buf.add(m_tests.length);
buf.add(" tests, ");
buf.add(failures);
buf.add(" failed, ");
buf.add( (m_tests.length - failures) );
buf.add(" success");
buf.add("\n");
return buf.toString();
}
}