Ceedling doesn't create Rakefile

1.4k Views Asked by At

I am trying to use Ceedling to create unit tests for my C-project. I wrote in terminal: -ceedling new My_Project_Name Ceedling creates a folder with name "My_Project_Name". But there is no Rakefile in this folder. What's wrong?

2

There are 2 best solutions below

0
On BEST ANSWER

There is no rakefile when creating new project in New version of Ceedling. Just use ceedling module:create[new_test] and ceedling test:all instead.

Just refer to this link: https://www.liuguogy.com/archives/Unity-C-build-system-Ceedling.html

1
On

To run the tests you just use the command

ceedling

without any arguments. The rakefile is located in the vendor directory (I think) if you want to see it but you shouldn't need to alter it.