meekrosoft / fff

A testing micro framework for creating function test doubles
Other
749 stars 163 forks source link

Can FFF be used to generate the actual fake implementation? #103

Open jordiae opened 2 years ago

jordiae commented 2 years ago

Hi, many thanks for your work. I'm trying to understand the usage and scope of this library. Can it be used to generate the actual fake definition? Say I have int f();, can I automatically generate say int f() { return 3;}) with FFF? Must the TEST_F() functions in the README of this repo have to be implemented by the user? Thanks!