Initial commit

This commit is contained in:
github-classroom[bot] 2025-01-14 11:07:40 +00:00 committed by GitHub
commit 87dcb960bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
67 changed files with 6733 additions and 0 deletions

26
test_toh_solver.h Normal file
View file

@ -0,0 +1,26 @@
/*----------------------------------------------------------
* HTBLA-Leonding / Klasse: n/a
* ---------------------------------------------------------
* Exercise Number: 09
* Title: Unit Tests for Boolean Term
* Author: S. Schraml
* Due Date: n/a
* ----------------------------------------------------------
* Description:
* Test functions for ADT ToH Disk.
* ----------------------------------------------------------
*/
#ifndef ___TEST_TOH_SOLVER_H
#define ___TEST_TOH_SOLVER_H
#include "shortcut.h"
TEST(test_ts_init__with_one_disk);
TEST(test_ts_init__with_many_disks);
TEST(test_ts_init__subsequent_inits);
TEST(test_ts_solve__one);
TEST(test_ts_solve__two);
TEST(test_ts_solve__three);
#endif