Added test cases for signal emission.
Signals are emitted from C++ and Python.
Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
Lauro Moura <lauro.neto@openbossa.org>
This commit is contained in:
parent
b9679215b8
commit
bcba2a3b32
5 changed files with 164 additions and 0 deletions
|
|
@ -12,3 +12,15 @@ TestObject::emitStaticMethodDoubleSignal()
|
|||
emit staticMethodDouble();
|
||||
}
|
||||
|
||||
void
|
||||
TestObject::emitSignalWithDefaultValue_void()
|
||||
{
|
||||
emit signalWithDefaultValue();
|
||||
}
|
||||
|
||||
void
|
||||
TestObject::emitSignalWithDefaultValue_bool()
|
||||
{
|
||||
emit signalWithDefaultValue(true);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue