ReactOS
0.4.16-dev-963-g182f353
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
modulus_test.cpp
Go to the documentation of this file.
1
#include <algorithm>
2
#include <functional>
3
4
#include "
cppunit/cppunit_proxy.h
"
5
6
#if !defined (STLPORT) || defined(_STLP_USE_NAMESPACES)
7
using namespace
std
;
8
#endif
9
10
//
11
// TestCase class
12
//
13
class
ModulusTest
:
public
CPPUNIT_NS::TestCase
14
{
15
CPPUNIT_TEST_SUITE
(
ModulusTest
);
16
CPPUNIT_TEST
(
modulus0
);
17
CPPUNIT_TEST_SUITE_END
();
18
19
protected
:
20
void
modulus0
();
21
};
22
23
CPPUNIT_TEST_SUITE_REGISTRATION
(
ModulusTest
);
24
25
//
26
// tests implementation
27
//
28
void
ModulusTest::modulus0
()
29
{
30
int
input1 [4] = { 6, 8, 10, 2 };
31
int
input2 [4] = { 4, 2, 11, 3 };
32
33
int
output [4];
34
35
transform
((
int
*)input1, (
int
*)input1 + 4, (
int
*)input2, (
int
*)output,
modulus<int>
());
36
CPPUNIT_ASSERT
(output[0]==2);
37
CPPUNIT_ASSERT
(output[1]==0);
38
CPPUNIT_ASSERT
(output[2]==10);
39
CPPUNIT_ASSERT
(output[3]==2);
40
}
ModulusTest
Definition:
modulus_test.cpp:14
ModulusTest::CPPUNIT_TEST_SUITE_END
CPPUNIT_TEST_SUITE_END()
ModulusTest::modulus0
void modulus0()
Definition:
modulus_test.cpp:28
ModulusTest::CPPUNIT_TEST_SUITE
CPPUNIT_TEST_SUITE(ModulusTest)
ModulusTest::CPPUNIT_TEST
CPPUNIT_TEST(modulus0)
CPPUNIT_TEST_SUITE_REGISTRATION
#define CPPUNIT_TEST_SUITE_REGISTRATION(X)
Definition:
cppunit_mini.h:193
CPPUNIT_ASSERT
#define CPPUNIT_ASSERT(X)
Definition:
cppunit_mini.h:200
cppunit_proxy.h
transform
GLuint GLenum GLenum transform
Definition:
glext.h:9407
std
Definition:
features.h:417
modulus
Definition:
_function.h:69
sdk
lib
3rdparty
stlport
test
unit
modulus_test.cpp
Generated on Mon Apr 7 2025 06:15:55 for ReactOS by
1.9.6