Jump to content

Translations:KDevelop5/Manual/Code generation with templates/76/en: Difference between revisions

From KDE Wiki Sandbox
FuzzyBot (talk | contribs)
Importing a new version from external source
 
FuzzyBot (talk | contribs)
Importing a new version from external source
 
Line 1: Line 1:
* testNameOfDriver{{Input|1=<nowiki>void TestBus::testNameOfDriver()
* testNameOfDriver<syntaxhighlight lang="cpp" line>void TestBus::testNameOfDriver()
{
{
     m_bus.setNameOfDriver(QString("Billy"));
     m_bus.setNameOfDriver(QString("Billy"));
     QVERIFY(m_bus.nameOfDriver() == QString("Billy"));
     QVERIFY(m_bus.nameOfDriver() == QString("Billy"));
}</nowiki>}}
}</syntaxhighlight>

Latest revision as of 08:38, 2 April 2020

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (KDevelop5/Manual/Code generation with templates)
* testNameOfDriver<syntaxhighlight lang="cpp" line>void TestBus::testNameOfDriver()
{
   m_bus.setNameOfDriver(QString("Billy"));
   QVERIFY(m_bus.nameOfDriver() == QString("Billy"));
}</syntaxhighlight>
  • testNameOfDriver
    void TestBus::testNameOfDriver()
    {
        m_bus.setNameOfDriver(QString("Billy"));
        QVERIFY(m_bus.nameOfDriver() == QString("Billy"));
    }