From c627ab341bd50c589f7c6c1c8ff5d82d26066fa5 Mon Sep 17 00:00:00 2001
From: Olivier Stasse <ostasse@laas.fr>
Date: Mon, 3 Apr 2023 11:56:00 +0200
Subject: [PATCH] Add explanations to generate the tests.

---
 README.md | 44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/README.md b/README.md
index 4b7cc80..128c5ac 100644
--- a/README.md
+++ b/README.md
@@ -7,3 +7,47 @@ dynamic-graph bindings
 
 This ROS package binds together the ROS framework with the
 dynamic-graph real-time control architecture.
+
+
+## ROS 2
+
+### Introduction
+
+To use this package you need to be in a ROS 2 workspace.
+
+If you did not have one, you should first create it :
+```
+mkdir -p sot_ws/src
+cd sot_ws/src
+```
+###
+
+### Compile and Install
+
+To build this package after installing all the dependencies:
+```
+cd sot_ws
+colcon build --merge-install --packages-select dynamic_graph_bridge
+```
+
+### Test
+
+To test it:
+```
+colcon test --packages-select dynamic_graph_bridge
+```
+
+This command should create a directory in the ````log```` directory:
+```
+test_dateoftoday
+```
+
+Inside this directory there is another directory called ````dynamic_graph_bridge````
+
+In this directory the file ```stdout_stderr.log``` contains the results of the tests.
+
+If one of the test failed you will see the output in this specific file.
+To summarize, if you are at the root of your worspace, the file is located here:
+```
+./log/test_dateoftoday/dynamic_graph_bridge/stdout_stderr.log
+```
-- 
GitLab