1/* ------------------------------------------------------------------
2 * Copyright (C) 1998-2009 PacketVideo
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13 * express or implied.
14 * See the License for the specific language governing permissions
15 * and limitations under the License.
16 * -------------------------------------------------------------------
17 */
18#ifndef TEST_PROBLEM_H
19#define TEST_PROBLEM_H
20
21#include "unit_test_common.h"
22
23
24
25//$Id
26//this is a test "problem" -- a note when a test failed or erred
27class test_problem
28{
29    protected:
30        //protected data members
31        //line number of the error, if appropriate
32        long m_line_number;
33        //filename of the error, if appropriate
34        _STRING m_filename;
35        //additional message as appropriate
36        _STRING m_message;
37    public:
38        //construction
39        test_problem(const _STRING& filename, long line_number, const _STRING& message);
40        test_problem(const test_problem& rhs);
41        test_problem& operator= (const test_problem& rhs);
42        //data access
43        long line_number(void) const;
44        const _STRING& filename(void) const;
45        const _STRING& message(void) const;
46
47};
48
49#endif
50