Content deleted Content added
Line 138:
==Test first, implement next==
As with most agile development techniques Behavior Driven Development promotes a short test/implement/improve cycle. Testing before
===Test===
Line 153:
</nowiki></pre>
After writing the test the project should compile correctly. This means the <code>PrimeCalculator</code> and <code>EratosthenesPrimesCalculator</code> classes should exist and
<pre><nowiki>
Line 170:
===Implement===
Once the behavioral test compiles, the classes that are tested may be implemented (preferably before other tests are written). Their implementation is finished when the behavioral tests
===Improve===
When the behavioral test works correctly, developers may improve the implementation to work more efficiently. This can happen right after the implementation or at a later time.
==Setting behavioral priorities==
|