Unity Scopes API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Result.h
1 /*
2  * Copyright (C) 2014 Canonical Ltd
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License version 3 as
6  * published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored by: Thomas Voß <thomas.voss@canonical.com>
17  */
18 
19 #ifndef UNITY_SCOPES_TESTING_RESULT_H
20 #define UNITY_SCOPES_TESTING_RESULT_H
21 
22 #include <unity/scopes/Result.h>
23 
24 namespace unity
25 {
26 
27 namespace scopes
28 {
29 
30 namespace testing
31 {
32 
39 {
40 public:
44  Result();
45 };
46 
47 } // namespace testing
48 
49 } // namespace scopes
50 
51 } // namespace unity
52 
53 #endif
Result()
Default constructor, creates Result instance with no attributes.
The attributes of a result returned by a Scope.
Definition: Result.h:51
A simple class implementation of unity::scopes::Result that provides a default constructor.
Definition: Result.h:38