ObjFW  Diff

Differences From Artifact [545eb3e00b]:

To Artifact [12fd48a9aa]:


9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 * the packaging of this file.
 */

#import <stdio.h>
#import <stdlib.h>
#import <string.h>

#import <assert.h>

#import "OFXMLFactory.h"

/* TODO: Do not only print, but check if it's the output it should be */

inline int
test_concat()
{







<
<







9
10
11
12
13
14
15


16
17
18
19
20
21
22
 * the packaging of this file.
 */

#import <stdio.h>
#import <stdlib.h>
#import <string.h>



#import "OFXMLFactory.h"

/* TODO: Do not only print, but check if it's the output it should be */

inline int
test_concat()
{
129
130
131
132
133
134
135
136
137
138
139
140
141
	free(tmp);

	return 0;
}

int main()
{
	assert(test_escape() == 0);
	assert(test_create_stanza() == 0);
	assert(test_concat() == 0);

	return 0;
}







<
<
<
|
<

127
128
129
130
131
132
133



134

135
	free(tmp);

	return 0;
}

int main()
{



	return test_escape() + test_create_stanza() + test_concat();

}