File: testutilities.h

package info (click to toggle)
libsigc%2B%2B-2.0 2.12.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,432 kB
  • sloc: cpp: 4,132; xml: 339; python: 196; makefile: 192; sh: 5
file content (55 lines) | stat: -rw-r--r-- 1,783 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* Copyright (C) 2012 The libsigc++ Development Team
 *
 * This file is part of libsigc++.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 */

#include <string>
#include <sstream>

// Functions used in several test cases in libsigc++.
// This is a singleton class.
class TestUtilities
{
public:

  // Non-copyable:
  TestUtilities(const TestUtilities&) = delete;
  TestUtilities& operator=(const TestUtilities&) = delete;

  // Non-movable:
  TestUtilities(TestUtilities&&) = delete;
  TestUtilities& operator=(TestUtilities&&) = delete;

  static TestUtilities* get_instance();
  bool check_command_args(int argc, char* argv[]);
  void check_result(std::ostringstream& result_stream, const std::string& expected_result);
  bool get_verbose() const { return verbose_; }
  bool get_result() const { return result_ok_; }

  // When you are searching for memory leaks with valgrind or a similar program,
  // you avoid a harmless warning by deleting the instance when you're done with it.
  static bool get_result_and_delete_instance();

private:


  TestUtilities();

  static TestUtilities* instance_;
  bool verbose_;
  bool result_ok_;
  int test_number_;
};