Re: Unit-testing in same file
- Posted by SnakeCharmer Jul 27, 2012
- 1167 views
Thanks, I will be played with it tomorrow. Today I was too tired. One more question, the last for today.
Let's say I want to create big program. How to distribute functions between files? I correctly understand the most ideologically certain way? Each function (or a faithful set of mutually dependent functions) in the separate file. Test for each function in the separate file.
func1.e
func2.e
t_func1.e
t_func2.e
func2.e
t_func1.e
t_func2.e
Or my way has the right to existence too? How you do TDD? I don't want to invent a bicycle. I am a beginner both in Euphoria and in testing.