~unity8-desktop-session-team/noachian/trunk

« back to all changes in this revision

Viewing changes to test/mockcontainerimpl.cpp

  • Committer: Stephen M. Webb
  • Date: 2014-08-21 20:24:00 UTC
  • Revision ID: stephen.webb@canonical.com-20140821202400-mkjdydr9bixvod1e
added crude Container classes and tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * @file test/mockcontainerimpl.cpp
 
3
 * @brief concrete mock container implementations
 
4
 */
 
5
 
 
6
/*
 
7
 * Copyright 2014 Canonical Ltd.
 
8
 *
 
9
 * This program is free software: you can redistribute it and/or modify it under
 
10
 * the terms of the GNU General Public License, version 3, as published by the
 
11
 * Free Software Foundation.
 
12
 *
 
13
 * This program is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
 */
 
21
#include "test/mockcontainerimpl.h"
 
22
 
 
23
 
 
24
namespace Test
 
25
{
 
26
 
 
27
/**
 
28
 * A mock container implementation.
 
29
 */
 
30
MockContainerImpl::
 
31
~MockContainerImpl()
 
32
{ }
 
33
 
 
34
} // namespace Test
 
35