Rework unit tests using cutter.

This commit is contained in:
Romain Tartiere 2010-01-11 20:14:30 +00:00
parent 935ab47c54
commit c1bcb966ea
24 changed files with 675 additions and 2277 deletions

View file

@ -0,0 +1,17 @@
#include <cutter.h>
#include <freefare.h>
void
test_mifare_classic_create_trailer_block (void)
{
MifareClassicBlock data;
MifareClassicKey key_a = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
MifareClassicKey key_b = { 0xde, 0xad, 0xbe, 0xef, 0xff, 0xff };
mifare_classic_trailer_block (&data, key_a, 0, 0, 0, 4, 0x42, key_b);
cut_assert_equal_memory (data, sizeof (data), "\xff\xff\xff\xff\xff\xff\xff\x07\x80\x42\xde\xad\xbe\xef\xff\xff", sizeof (data));
}