12 lines
167 B
C
12 lines
167 B
C
#include "testing-prototype.h"
|
|
#include "../Object.h"
|
|
|
|
|
|
int main() {
|
|
BEGIN_TESTING(Object);
|
|
|
|
struct _Object *ob = Object_new(ObjectClass);
|
|
|
|
END_TESTING;
|
|
}
|