Blame tests/tfn/hexEncode.t
|
Packit Service |
384592 |
### Empty
|
|
Packit Service |
384592 |
{
|
|
Packit Service |
384592 |
type => "tfn",
|
|
Packit Service |
384592 |
name => "hexEncode",
|
|
Packit Service |
384592 |
input => "",
|
|
Packit Service |
384592 |
output => "",
|
|
Packit Service |
384592 |
ret => 1,
|
|
Packit Service |
384592 |
},
|
|
Packit Service |
384592 |
|
|
Packit Service |
384592 |
### Basic
|
|
Packit Service |
384592 |
{
|
|
Packit Service |
384592 |
type => "tfn",
|
|
Packit Service |
384592 |
name => "hexEncode",
|
|
Packit Service |
384592 |
input => "TestCase",
|
|
Packit Service |
384592 |
output => "5465737443617365",
|
|
Packit Service |
384592 |
ret => 1,
|
|
Packit Service |
384592 |
},
|
|
Packit Service |
384592 |
|
|
Packit Service |
384592 |
### Basic w/NULL
|
|
Packit Service |
384592 |
{
|
|
Packit Service |
384592 |
type => "tfn",
|
|
Packit Service |
384592 |
name => "hexEncode",
|
|
Packit Service |
384592 |
input => "Test\0Case",
|
|
Packit Service |
384592 |
output => "546573740043617365",
|
|
Packit Service |
384592 |
ret => 1,
|
|
Packit Service |
384592 |
},
|