diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-31 15:41:41 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:48 +0200 |
commit | 6b119a365b6c04279104f123456ed841b2ce987f (patch) | |
tree | edcb2ecc1d4ce256455d34ec431aac39de6485ea /test-widget/test-config.xml.in | |
parent | 48d3aa53006303379e455e8c56f7f1670e06270f (diff) |
Create a test widget
Create a test widget in addition of the normal one when you use
any build type except of RELEASE. This widget will only
provide the test files (configuration + test + fixtures ...).
It joins the test framework binding to your binding or app then
you only have to access to your defined test API and launch the
tests.
The entry point is a bash script which is in charge to launch all
tests it finds.
Change-Id: I8f4a670f17fd4e4319c53a861074fb5e10b63aad
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'test-widget/test-config.xml.in')
-rw-r--r-- | test-widget/test-config.xml.in | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test-widget/test-config.xml.in b/test-widget/test-config.xml.in new file mode 100644 index 0000000..3252c4b --- /dev/null +++ b/test-widget/test-config.xml.in @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<widget xmlns="http://www.w3.org/ns/widgets" id="@PROJECT_NAME@-test" version="@PROJECT_VERSION@"> + <name>@PROJECT_NAME@-test</name> + <icon src="@PROJECT_ICON@"/> + <content src="bin/launcher" type="application/vnd.agl.native"/> + <description>Supplementary widget used to launch tests for the project @PROJECT_NAME@</description> + <author>Romain Forlot <romain.forlot@iot.bzh></author> + <license>APL2.0</license> + + <feature name="urn:AGL:widget:required-binding"> + <param name="aft" value="auto" /> + </feature> + + <feature name="urn:AGL:widget:required-api"> + <param name="@API_NAME@" value="auto" /> + </feature> + + <feature name="urn:AGL:widget:required-permission"> + <param name="urn:AGL:permission:test" value="required" /> + </feature> + + <feature name="urn:AGL:widget:file-properties"> + <param name="bin/launcher" value="executable" /> + </feature> +</widget> |