--- a/landingpage/index.html +++ b/landingpage/index.html @@ -101,13 +101,13 @@ <div class="item"> <img src="img/unittest.png"> <div class="carousel-caption"> - Unit Test + Write a Test Method </div> </div> <div class="item"> <img src="img/programcall.png"> <div class="carousel-caption"> - Program Call + Run the Unit Test </div> </div> <div class="item"> @@ -147,18 +147,19 @@ <div class="row start"> <p class="col-md-4 col-sm-6"> <strong>Getting started</strong><br> - All you need to do is to download & install the library and provide a<br> - reference of the CfUnit-library in your project. Now you are ready and<br> - you can start to write your test code. + All you need to do is to download and install the package.<br> + Open a new project and add a reference of the CfUnit-library in your project.<br> + Now you are ready and you can start and write your test code. </p> <p><ul class="col-md-4 col-sm-6"> <strong>Follow these simple steps</strong> <ul> - <li>Extend <code>CfUnit.FB_TestSuite</code>,</li> + <li>Extend your test with <code>CfUnit.FB_TestSuite</code>,</li> <li>Add the attribute-pragma <code>{attribute ‘call_after_init’}</code>,</li> <li>Define the inputs and define the expected output (result),</li> <li>Call the CfUnit-assert methods to compare the expected output to the actual output,</li> <li>Close the test with <code>TEST_FINISHED()</code> when finished.</li> + <li>Call the test method from the main FB Body</li> </ul> </ul> </p>