first sml_list test

This commit is contained in:
Juri Glass 2011-07-18 14:17:40 +02:00
parent a64b4d58e6
commit fc54f29a15
4 changed files with 44 additions and 2 deletions

View file

@ -26,8 +26,6 @@
#include <stdio.h>
sml_list *sml_list_init(){
sml_list *s = (sml_list *)malloc(sizeof(sml_list));
memset(s, 0, sizeof(sml_list));

View file

@ -13,6 +13,7 @@ OBJS = \
src/sml_boolean_test.o \
src/sml_value_test.o \
src/sml_status_test.o \
src/sml_list_test.o \
src/sml_file_test.o \
src/sml_message_test.o

42
test/src/sml_list_test.c Normal file
View file

@ -0,0 +1,42 @@
// Copyright 2011 Juri Glass, Mathias Runge, Nadim El Sayed
// DAI-Labor, TU-Berlin
//
// This file is part of libSML.
//
// libSML is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// libSML is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with libSML. If not, see <http://www.gnu.org/licenses/>.
#include "../unity/unity_fixture.h"
#include "test_helper.h"
#include <sml/sml_list.h>
TEST_GROUP(sml_list);
sml_buffer *buf;
TEST_SETUP(sml_list) {
buf = sml_buffer_init(512);
}
TEST_TEAR_DOWN(sml_list) {
sml_buffer_free(buf);
}
TEST(sml_list, init) {
sml_list *v = sml_list_init();
TEST_ASSERT_NOT_NULL(v);
}
TEST_GROUP_RUNNER(sml_list) {
RUN_TEST_CASE(sml_list, init);
}

View file

@ -25,6 +25,7 @@ static void runAllTests() {
RUN_TEST_GROUP(sml_boolean);
RUN_TEST_GROUP(sml_value);
RUN_TEST_GROUP(sml_status);
RUN_TEST_GROUP(sml_list);
RUN_TEST_GROUP(sml_message);
RUN_TEST_GROUP(sml_file);
}