16
16
* See the License for the specific language governing permissions and
17
17
* limitations under the License.
18
18
*/
19
+ use PHPUnit \Framework \TestCase ;
20
+
19
21
require_once ('test_helper.php ' );
20
22
21
23
/**
22
24
* Class FloatIntEncodingTest
23
25
*/
24
- class FloatIntEncodingTest extends PHPUnit_Framework_TestCase
26
+ class FloatIntEncodingTest extends TestCase
25
27
{
26
28
const FLOAT_TYPE = 'float ' ;
27
29
const DOUBLE_TYPE = 'double ' ;
@@ -57,12 +59,12 @@ static function make_special_vals()
57
59
self ::$ INT_BITS_NEG_INF = strrev (pack ('H* ' , 'ff800000 ' ));
58
60
}
59
61
60
- function setUp ()
62
+ public function setUp (): void
61
63
{
62
64
self ::make_special_vals ();
63
65
}
64
66
65
- function test_special_values ()
67
+ public function test_special_values ()
66
68
{
67
69
$ this ->assertTrue (is_float (self ::$ FLOAT_NAN ), 'float NaN is a float ' );
68
70
$ this ->assertTrue (is_nan (self ::$ FLOAT_NAN ), 'float NaN is NaN ' );
@@ -97,7 +99,7 @@ function test_special_values()
97
99
/**
98
100
* @return array
99
101
*/
100
- function special_vals_provider ()
102
+ public function special_vals_provider ()
101
103
{
102
104
self ::make_special_vals ();
103
105
return array (array (self ::DOUBLE_TYPE , self ::$ DOUBLE_POS_INF , self ::$ LONG_BITS_POS_INF ),
@@ -112,15 +114,15 @@ function special_vals_provider()
112
114
* @param $val
113
115
* @param $bits
114
116
*/
115
- function test_encoding_special_values ($ type , $ val , $ bits )
117
+ public function test_encoding_special_values ($ type , $ val , $ bits )
116
118
{
117
119
$ this ->assert_encode_values ($ type , $ val , $ bits );
118
120
}
119
121
120
122
/**
121
123
* @return array
122
124
*/
123
- function nan_vals_provider ()
125
+ public function nan_vals_provider ()
124
126
{
125
127
self ::make_special_vals ();
126
128
return array (array (self ::DOUBLE_TYPE , self ::$ DOUBLE_NAN , self ::$ LONG_BITS_NAN ),
@@ -133,15 +135,15 @@ function nan_vals_provider()
133
135
* @param $val
134
136
* @param $bits
135
137
*/
136
- function test_encoding_nan_values ($ type , $ val , $ bits )
138
+ public function test_encoding_nan_values ($ type , $ val , $ bits )
137
139
{
138
140
$ this ->assert_encode_nan_values ($ type , $ val , $ bits );
139
141
}
140
142
141
143
/**
142
144
* @return array
143
145
*/
144
- function normal_vals_provider ()
146
+ public function normal_vals_provider ()
145
147
{
146
148
return array (
147
149
array (self ::DOUBLE_TYPE , (double ) -10 , "\000\000\000\000\000\000$ \300" , '000000000000420c ' ),
@@ -197,7 +199,7 @@ function normal_vals_provider()
197
199
/**
198
200
* @return array
199
201
*/
200
- function float_vals_provider ()
202
+ public function float_vals_provider ()
201
203
{
202
204
$ ary = array ();
203
205
@@ -211,7 +213,7 @@ function float_vals_provider()
211
213
/**
212
214
* @return array
213
215
*/
214
- function double_vals_provider ()
216
+ public function double_vals_provider ()
215
217
{
216
218
$ ary = array ();
217
219
@@ -229,7 +231,7 @@ function double_vals_provider()
229
231
* @param $val
230
232
* @param $bits
231
233
*/
232
- function test_encoding_float_values ($ type , $ val , $ bits )
234
+ public function test_encoding_float_values ($ type , $ val , $ bits )
233
235
{
234
236
$ this ->assert_encode_values ($ type , $ val , $ bits );
235
237
}
@@ -240,7 +242,7 @@ function test_encoding_float_values($type, $val, $bits)
240
242
* @param $val
241
243
* @param $bits
242
244
*/
243
- function test_encoding_double_values ($ type , $ val , $ bits )
245
+ public function test_encoding_double_values ($ type , $ val , $ bits )
244
246
{
245
247
$ this ->assert_encode_values ($ type , $ val , $ bits );
246
248
}
@@ -250,7 +252,7 @@ function test_encoding_double_values($type, $val, $bits)
250
252
* @param $val
251
253
* @param $bits
252
254
*/
253
- function assert_encode_values ($ type , $ val , $ bits )
255
+ public function assert_encode_values ($ type , $ val , $ bits )
254
256
{
255
257
if (self ::FLOAT_TYPE == $ type )
256
258
{
@@ -286,7 +288,7 @@ function assert_encode_values($type, $val, $bits)
286
288
* @param $val
287
289
* @param $bits
288
290
*/
289
- function assert_encode_nan_values ($ type , $ val , $ bits )
291
+ public function assert_encode_nan_values ($ type , $ val , $ bits )
290
292
{
291
293
if (self ::FLOAT_TYPE == $ type )
292
294
{
0 commit comments