File: coverageobject.h

package info (click to toggle)
grantlee5 5.3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,004 kB
  • sloc: cpp: 25,617; javascript: 6,043; python: 299; sh: 97; perl: 37; ruby: 24; makefile: 20
file content (15 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _TEST_COVERAGE_OBJECT_H
#define _TEST_COVERAGE_OBJECT_H
#include <QObject>
class CoverageObject : public QObject
{
  Q_OBJECT
public:
  CoverageObject(QObject *p = nullptr) : QObject(p) {}
  virtual void initTest() {}
  virtual void cleanupTest() {}
protected Q_SLOTS:
  void init();
  void cleanup();
};
#endif