test/test-king.c

Thu, 03 Sep 2026 12:13:05 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 03 Sep 2026 12:13:05 +0200
changeset 214
31d73d150c76
parent 213
cf7b86d79d35
permissions
-rw-r--r--

make all should really build all (including the tests)

we removed the tests from the all-target initially
because they will cause warnings with compilers not
supporting C23

but we should not care too much about this

213
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
1 /*
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
3 *
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
4 * Copyright 2026 Mike Becker. All rights reserved.
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
5 *
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
6 * Redistribution and use in source and binary forms, with or without
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
7 * modification, are permitted provided that the following conditions are met:
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
8 *
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
9 * 1. Redistributions of source code must retain the above copyright
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
10 * notice, this list of conditions and the following disclaimer.
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
11 *
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
12 * 2. Redistributions in binary form must reproduce the above copyright
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
13 * notice, this list of conditions and the following disclaimer in the
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
14 * documentation and/or other materials provided with the distribution.
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
15 *
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
26 * POSSIBILITY OF SUCH DAMAGE.
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
27 *
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
28 */
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
29
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
30 #include "chess/rules.h"
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
31 #include "ucxtest.h"
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
32
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
33
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
34
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
35 CxTestSuite* test_king_suite(void) {
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
36 CxTestSuite* suite = cx_test_suite_new("Test King Moves");
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
37
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
38 return suite;
cf7b86d79d35 add (empty) test suites for all pieces
Mike Becker <universe@uap-core.de>
parents:
diff changeset
39 }

mercurial