I am trying to develop a test application. When the application runs, it will show all the test names in a list format.
"START"
Test 1: TEST_NAME_ONE ............
Test 2: TEST_NAME_TWO ............
Test 3: TEST_NAME_THREE ...........
Test 4: TEST_NAME_FOUR ...........
An user will click the "START" button to start the tests. Once a test is completed, I want to display the result status icon next to it. The status icon is in PNG format.
"START"
Test 1: TEST_NAME_ONE ............ PASS
Test 2: TEST_NAME_TWO ............ FAIL
Test 3: TEST_NAME_THREE ...........
Test 4: TEST_NAME_FOUR ...........
I am not really sure how to get this to work. Any help would be appreciated! Thanks!
Comson