@@ -24,8 +24,8 @@ def compose(self):
2424
2525
2626class ScriptOutputType (str , Enum ):
27- UNIT_TEST_OUTPUT_TEXT = "Unit tests: "
28- CONFORMANCE_TEST_OUTPUT_TEXT = "Conformance tests: "
27+ UNIT_TEST_OUTPUT_TEXT = "Unit tests output : "
28+ CONFORMANCE_TEST_OUTPUT_TEXT = "Conformance tests output : "
2929 TESTING_ENVIRONMENT_OUTPUT_TEXT = "Testing environment preparation execution output: "
3030
3131 @staticmethod
@@ -260,8 +260,8 @@ def _refresh_content(self) -> None:
260260
261261 def on_mount (self ) -> None :
262262 """Initialize default labels on mount."""
263- self .module_text = "module : "
264- self .functionality_text = "functionality :"
263+ self .module_text = "Module : "
264+ self .functionality_text = "Functionality :"
265265 self ._refresh_content ()
266266
267267 def compose (self ):
@@ -326,7 +326,7 @@ def on_mount(self) -> None:
326326 self ._refresh_content ()
327327
328328 def compose (self ):
329- yield Static ("latest test scripts " , classes = "test-scripts-title" )
329+ yield Static ("testing status " , classes = "test-scripts-title" )
330330 with Vertical (classes = "test-scripts-box" ):
331331 self .unit_widget = Static (self .unit_test_text , classes = "test-script-row" )
332332 self .conformance_widget = Static (self .conformance_test_text , classes = "test-script-row" )
@@ -378,24 +378,26 @@ def on_mount(self) -> None:
378378
379379 def compose (self ):
380380 yield RenderingInfoBox ()
381- yield ProgressItem (
382- self .IMPLEMENTING_FUNCTIONALITY_TEXT ,
383- id = TUIComponents .FRID_PROGRESS_RENDER_FR .value ,
384- )
385- if self .unittests_script is not None :
381+ yield Static ("rendering status" , classes = "frid-state-machine-title" )
382+ with Vertical (classes = "frid-state-machine-box" ):
386383 yield ProgressItem (
387- self .UNIT_TEST_VALIDATION_TEXT ,
388- id = TUIComponents .FRID_PROGRESS_UNIT_TEST .value ,
384+ self .IMPLEMENTING_FUNCTIONALITY_TEXT ,
385+ id = TUIComponents .FRID_PROGRESS_RENDER_FR .value ,
389386 )
390- yield ProgressItem (
391- self . REFACTORING_TEXT ,
392- id = TUIComponents . FRID_PROGRESS_REFACTORING . value ,
393- )
394- if self . conformance_tests_script is not None :
387+ if self . unittests_script is not None :
388+ yield ProgressItem (
389+ self . UNIT_TEST_VALIDATION_TEXT ,
390+ id = TUIComponents . FRID_PROGRESS_UNIT_TEST . value ,
391+ )
395392 yield ProgressItem (
396- self .CONFORMANCE_TEST_VALIDATION_TEXT ,
397- id = TUIComponents .FRID_PROGRESS_CONFORMANCE_TEST .value ,
393+ self .REFACTORING_TEXT ,
394+ id = TUIComponents .FRID_PROGRESS_REFACTORING .value ,
398395 )
396+ if self .conformance_tests_script is not None :
397+ yield ProgressItem (
398+ self .CONFORMANCE_TEST_VALIDATION_TEXT ,
399+ id = TUIComponents .FRID_PROGRESS_CONFORMANCE_TEST .value ,
400+ )
399401
400402
401403class LogEntry (Vertical ):
0 commit comments