~dobey/unity-scope-click/check-purchased

« back to all changes in this revision

Viewing changes to scope/tests/mock_pay.h

  • Committer: Rodney Dawes
  • Date: 2014-07-16 21:49:11 UTC
  • mfrom: (314.2.19 devel)
  • Revision ID: rodney.dawes@canonical.com-20140716214911-3vn31avz0lwzcn2e
Merge tip of devel branch.
Move mock pay code to mock_pay.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2014 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * In addition, as a special exception, the copyright holders give
 
17
 * permission to link the code of portions of this program with the
 
18
 * OpenSSL library under certain conditions as described in each
 
19
 * individual source file, and distribute linked combinations
 
20
 * including the two.
 
21
 * You must obey the GNU General Public License in all respects
 
22
 * for all of the code used other than OpenSSL.  If you modify
 
23
 * file(s) with this exception, you may extend this exception to your
 
24
 * version of the file(s), but you are not obligated to do so.  If you
 
25
 * do not wish to do so, delete this exception statement from your
 
26
 * version.  If you delete this exception statement from all source
 
27
 * files in the program, then also delete it here.
 
28
 */
 
29
 
 
30
#include "clickstore/pay.h"
 
31
 
 
32
#include <gtest/gtest.h>
 
33
#include <gmock/gmock.h>
 
34
 
 
35
 
 
36
namespace
 
37
{
 
38
 
 
39
    class MockPayPackage : public pay::Package {
 
40
    public:
 
41
        MockPayPackage()
 
42
        {
 
43
        }
 
44
 
 
45
        MOCK_METHOD1(verify, bool(const std::string&));
 
46
};
 
47
 
 
48
} // namespace