~ubuntu-branches/ubuntu/precise/nux/precise-proposed

« back to all changes in this revision

Viewing changes to tests/test_main.cpp

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2012-03-12 11:45:31 UTC
  • mfrom: (1.1.37)
  • Revision ID: package-import@ubuntu.com-20120312114531-3zctml10fifuiap8
Tags: 2.6.0-0ubuntu1
* New upstream release.
  - Restore OpenGL default line width and point size (LP: #937444)
  - [unity-5.6] can't enter accents (^o->) in the dash since recent updates
    (LP: #944674)
  - SetEnableView / ViewEnable / ViewDisable give inverted results
    (LP: #938823)
* debian/control:
  - build-dep on libibus-1.0-dev for ibus support

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <gtest/gtest.h>
2
 
#include <glib-object.h>
3
 
 
4
 
#include "Nux/Nux.h"
5
 
 
6
 
int main(int argc, char **argv)
7
 
{
8
 
  ::testing::InitGoogleTest(&argc, argv);
9
 
  g_type_init();
10
 
  nux::NuxInitialize (0);
11
 
 
12
 
  return RUN_ALL_TESTS();
13
 
}