aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGertjan van den Burg <burg@ese.eur.nl>2016-10-24 14:54:11 +0200
committerGertjan van den Burg <burg@ese.eur.nl>2016-10-24 14:54:11 +0200
commitaa75c36976e7502b01d3bd0c9cd800abcf4e3634 (patch)
treed2ab1976de4edee4372e579ee01a937d1c8d1a93 /tests
parentfix problems with dense ZV computation when data->n < model->n (diff)
downloadgensvm-aa75c36976e7502b01d3bd0c9cd800abcf4e3634.tar.gz
gensvm-aa75c36976e7502b01d3bd0c9cd800abcf4e3634.zip
update copyright information
Diffstat (limited to 'tests')
-rw-r--r--tests/src/test_gensvm_base.c23
-rw-r--r--tests/src/test_gensvm_cmdarg.c23
-rw-r--r--tests/src/test_gensvm_copy.c23
-rw-r--r--tests/src/test_gensvm_cv_util.c23
-rw-r--r--tests/src/test_gensvm_debug.c23
-rw-r--r--tests/src/test_gensvm_grid.c23
-rw-r--r--tests/src/test_gensvm_init.c23
-rw-r--r--tests/src/test_gensvm_io.c23
-rw-r--r--tests/src/test_gensvm_optimize.c23
-rw-r--r--tests/src/test_gensvm_predict.c24
-rw-r--r--tests/src/test_gensvm_print.c23
-rw-r--r--tests/src/test_gensvm_queue.c23
-rw-r--r--tests/src/test_gensvm_simplex.c23
-rw-r--r--tests/src/test_gensvm_sparse.c23
-rw-r--r--tests/src/test_gensvm_strutil.c23
-rw-r--r--tests/src/test_gensvm_sv.c23
-rw-r--r--tests/src/test_gensvm_task.c23
-rw-r--r--tests/src/test_gensvm_timer.c22
-rw-r--r--tests/src/test_gensvm_update.c23
-rw-r--r--tests/src/test_gensvm_zv.c22
20 files changed, 411 insertions, 48 deletions
diff --git a/tests/src/test_gensvm_base.c b/tests/src/test_gensvm_base.c
index 89319c5..b6ac983 100644
--- a/tests/src/test_gensvm_base.c
+++ b/tests/src/test_gensvm_base.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_base.c
- * @author Gertjan van den Burg
- * @date May, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-05-01
* @brief Unit tests for gensvm_base.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_cmdarg.c b/tests/src/test_gensvm_cmdarg.c
index 2ba8958..61dd31d 100644
--- a/tests/src/test_gensvm_cmdarg.c
+++ b/tests/src/test_gensvm_cmdarg.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_cmdarg.c
- * @author Gertjan van den Burg
- * @date May, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-05-01
* @brief Unit tests for gensvm_cmdarg.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_copy.c b/tests/src/test_gensvm_copy.c
index a9636bb..0064eb9 100644
--- a/tests/src/test_gensvm_copy.c
+++ b/tests/src/test_gensvm_copy.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_copy.c
- * @author Gertjan van den Burg
- * @date May, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-05-01
* @brief Unit tests for gensvm_copy.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_cv_util.c b/tests/src/test_gensvm_cv_util.c
index 2d6ecb7..73d41ee 100644
--- a/tests/src/test_gensvm_cv_util.c
+++ b/tests/src/test_gensvm_cv_util.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_cv_util.c
- * @author Gertjan van den Burg
- * @date May, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-05-01
* @brief Unit tests for gensvm_cv_util.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_debug.c b/tests/src/test_gensvm_debug.c
index 5a20dcd..e534e42 100644
--- a/tests/src/test_gensvm_debug.c
+++ b/tests/src/test_gensvm_debug.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_debug.c
- * @author Gertjan van den Burg
- * @date September, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-09-01
* @brief Unit tests for gensvm_io.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_grid.c b/tests/src/test_gensvm_grid.c
index 6979c5b..cbec852 100644
--- a/tests/src/test_gensvm_grid.c
+++ b/tests/src/test_gensvm_grid.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_grid.c
- * @author Gertjan van den Burg
- * @date May, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-05-01
* @brief Unit tests for gensvm_grid.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_init.c b/tests/src/test_gensvm_init.c
index 16f5dfd..6adc65e 100644
--- a/tests/src/test_gensvm_init.c
+++ b/tests/src/test_gensvm_init.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_init.c
- * @author Gertjan van den Burg
- * @date August, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-08-01
* @brief Unit tests for gensvm_init.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_io.c b/tests/src/test_gensvm_io.c
index 208b894..7c7b226 100644
--- a/tests/src/test_gensvm_io.c
+++ b/tests/src/test_gensvm_io.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_io.c
- * @author Gertjan van den Burg
- * @date September, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-09-01
* @brief Unit tests for gensvm_io.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_optimize.c b/tests/src/test_gensvm_optimize.c
index c233ec3..a983ec1 100644
--- a/tests/src/test_gensvm_optimize.c
+++ b/tests/src/test_gensvm_optimize.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_optimize.c
- * @author Gertjan van den Burg
- * @date September, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-09-01
* @brief Unit tests for gensvm_optimize.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_predict.c b/tests/src/test_gensvm_predict.c
index eb715c5..ef8df27 100644
--- a/tests/src/test_gensvm_predict.c
+++ b/tests/src/test_gensvm_predict.c
@@ -1,9 +1,29 @@
/**
* @file test_gensvm_predict.c
- * @author Gertjan van den Burg
- * @date September, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-09-01
* @brief Unit tests for gensvm_predict.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
+
#include "minunit.h"
#include "gensvm_predict.h"
diff --git a/tests/src/test_gensvm_print.c b/tests/src/test_gensvm_print.c
index 761f820..0f7bf33 100644
--- a/tests/src/test_gensvm_print.c
+++ b/tests/src/test_gensvm_print.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_print.c
- * @author Gertjan van den Burg
- * @date September, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-09-01
* @brief Unit tests for gensvm_print.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_queue.c b/tests/src/test_gensvm_queue.c
index e247178..7e57d17 100644
--- a/tests/src/test_gensvm_queue.c
+++ b/tests/src/test_gensvm_queue.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_queue.c
- * @author Gertjan van den Burg
- * @date May, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-05-01
* @brief Unit tests for gensvm_queue.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_simplex.c b/tests/src/test_gensvm_simplex.c
index c217ca0..61a1825 100644
--- a/tests/src/test_gensvm_simplex.c
+++ b/tests/src/test_gensvm_simplex.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_simplex.c
- * @author Gertjan van den Burg
- * @date May, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-05-01
* @brief Unit tests for gensvm_simplex.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_sparse.c b/tests/src/test_gensvm_sparse.c
index 27f3e20..95c5910 100644
--- a/tests/src/test_gensvm_sparse.c
+++ b/tests/src/test_gensvm_sparse.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_sparse.c
- * @author Gertjan van den Burg
- * @date May, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-05-01
* @brief Unit tests for gensvm_sparse.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_strutil.c b/tests/src/test_gensvm_strutil.c
index 520560f..d164e4e 100644
--- a/tests/src/test_gensvm_strutil.c
+++ b/tests/src/test_gensvm_strutil.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_strutil.c
- * @author Gertjan van den Burg
- * @date May, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-05-01
* @brief Unit tests for gensvm_strutil.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_sv.c b/tests/src/test_gensvm_sv.c
index f6ea0e2..428eddb 100644
--- a/tests/src/test_gensvm_sv.c
+++ b/tests/src/test_gensvm_sv.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_sv.c
- * @author Gertjan van den Burg
- * @date May, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-05-01
* @brief Unit tests for gensvm_sv.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_task.c b/tests/src/test_gensvm_task.c
index e39634b..0dcd825 100644
--- a/tests/src/test_gensvm_task.c
+++ b/tests/src/test_gensvm_task.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_task.c
- * @author Gertjan van den Burg
- * @date May, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-05-01
* @brief Unit tests for gensvm_task.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_timer.c b/tests/src/test_gensvm_timer.c
index 78e968f..8c8395d 100644
--- a/tests/src/test_gensvm_timer.c
+++ b/tests/src/test_gensvm_timer.c
@@ -1,9 +1,27 @@
/**
* @file test_gensvm_timer.c
- * @author Gertjan van den Burg
- * @date October, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-10-01
* @brief Unit tests for gensvm_timer.c functions
*
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_update.c b/tests/src/test_gensvm_update.c
index e0314e5..ed3551c 100644
--- a/tests/src/test_gensvm_update.c
+++ b/tests/src/test_gensvm_update.c
@@ -1,8 +1,27 @@
/**
* @file test_gensvm_update.c
- * @author Gertjan van den Burg
- * @date September, 2016
+ * @author G.J.J. van den Burg
+ * @date 2016-09-01
* @brief Unit tests for gensvm_update.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
+
+ This file is part of GenSVM.
+
+ GenSVM 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.
+
+ GenSVM 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 GenSVM. If not, see <http://www.gnu.org/licenses/>.
+
*/
#include "minunit.h"
diff --git a/tests/src/test_gensvm_zv.c b/tests/src/test_gensvm_zv.c
index 9fd206d..e207c16 100644
--- a/tests/src/test_gensvm_zv.c
+++ b/tests/src/test_gensvm_zv.c
@@ -1,24 +1,26 @@
/**
* @file test_gensvm_zv.c
- * @author Gertjan van den Burg
+ * @author G.J.J. van den Burg
* @date 2016-10-17
* @brief Unit tests for gensvm_zv.c functions
+ *
+ * @copyright
+ Copyright 2016, G.J.J. van den Burg.
- * Copyright (C)
+ This file is part of GenSVM.
- This program 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 2
- of the License, or (at your option) any later version.
+ GenSVM 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.
- This program is distributed in the hope that it will be useful,
+ GenSVM 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
+ 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 this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ along with GenSVM. If not, see <http://www.gnu.org/licenses/>.
*/