gitignore files added xml_report plugin activated
@ -1,3 +1,6 @@
.vscode
build
cmake-build-debug
CMakeLists.txt
.idea
*.out
@ -97,5 +97,6 @@
- "#{Ceedling.load_path}"
:enabled:
- stdout_pretty_tests_report
- xml_tests_report
- module_generator
...
@ -0,0 +1,8 @@
#include "inputHandling.h"
#include <stdio.h>
char a[200];
void input(){
scanf("%s", a);
}
@ -0,0 +1,6 @@
#ifndef INPUTHANDLING_H
#define INPUTHANDLING_H
extern void input();
#endif // INPUTHANDLING_H
@ -1,4 +1,6 @@
#include "helloWorld.h"
void main() {
input();
@ -0,0 +1,20 @@
#ifdef TEST
#include "unity.h"
void setUp(void)
{
void tearDown(void)
void test_inputHandling_NeedToImplement(void)
TEST_IGNORE_MESSAGE("Need to Implement inputHandling");
#endif // TEST