1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#include "../test.h"
#include "isds.h"
#include <string.h>
static int test_isds_Address_duplicate(struct isds_Address *origin) {
struct isds_Address *copy = isds_Address_duplicate(origin);
TEST_DESTRUCTOR((void(*)(void*))isds_Address_free, (void *)©);
if (!origin) {
if (copy)
FAIL_TEST("Duplicate of NULL should be NULL");
PASS_TEST;
}
if (!copy)
FAIL_TEST("isds_Address_duplicate() returned NULL instead of "
"pointer to copy");
TEST_STRING_DUPLICITY(origin->adCity, copy->adCity);
TEST_STRING_DUPLICITY(origin->adStreet, copy->adStreet);
TEST_STRING_DUPLICITY(origin->adNumberInStreet, copy->adNumberInStreet);
TEST_STRING_DUPLICITY(origin->adNumberInMunicipality,
copy->adNumberInMunicipality);
TEST_STRING_DUPLICITY(origin->adZipCode, copy->adZipCode);
TEST_STRING_DUPLICITY(origin->adState, copy->adState);
PASS_TEST;
}
int main(int argc, char **argv) {
INIT_TEST("isds_Address_duplicate()");
if (isds_init())
ABORT_UNIT("isds_init() failed");
TEST("NULL", test_isds_Address_duplicate, NULL);
struct isds_Address empty;
memset(&empty, 0, sizeof(empty));
TEST("Empty structure", test_isds_Address_duplicate, &empty);
/* Full structure */
struct isds_Address full = {
.adCity = "1",
.adStreet = "2",
.adNumberInStreet = "3",
.adNumberInMunicipality = "4",
.adZipCode = "5",
.adState = "6"
};
TEST("Full structure", test_isds_Address_duplicate, &full);
isds_cleanup();
SUM_TEST();
}
|