Lines Matching full:is_int
47 is_int(1, vector->count, "vector_add increases count"); in main()
50 is_int(4, vector->allocated, "vector_resize works"); in main()
54 is_int(4, vector->allocated, "...and no reallocation when adding strings"); in main()
55 is_int(4, vector->count, "...and the count matches"); in main()
68 is_int(4, copy->count, "...and has right count"); in main()
69 is_int(4, copy->allocated, "...and has right allocated count"); in main()
78 is_int(0, vector->count, "vector_clear works"); in main()
79 is_int(4, vector->allocated, "...but doesn't free the allocation"); in main()
85 is_int(2, vector->count, "added two strings to the vector"); in main()
88 is_int(1, vector->count, "vector_resize shrinks the vector"); in main()
97 is_int(3, vector->count, "vector_split_multi returns right count"); in main()
105 is_int(0, vector->count, "vector_split_multi reuse with empty string"); in main()
106 is_int(3, vector->allocated, "...and doesn't free allocation"); in main()
109 is_int(1, vector->count, "vector_split_multi with extra separators"); in main()
112 is_int(0, vector->count, "vector_split_multi with only separators"); in main()