robottestingframework-testrunner command not found

In this troubleshooting guide we learn how to fix robottestingframework-testrunner command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

robottestingframework-testrunner: command not found

or when using sudo you get the following error message

sudo: robottestingframework-testrunner: command not found

Solutions to robottestingframework-testrunner: command not found

How To Fix robottestingframework-testrunner: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu robottestingframework-testrunner is provided by robottestingframework-testrunner package.

robottestingframework-testrunner is:

It is a generic and multi-platform testing framework for the test driven development (TDD) which is initially designed for the robotic systems. However, it can be used for any TDD system. The framework provides functionalities for developing and running unit tests in a language and middleware independent manner. The test cases are developed as independent plug-ins (i.e., using scripting languages or built as dynamically loadable libraries) to be loaded and executed by an automated test runner. Moreover, a fixture manager prepares the setup (e.g., running robot interfaces, simulator) and actively monitors that all the requirements for running the tests are satisfied during the execution of the tests. These functionalities along with other facilities such as the test result collector, result formatter and remote interface allow for rapid development of test units to cover different levels of system testing.

This package contains the robottestingframework-testrunner executable.

To fix this problem, we can install more using the command below.

sudo apt-get -y install robottestingframework-testrunner

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install robottestingframework-testrunner.

sudo apt -y install robottestingframework-testrunner

Or if you have aptitude installed you can use the following command.

sudo aptitude install robottestingframework-testrunner

Summary

In this tutorial we learn how to fix robottestingframework-testrunner command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.