~ubuntu-branches/ubuntu/quantal/mysql-workbench/quantal

« back to all changes in this revision

Viewing changes to library/canvas/unit-tests/view.cpp

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2012-03-01 21:57:30 UTC
  • Revision ID: package-import@ubuntu.com-20120301215730-o7y8av8y38n162ro
Tags: upstream-5.2.38+dfsg
ImportĀ upstreamĀ versionĀ 5.2.38+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License as
 
6
 * published by the Free Software Foundation; version 2 of the
 
7
 * License.
 
8
 * 
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
12
 * GNU General Public License for more details.
 
13
 * 
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 
17
 * 02110-1301  USA
 
18
 */
 
19
 
 
20
#include "tut_stdafx.h"
 
21
 
 
22
#include "mdc.h"
 
23
#include <mdc_canvas_view_image.h>
 
24
 
 
25
using namespace mdc;
 
26
using namespace MySQL::Geometry;
 
27
 
 
28
BEGIN_TEST_DATA_CLASS(canvas_view)
 
29
 
 
30
END_TEST_DATA_CLASS
 
31
 
 
32
 
 
33
TEST_MODULE(canvas_view, "Canvas: view");
 
34
 
 
35
 
 
36
TEST_FUNCTION(1)
 
37
{
 
38
  ImageCanvasView view(500, 400);
 
39
 
 
40
  // test viewport
 
41
 
 
42
  view.set_page_size(Size(500, 400));
 
43
 
 
44
  ensure_equals("viewport for size=viewport", view.get_viewport().str(), Rect(0, 0, 500, 400).str());
 
45
 
 
46
  view.set_zoom(2);
 
47
 
 
48
  ensure_equals("viewport for zoom 2", view.get_viewport().str(), Rect(0, 0, 250, 200).str());
 
49
 
 
50
  view.set_zoom(0.5);
 
51
 
 
52
  ensure_equals("viewport for zoom 0.5", view.get_viewport().str(), Rect(0, 0, 500, 400).str());
 
53
}
 
54
 
 
55
 
 
56
END_TESTS