File: bug_ensure_0_equals_0.cpp

package info (click to toggle)
libtut 0.0.20070706-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 1,148 kB
  • ctags: 607
  • sloc: cpp: 3,588; xml: 137; makefile: 61; ansic: 9
file content (24 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <tut/tut.hpp>

namespace tut
{

struct basicCompareGroup
{
};

typedef test_group<basicCompareGroup> typeTestgroup;
typedef typeTestgroup::object testobject;
typeTestgroup basicCompareGroup("basicCompare");

template<>
template<>
void testobject::test<1>()
{
    set_test_name("0 == 0");
    
    ensure("null", 0 == 0);
}

}