~ubuntu-branches/ubuntu/wily/afnix/wily

« back to all changes in this revision

Viewing changes to src/lib/std/tst/t_printtable.cpp

  • Committer: Package Import Robot
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2015-07-11 02:00:35 UTC
  • mfrom: (10.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20150711020035-2nhpztq7s15qyc0v
Tags: 2.5.1-1
* New upstream release. (Closes: #789968)
* Update debian/control.
  - Update Standards-Version to 3.9.6.
* Add support mips64(el) and ppc64el. (Closes: #741508, #748146)
* Add patches/support-gcc-5.x.patch. (Closes: #777767)
  - Fix build with gcc-5.x.
* Add patches/Disable-NET0001.als.patch.
  - Disable test of NET0001.als.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// ---------------------------------------------------------------------------
 
2
// - t_printtable.cpp                                                        -
 
3
// - standard object library - printtable class tester                       -
 
4
// ---------------------------------------------------------------------------
 
5
// - This program is free software;  you can redistribute it  and/or  modify -
 
6
// - it provided that this copyright notice is kept intact.                  -
 
7
// -                                                                         -
 
8
// - This program  is  distributed in  the hope  that it will be useful, but -
 
9
// - without  any  warranty;  without  even   the   implied    warranty   of -
 
10
// - merchantability or fitness for a particular purpose.  In no event shall -
 
11
// - the copyright holder be liable for any  direct, indirect, incidental or -
 
12
// - special damages arising in any way out of the use of this software.     -
 
13
// ---------------------------------------------------------------------------
 
14
// - copyright (c) 1999-2015 amaury darsch                                   -
 
15
// ---------------------------------------------------------------------------
 
16
 
 
17
#include "PrintTable.hpp"
 
18
 
 
19
int main (int, char**) {
 
20
  using namespace afnix;
 
21
 
 
22
  // the property name and value
 
23
  String name = "afnix";
 
24
  String pval = "programming language";
 
25
 
 
26
  // create a new print table
 
27
  PrintTable ptbl (2);
 
28
  if (ptbl.repr () != "PrintTable") return 1;
 
29
 
 
30
  // check rows and columns
 
31
  if (ptbl.getrows () != 0L) return 1;
 
32
  if (ptbl.getcols () != 2L) return 1;
 
33
 
 
34
  // set the head and check
 
35
  ptbl.sethead (0, "name");
 
36
  ptbl.sethead (1, "value");
 
37
  if (ptbl.gethead (0) != "name")  return 1;
 
38
  if (ptbl.gethead (1) != "value") return 1;
 
39
 
 
40
  // add a new row
 
41
  long row = ptbl.add ();
 
42
  if (row != 0L) return 1;
 
43
  if (ptbl.getrows () != 1L) return 1;
 
44
 
 
45
  // set the row value
 
46
  ptbl.set (row, 0, name);
 
47
  ptbl.set (row, 1, pval);
 
48
  if (ptbl.get (row, 0) != name) return 1;
 
49
  if (ptbl.get (row, 1) != pval) return 1;
 
50
 
 
51
  // add a 2 column
 
52
  ptbl.addcols (2);
 
53
  if (ptbl.getrows () != 1L) return 1;
 
54
  if (ptbl.getcols () != 4L) return 1;
 
55
 
 
56
  if (ptbl.get (row, 0) != name) return 1;
 
57
  if (ptbl.get (row, 1) != pval) return 1;
 
58
  if (ptbl.get (row, 2) != "")   return 1;
 
59
  if (ptbl.get (row, 3) != "")   return 1;
 
60
 
 
61
  // ok - everything is fine
 
62
  return 0;
 
63
}