OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:strictEqual
(Results
1 - 4
of
4
) sorted by null
/external/flatbuffers/tests/
JavaScriptTest.js
36
assert.
strictEqual
(fbb.bb.capacity(), startingCapacity);
101
assert.
strictEqual
(monster.hp(), 120);
104
assert.
strictEqual
(monster.hp(), 80);
107
assert.
strictEqual
(manaRes, false); // Field was NOT present, because default value.
117
assert.
strictEqual
(monster.hp(), 80);
118
assert.
strictEqual
(monster.mana(), 150); // default
120
assert.
strictEqual
(monster.name(), 'MyMonster');
123
assert.
strictEqual
(pos.x(), 1);
124
assert.
strictEqual
(pos.y(), 2);
125
assert.
strictEqual
(pos.z(), 3)
[
all
...]
JavaScriptUnionVectorTest.js
38
assert.
strictEqual
(movie.charactersTypeLength(), charTypes.length);
39
assert.
strictEqual
(movie.charactersLength(), movie.charactersTypeLength());
42
assert.
strictEqual
(movie.charactersType(i), charTypes[i]);
46
assert.
strictEqual
(bookReader7.booksRead(), 7);
49
assert.
strictEqual
(attacker.swordAttackDamage(), 5);
52
assert.
strictEqual
(bookReader2.booksRead(), 2);
phpUnionVectorTest.php
28
public function
strictEqual
($result, $expected, $message = "") {
82
$assert->
strictEqual
($movie->getCharactersTypeLength(), count($charTypes));
83
$assert->
strictEqual
($movie->getCharactersLength(), $movie->getCharactersTypeLength());
86
$assert->
strictEqual
($movie->getCharactersType($i), $charTypes[$i]);
90
$assert->
strictEqual
($bookReader7->getBooksRead(), 7);
93
$assert->
strictEqual
($attacker->getSwordAttackDamage(), 5);
96
$assert->
strictEqual
($bookReader2->getBooksRead(), 2);
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 399 milliseconds