File: README.md

package info (click to toggle)
robot-testing-framework 2.0.1%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,764 kB
  • sloc: cpp: 7,408; ansic: 4,493; ada: 200; perl: 160; python: 52; makefile: 35; ruby: 25; xml: 11
file content (31 lines) | stat: -rw-r--r-- 847 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
The example shows how to develop a test case using
Ada programing language which can be executed using
the Robot Testing Framework `robottestingframework-testrunner`.

Compilation
-----------
Build the project using gnat build system by specifying
the Robot Testing Framework root directory in `RobotTestingFramework_ROOT`.
For example:

```
    $ mkdir build plugin
    $ gprbuild -P mytest.gpr -XRobotTestingFramework_ROOT=/home/foo/robot-testing
```

Alternatively you can set the `RobotTestingFramework_ROOT` environment variable
to point to the RobotTestingFramework root directory; then build the plug-in:

```
    $ mkdir build plugin
    $ gprbuild -P mytest.gpr
```

Running the test case
---------------------
Simply use the `robottestingframework-testrunner` :

```
    $ robottestingframework-testrunner -v -t plugin/libmytest.so
```