blob: 02118c7b086d37cea15687746611b6ac1a0865e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
@page DII Test README File
The goals of writing this test are:
- Test all possible variations of DII calling schemes:
o Synchronous twoway DII (i.e. using Request::invoke)
o Deferred twoway DII (i.e. using Request::send_deferred/Request::get_response)
o Deferred twoway DII with polling (i.e. using Request::send_deferred/Request::poll_response)
o Oneway DII (i.e. using Request::send_oneway)
To run the test use the run_test.pl script:
$ ./run_test.pl
the script returns 0 if the test was successful.
*/
|