@abstractmethod
def test(self) -> Coroutine[Any, Any, TestResult]:
"""Core of the test logic.
@@ -3692,7 +3694,7 @@
ofmt: eAPI output - json or text.
output: Output of the command populated by the collect() function
template: AntaTemplate object used to render this command
-params: Dictionary of variables with string values to render the template
+params: Pydantic Model containing the variables values used to render the template
errors: If the command execution fails, eAPI returns a list of strings detailing the error
use_cache: Enable or disable caching for this AntaCommand if the AntaDevice supports it.
@@ -3901,7 +3903,7 @@