OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:strictEqual
(Results
1 - 2
of
2
) sorted by null
/external/flatbuffers/tests/
JavaScriptTest.js
84
assert.
strictEqual
(monster.hp(), 120);
87
assert.
strictEqual
(monster.hp(), 80);
90
assert.
strictEqual
(manaRes, false); // Field was NOT present, because default value.
100
assert.
strictEqual
(monster.hp(), 80);
101
assert.
strictEqual
(monster.mana(), 150); // default
103
assert.
strictEqual
(monster.name(), 'MyMonster');
106
assert.
strictEqual
(pos.x(), 1);
107
assert.
strictEqual
(pos.y(), 2);
108
assert.
strictEqual
(pos.z(), 3);
109
assert.
strictEqual
(pos.test1(), 3)
[
all
...]
phpTest.php
102
$assert->
strictEqual
($monster->GetHp(), 80);
103
$assert->
strictEqual
($monster->GetMana(), 150); // default
105
$assert->
strictEqual
($monster->GetName(), 'MyMonster');
108
$assert->
strictEqual
($pos->GetX(), 1.0);
109
$assert->
strictEqual
($pos->GetY(), 2.0);
110
$assert->
strictEqual
($pos->GetZ(), 3.0);
113
$assert->
strictEqual
($pos->GetTest2(), \MyGame\Example\Color::Green);
116
$assert->
strictEqual
($t->GetA(), 5);
117
$assert->
strictEqual
($t->GetB(), 6);
118
$assert->
strictEqual
($monster->GetTestType(), \MyGame\Example\Any::Monster)
[
all
...]
Completed in 63 milliseconds