~ubuntu-branches/debian/jessie/ugene/jessie

« back to all changes in this revision

Viewing changes to src/plugins/api_tests/src/core/dbi/DbiTest.h

  • Committer: Package Import Robot
  • Author(s): Steffen Moeller
  • Date: 2011-11-02 13:29:07 UTC
  • mfrom: (1.2.1) (3.1.11 natty)
  • Revision ID: package-import@ubuntu.com-20111102132907-o34gwnt0uj5g6hen
Tags: 1.9.8+repack-1
* First release to Debian
  - added README.Debian
  - increased policy version to 3.9.2
  - added URLs for version control system
* Added debug package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef DBITEST_H
 
2
#define DBITEST_H
 
3
 
 
4
#include <U2Core/U2Dbi.h>
 
5
#include <U2Test/TestRunnerSettings.h>
 
6
#include <gtest/gtest.h>
 
7
#include <memory>
 
8
 
 
9
 
 
10
namespace U2 {
 
11
 
 
12
class BaseDbiTest : public ::testing::TestWithParam<APITestData> {
 
13
public:
 
14
    static const QString DB_URL;
 
15
 
 
16
protected:
 
17
    virtual void SetUp();
 
18
    virtual void TearDown();
 
19
 
 
20
protected:
 
21
    std::auto_ptr<U2Dbi> dbi;
 
22
    QHash<QString, QString> properties;
 
23
    APITestData testData;
 
24
};
 
25
 
 
26
} // namespace U2
 
27
 
 
28
#endif // DBITEST_H