~ricotz/plank/consolidate-api

« back to all changes in this revision

Viewing changes to tests/gmock/main.cpp

  • Committer: Rico Tzschichholz
  • Date: 2015-07-25 14:50:16 UTC
  • Revision ID: ricotz@ubuntu.com-20150725145016-v3tmqjsol4f9vuwm
tests: Add google-mock support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
//  Copyright (C) 2015 Kay van der Zander
 
3
//
 
4
//  This file is part of Plank.
 
5
//
 
6
//  Plank is free software: you can redistribute it and/or modify
 
7
//  it under the terms of the GNU General Public License as published by
 
8
//  the Free Software Foundation, either version 3 of the License, or
 
9
//  (at your option) any later version.
 
10
//
 
11
//  Plank is distributed in the hope that it will be useful,
 
12
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
//  GNU General Public License for more details.
 
15
//
 
16
//  You should have received a copy of the GNU General Public License
 
17
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
//
 
19
 
 
20
#include "gtest/gtest.h"
 
21
#include "plank.h"
 
22
 
 
23
int main (int argc, char** argv)
 
24
{
 
25
        ::testing::GTEST_FLAG (throw_on_failure) = true;
 
26
 
 
27
        // Important: Google Test must be initialized.
 
28
        ::testing::InitGoogleTest (&argc, argv);
 
29
 
 
30
        return RUN_ALL_TESTS ();
 
31
}