1
Fork 0
This repository has been archived on 2022-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
UOC_PP20212_PR/UOC20212/test/include/test_pr1.h
2022-04-01 15:58:20 +02:00

20 lines
No EOL
514 B
C

#ifndef __TEST_PR1_H__
#define __TEST_PR1_H__
#include <stdbool.h>
#include "test_suite.h"
// Run all tests for PR1
bool run_pr1(tTestSuite* test_suite, const char* input);
// Run tests for PR1 exercice 1
bool run_pr1_ex1(tTestSection* test_section, const char* input);
// Run tests for PR1 exercice 2
bool run_pr1_ex2(tTestSection* test_section, const char* input);
// Run tests for PR1 exercice 3
bool run_pr1_ex3(tTestSection* test_section, const char* input);
#endif // __TEST_PR1_H__