Command line tests

Precondition for all test is, that the D-Bus session is launched:
$export `dbus-launch`

---------------------------------------------------------------------------------------------------------------------
Interface:
org.agl.appframework

Method:
	<method name="getAvailableApps">
		<arg name="apps" type="{ssiisssss}" direction="out"/>
		<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QList&lt;AppInfo&gt;"/>
	</method>

Preconditions:
- HomeScreenAppFrameworkBinderAGL app is running

Test:
$dbus-send --session --type=method_call --print-reply --dest=org.agl.homescreenappframeworkbinder /AppFramework org.agl.appframework.getAvailableApps

Method:
	<method name="launchApp">
		<arg name="name" type="s" direction="in"/>
		<arg name="pid" type="i" direction="out"/>
	</method>

Preconditions:
- HomeScreenAppFrameworkBinderAGL app is running

Test:
$dbus-send --session --type=method_call --print-reply --dest=org.agl.homescreenappframeworkbinder /AppFramework org.agl.appframework.launchApp string:"hvac@0.1"



