Merge pull request #736 from Smoothieware/development/test-framework
[clinton/Smoothieware.git] / src / testframework / easyunit / testpartresult.cpp
1 /*
2 EasyUnit : Simple C++ Unit testing framework
3 Copyright (C) 2004 Barthelemy Dagenais
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
19 Barthelemy Dagenais
20 barthelemy@prologique.com
21 */
22
23 #include "testpartresult.h"
24 #include "test.h"
25
26
27 TestPartResult::TestPartResult (Test *test,
28 const SimpleString& fileName,
29 long lineNumber,
30 const SimpleString& message,
31 testType type)
32 : message_ (message),
33 test_ (test),
34 fileName_ (fileName),
35 lineNumber_ (lineNumber),
36 type_ (type)
37 {
38 }
39
40 void TestPartResult::setNext(TestPartResult *next) {
41 next_ = next;
42 }
43
44 TestPartResult* TestPartResult::getNext() const {
45 return next_;
46 }
47
48 testType TestPartResult::getType() const {
49 return type_;
50 }
51
52 const SimpleString& TestPartResult::getMessage() const {
53 return message_;
54 }
55
56 Test* TestPartResult::getTest() const {
57 return test_;
58 }
59
60 const SimpleString& TestPartResult::getFileName() const {
61 return fileName_;
62 }
63
64 long TestPartResult::getLineNumber() const {
65 return lineNumber_;
66 }
67