Enforce unit tests name consistency.
This commit is contained in:
parent
3cab1523eb
commit
58d83ae20a
7 changed files with 10 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
|||
#include "test.h"
|
||||
|
||||
DEFINE_TEST(access_bit_read_data_block)
|
||||
DEFINE_TEST(test_access_bit_read_data_block)
|
||||
{
|
||||
int res;
|
||||
MifareClassicTag tag;
|
||||
|
@ -40,7 +40,7 @@ DEFINE_TEST(access_bit_read_data_block)
|
|||
mifare_classic_test_teardown (tag);
|
||||
}
|
||||
|
||||
DEFINE_TEST(access_bit_read_trailer_block)
|
||||
DEFINE_TEST(test_access_bit_read_trailer_block)
|
||||
{
|
||||
int res;
|
||||
MifareClassicTag tag;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "mifare_classic.h"
|
||||
|
||||
DEFINE_TEST(authenticate)
|
||||
DEFINE_TEST(test_authenticate)
|
||||
{
|
||||
int res;
|
||||
MifareClassicTag tag;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include "mifare_classic.h"
|
||||
|
||||
DEFINE_TEST(create_trailer_block)
|
||||
DEFINE_TEST(test_create_trailer_block)
|
||||
{
|
||||
do {
|
||||
MifareClassicBlock data;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "mifare_classic.h"
|
||||
|
||||
DEFINE_TEST(format)
|
||||
DEFINE_TEST(test_format)
|
||||
{
|
||||
int res;
|
||||
MifareClassicTag tag;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "test.h"
|
||||
|
||||
DEFINE_TEST(mad)
|
||||
DEFINE_TEST(test_mad)
|
||||
{
|
||||
int res;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "mifare_classic.h"
|
||||
|
||||
DEFINE_TEST(read_sector_0)
|
||||
DEFINE_TEST(test_read_sector_0)
|
||||
{
|
||||
MifareClassicTag tag;
|
||||
int res ;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "test.h"
|
||||
|
||||
DEFINE_TEST(value_block_increment)
|
||||
DEFINE_TEST(test_value_block_increment)
|
||||
{
|
||||
int res;
|
||||
MifareClassicTag tag;
|
||||
|
@ -56,7 +56,7 @@ DEFINE_TEST(value_block_increment)
|
|||
mifare_classic_test_teardown (tag);
|
||||
}
|
||||
|
||||
DEFINE_TEST(value_block_decrement)
|
||||
DEFINE_TEST(test_value_block_decrement)
|
||||
{
|
||||
int res;
|
||||
MifareClassicTag tag;
|
||||
|
@ -111,7 +111,7 @@ DEFINE_TEST(value_block_decrement)
|
|||
mifare_classic_test_teardown (tag);
|
||||
}
|
||||
|
||||
DEFINE_TEST(value_block_restore)
|
||||
DEFINE_TEST(test_value_block_restore)
|
||||
{
|
||||
int res;
|
||||
MifareClassicTag tag;
|
||||
|
|
Loading…
Reference in a new issue