diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-07-04 11:38:45 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-07-04 13:27:33 +0200 |
commit | 7c83ee02f22bed1166d3ffed208679fd016bb4b6 (patch) | |
tree | 91f3664c44f2903b57cbea5f81c249b286ea1702 /doc | |
parent | 8dc75564c2c799fae37014604d3cb085b6fe9699 (diff) | |
download | weechat-7c83ee02f22bed1166d3ffed208679fd016bb4b6.zip |
tests: add tests on typing plugin functions
Diffstat (limited to 'doc')
-rw-r--r-- | doc/en/weechat_dev.en.adoc | 99 | ||||
-rw-r--r-- | doc/fr/weechat_dev.fr.adoc | 99 | ||||
-rw-r--r-- | doc/ja/weechat_dev.ja.adoc | 102 | ||||
-rw-r--r-- | doc/sr/weechat_dev.sr.adoc | 102 |
4 files changed, 210 insertions, 192 deletions
diff --git a/doc/en/weechat_dev.en.adoc b/doc/en/weechat_dev.en.adoc index 30d3ea9f0..89bc93b1d 100644 --- a/doc/en/weechat_dev.en.adoc +++ b/doc/en/weechat_dev.en.adoc @@ -389,54 +389,57 @@ WeeChat "core" is located in following directories: [width="100%",cols="2m,3",options="header"] |=== -| Path/file | Description -| tests/ | Root of tests. -| tests.cpp | Program used to run all tests. -| scripts/ | Root of scripting API tests. -| test-scripts.cpp | Program used to run the scripting API tests. -| python/ | Python scripts to generate and run the scripting API tests. -| testapigen.py | Python script generating scripts in all languages to test the scripting API. -| testapi.py | Python script with scripting API tests, used by script testapigen.py. -| unparse.py | Convert Python code to other languages, used by script testapigen.py. -| unit/ | Root of unit tests. -| test-plugins.cpp | Tests: plugins. -| core/ | Root of unit tests for core. -| test-core-arraylist.cpp | Tests: arraylists. -| test-core-calc.cpp | Tests: calculation of expressions. -| test-core-crypto.cpp | Tests: cryptographic functions. -| test-core-dir.cpp | Tests: directory/file functions. -| test-core-eval.cpp | Tests: evaluation of expressions. -| test-core-hashtble.cpp | Tests: hashtables. -| test-core-hdata.cpp | Tests: hdata. -| test-core-hook.cpp | Tests: hooks. -| test-core-infolist.cpp | Tests: infolists. -| test-core-list.cpp | Tests: lists. -| test-core-network.cpp | Tests: network functions. -| test-core-secure.cpp | Tests: secured data. -| test-core-signal.cpp | Tests: signals. -| test-core-string.cpp | Tests: strings. -| test-core-url.cpp | Tests: URLs. -| test-core-utf8.cpp | Tests: UTF-8. -| test-core-util.cpp | Tests: utility functions. -| gui/ | Root of unit tests for interfaces. -| test-gui-color.cpp | Tests: colors. -| test-gui-line.cpp | Tests: lines. -| test-gui-nick.cpp | Tests: nicks. -| plugins/ | Root of unit tests for plugins. -| irc/ | Root of unit tests for IRC plugin. -| test-irc-channel.cpp | Tests: IRC channels. -| test-irc-color.cpp | Tests: IRC colors. -| test-irc-config.cpp | Tests: IRC configuration. -| test-irc-ignore.cpp | Tests: IRC ignores. -| test-irc-message.cpp | Tests: IRC messages. -| test-irc-mode.cpp | Tests: IRC modes. -| test-irc-nick.cpp | Tests: IRC nicks. -| test-irc-protocol.cpp | Tests: IRC protocol. -| test-irc-server.cpp | Tests: IRC server. -| trigger/ | Root of unit tests for trigger plugin. -| test-trigger.cpp | Tests: triggers. -| relay/ | Root of unit tests for Relay plugin. -| test-relay-auth.cpp | Tests: clients authentication. +| Path/file | Description +| tests/ | Root of tests. +| tests.cpp | Program used to run all tests. +| scripts/ | Root of scripting API tests. +| test-scripts.cpp | Program used to run the scripting API tests. +| python/ | Python scripts to generate and run the scripting API tests. +| testapigen.py | Python script generating scripts in all languages to test the scripting API. +| testapi.py | Python script with scripting API tests, used by script testapigen.py. +| unparse.py | Convert Python code to other languages, used by script testapigen.py. +| unit/ | Root of unit tests. +| test-plugins.cpp | Tests: plugins. +| core/ | Root of unit tests for core. +| test-core-arraylist.cpp | Tests: arraylists. +| test-core-calc.cpp | Tests: calculation of expressions. +| test-core-crypto.cpp | Tests: cryptographic functions. +| test-core-dir.cpp | Tests: directory/file functions. +| test-core-eval.cpp | Tests: evaluation of expressions. +| test-core-hashtble.cpp | Tests: hashtables. +| test-core-hdata.cpp | Tests: hdata. +| test-core-hook.cpp | Tests: hooks. +| test-core-infolist.cpp | Tests: infolists. +| test-core-list.cpp | Tests: lists. +| test-core-network.cpp | Tests: network functions. +| test-core-secure.cpp | Tests: secured data. +| test-core-signal.cpp | Tests: signals. +| test-core-string.cpp | Tests: strings. +| test-core-url.cpp | Tests: URLs. +| test-core-utf8.cpp | Tests: UTF-8. +| test-core-util.cpp | Tests: utility functions. +| gui/ | Root of unit tests for interfaces. +| test-gui-color.cpp | Tests: colors. +| test-gui-line.cpp | Tests: lines. +| test-gui-nick.cpp | Tests: nicks. +| plugins/ | Root of unit tests for plugins. +| irc/ | Root of unit tests for IRC plugin. +| test-irc-channel.cpp | Tests: IRC channels. +| test-irc-color.cpp | Tests: IRC colors. +| test-irc-config.cpp | Tests: IRC configuration. +| test-irc-ignore.cpp | Tests: IRC ignores. +| test-irc-message.cpp | Tests: IRC messages. +| test-irc-mode.cpp | Tests: IRC modes. +| test-irc-nick.cpp | Tests: IRC nicks. +| test-irc-protocol.cpp | Tests: IRC protocol. +| test-irc-server.cpp | Tests: IRC server. +| trigger/ | Root of unit tests for trigger plugin. +| test-trigger.cpp | Tests: triggers. +| typing/ | Root of unit tests for typing plugin. +| test-typing.cpp | Tests: typing. +| test-typing-status.cpp | Tests: typing status. +| relay/ | Root of unit tests for Relay plugin. +| test-relay-auth.cpp | Tests: clients authentication. |=== diff --git a/doc/fr/weechat_dev.fr.adoc b/doc/fr/weechat_dev.fr.adoc index f60f76b18..76efc06ec 100644 --- a/doc/fr/weechat_dev.fr.adoc +++ b/doc/fr/weechat_dev.fr.adoc @@ -391,54 +391,57 @@ Le cœur de WeeChat est situé dans les répertoires suivants : [width="100%",cols="2m,3",options="header"] |=== -| Chemin/fichier | Description -| tests/ | Racine des tests. -| tests.cpp | Programme utilisé pour lancer tous les tests. -| scripts/ | Racine des tests de l'API script. -| test-scripts.cpp | Programme utilisé pour lancer les tests de l'API script. -| python/ | Scripts Python pour générer et lancer les tests de l'API script. -| testapigen.py | Script Python générant des scripts dans tous les languages pour tester l'API script. -| testapi.py | Script Python avec les tests API, utilisé par le script testapigen.py. -| unparse.py | Conversion de code Python vers d'autres langages, utilisé par le script testapigen.py. -| unit/ | Racine des tests unitaires. -| test-plugins.cpp | Tests : extensions. -| core/ | Racine des tests unitaires pour le cœur. -| test-core-arraylist.cpp | Tests : listes avec tableau (« arraylists »). -| test-core-calc.cpp | Tests : calcul d'expressions. -| test-core-crypto.cpp | Tests : fonctions cryptographiques. -| test-core-dir.cpp | Tests : répertoires/fichiers. -| test-core-eval.cpp | Tests : évaluation d'expressions. -| test-core-hashtble.cpp | Tests : tables de hachage. -| test-core-hdata.cpp | Tests : hdata. -| test-core-hook.cpp | Tests : hooks. -| test-core-infolist.cpp | Tests : infolists. -| test-core-list.cpp | Tests : listes. -| test-core-network.cpp | Tests : fonctions réseau. -| test-core-secure.cpp | Tests : données sécurisées. -| test-core-signal.cpp | Tests : signaux. -| test-core-string.cpp | Tests : chaînes. -| test-core-url.cpp | Tests : URLs. -| test-core-utf8.cpp | Tests : UTF-8. -| test-core-util.cpp | Tests : fonctions utiles. -| gui/ | Racine des tests unitaires pour les interfaces. -| test-gui-color.cpp | Tests : couleurs. -| test-gui-line.cpp | Tests : lignes. -| test-gui-nick.cpp | Tests : pseudos. -| plugins/ | Racine des tests unitaires pour les extensions. -| irc/ | Racine des tests unitaires pour l'extension IRC. -| test-irc-channel.cpp | Tests : canaux IRC. -| test-irc-color.cpp | Tests : couleurs IRC. -| test-irc-config.cpp | Tests : configuration IRC. -| test-irc-ignore.cpp | Tests : ignores IRC. -| test-irc-message.cpp | Tests : messages IRC. -| test-irc-mode.cpp | Tests : modes IRC. -| test-irc-nick.cpp | Tests : pseudos IRC. -| test-irc-protocol.cpp | Tests : protocole IRC. -| test-irc-server.cpp | Tests : serveur IRC. -| trigger/ | Racine des tests unitaires pour l'extension trigger. -| test-trigger.cpp | Tests : triggers. -| relay/ | Racine des tests unitaires pour l'extension Relay. -| test-relay-auth.cpp | Tests : authentification des clients. +| Chemin/fichier | Description +| tests/ | Racine des tests. +| tests.cpp | Programme utilisé pour lancer tous les tests. +| scripts/ | Racine des tests de l'API script. +| test-scripts.cpp | Programme utilisé pour lancer les tests de l'API script. +| python/ | Scripts Python pour générer et lancer les tests de l'API script. +| testapigen.py | Script Python générant des scripts dans tous les languages pour tester l'API script. +| testapi.py | Script Python avec les tests API, utilisé par le script testapigen.py. +| unparse.py | Conversion de code Python vers d'autres langages, utilisé par le script testapigen.py. +| unit/ | Racine des tests unitaires. +| test-plugins.cpp | Tests : extensions. +| core/ | Racine des tests unitaires pour le cœur. +| test-core-arraylist.cpp | Tests : listes avec tableau (« arraylists »). +| test-core-calc.cpp | Tests : calcul d'expressions. +| test-core-crypto.cpp | Tests : fonctions cryptographiques. +| test-core-dir.cpp | Tests : répertoires/fichiers. +| test-core-eval.cpp | Tests : évaluation d'expressions. +| test-core-hashtble.cpp | Tests : tables de hachage. +| test-core-hdata.cpp | Tests : hdata. +| test-core-hook.cpp | Tests : hooks. +| test-core-infolist.cpp | Tests : infolists. +| test-core-list.cpp | Tests : listes. +| test-core-network.cpp | Tests : fonctions réseau. +| test-core-secure.cpp | Tests : données sécurisées. +| test-core-signal.cpp | Tests : signaux. +| test-core-string.cpp | Tests : chaînes. +| test-core-url.cpp | Tests : URLs. +| test-core-utf8.cpp | Tests : UTF-8. +| test-core-util.cpp | Tests : fonctions utiles. +| gui/ | Racine des tests unitaires pour les interfaces. +| test-gui-color.cpp | Tests : couleurs. +| test-gui-line.cpp | Tests : lignes. +| test-gui-nick.cpp | Tests : pseudos. +| plugins/ | Racine des tests unitaires pour les extensions. +| irc/ | Racine des tests unitaires pour l'extension IRC. +| test-irc-channel.cpp | Tests : canaux IRC. +| test-irc-color.cpp | Tests : couleurs IRC. +| test-irc-config.cpp | Tests : configuration IRC. +| test-irc-ignore.cpp | Tests : ignores IRC. +| test-irc-message.cpp | Tests : messages IRC. +| test-irc-mode.cpp | Tests : modes IRC. +| test-irc-nick.cpp | Tests : pseudos IRC. +| test-irc-protocol.cpp | Tests : protocole IRC. +| test-irc-server.cpp | Tests : serveur IRC. +| trigger/ | Racine des tests unitaires pour l'extension trigger. +| test-trigger.cpp | Tests : triggers. +| typing/ | Racine des tests unitaires pour l'extension typing. +| test-typing.cpp | Tests : typing. +| test-typing-status.cpp | Tests : statut d'écriture. +| relay/ | Racine des tests unitaires pour l'extension Relay. +| test-relay-auth.cpp | Tests : authentification des clients. |=== [[documentation_translations]] diff --git a/doc/ja/weechat_dev.ja.adoc b/doc/ja/weechat_dev.ja.adoc index a38ccd9b6..b041ccb92 100644 --- a/doc/ja/weechat_dev.ja.adoc +++ b/doc/ja/weechat_dev.ja.adoc @@ -408,71 +408,77 @@ WeeChat "core" は以下のディレクトリに配置されています: [width="100%",cols="2m,3",options="header"] |=== -| パス/ファイル名 | 説明 -| tests/ | テスト用のルートディレクトリ -| tests.cpp | 全テストの実行時に使われるプログラム -| scripts/ | スクリプト API テスト用のルートディレクトリ -| test-scripts.cpp | スクリプト API テストの実行時に使われるプログラム -| python/ | スクリプト API テストを生成、実行する Python スクリプト -| testapigen.py | スクリプト API のテスト時にすべての言語に関するスクリプトを生成する Python スクリプト -| testapi.py | スクリプト API テスト時に使われる Python スクリプト (スクリプト testapigen.py から使われます) -| unparse.py | Python コードを別の言語に変換 (スクリプト testapigen.py から使われます) -| unit/ | 単体テスト用のルートディレクトリ -| test-plugins.cpp | テスト: プラグイン -| core/ | core 向け単体テスト用のルートディレクトリ -| test-core-arraylist.cpp | テスト: 配列リスト +| パス/ファイル名 | 説明 +| tests/ | テスト用のルートディレクトリ +| tests.cpp | 全テストの実行時に使われるプログラム +| scripts/ | スクリプト API テスト用のルートディレクトリ +| test-scripts.cpp | スクリプト API テストの実行時に使われるプログラム +| python/ | スクリプト API テストを生成、実行する Python スクリプト +| testapigen.py | スクリプト API のテスト時にすべての言語に関するスクリプトを生成する Python スクリプト +| testapi.py | スクリプト API テスト時に使われる Python スクリプト (スクリプト testapigen.py から使われます) +| unparse.py | Python コードを別の言語に変換 (スクリプト testapigen.py から使われます) +| unit/ | 単体テスト用のルートディレクトリ +| test-plugins.cpp | テスト: プラグイン +| core/ | core 向け単体テスト用のルートディレクトリ +| test-core-arraylist.cpp | テスト: 配列リスト +// TRANSLATION MISSING +| test-core-calc.cpp | Tests: calculation of expressions. +// TRANSLATION MISSING +| test-core-crypto.cpp | Tests: cryptographic functions. +// TRANSLATION MISSING +| test-core-dir.cpp | Tests: directory/file functions. +| test-core-eval.cpp | テスト: 式の評価 +| test-core-hashtble.cpp | テスト: ハッシュテーブル +| test-core-hdata.cpp | テスト: hdata +| test-core-hook.cpp | テスト: フック +| test-core-infolist.cpp | テスト: インフォリスト +| test-core-list.cpp | テスト: リスト // TRANSLATION MISSING -| test-core-calc.cpp | Tests: calculation of expressions. +| test-core-network.cpp | Tests: network functions. +| test-core-secure.cpp | テスト: データ保護 // TRANSLATION MISSING -| test-core-crypto.cpp | Tests: cryptographic functions. +| test-core-signal.cpp | テスト: signals. +| test-core-string.cpp | テスト: 文字列 +| test-core-url.cpp | テスト: URL +| test-core-utf8.cpp | テスト: UTF-8 +| test-core-util.cpp | テスト: ユーティリティ関数 +| gui/ | インターフェースの単体テストを収める最上位ディレクトリ // TRANSLATION MISSING -| test-core-dir.cpp | Tests: directory/file functions. -| test-core-eval.cpp | テスト: 式の評価 -| test-core-hashtble.cpp | テスト: ハッシュテーブル -| test-core-hdata.cpp | テスト: hdata -| test-core-hook.cpp | テスト: フック -| test-core-infolist.cpp | テスト: インフォリスト -| test-core-list.cpp | テスト: リスト +| test-gui-color.cpp | Tests: colors. +| test-gui-line.cpp | テスト: 行 // TRANSLATION MISSING -| test-core-network.cpp | Tests: network functions. -| test-core-secure.cpp | テスト: データ保護 +| test-gui-nick.cpp | テスト: nicks +| plugins/ | プラグインの単体テストを収める最上位ディレクトリ +| irc/ | IRC プラグインの単体テストを収める最上位ディレクトリ // TRANSLATION MISSING -| test-core-signal.cpp | テスト: signals. -| test-core-string.cpp | テスト: 文字列 -| test-core-url.cpp | テスト: URL -| test-core-utf8.cpp | テスト: UTF-8 -| test-core-util.cpp | テスト: ユーティリティ関数 -| gui/ | インターフェースの単体テストを収める最上位ディレクトリ +| test-irc-channel.cpp | Tests: IRC channels. +| test-irc-color.cpp | Tests: IRC colors. +| test-irc-config.cpp | テスト: IRC 設定 // TRANSLATION MISSING -| test-gui-color.cpp | Tests: colors. -| test-gui-line.cpp | テスト: 行 +| test-irc-ignore.cpp | Tests: IRC ignores. // TRANSLATION MISSING -| test-gui-nick.cpp | テスト: nicks -| plugins/ | プラグインの単体テストを収める最上位ディレクトリ -| irc/ | IRC プラグインの単体テストを収める最上位ディレクトリ +| test-irc-message.cpp | Tests: IRC messages. // TRANSLATION MISSING -| test-irc-channel.cpp | Tests: IRC channels. -| test-irc-color.cpp | Tests: IRC colors. -| test-irc-config.cpp | テスト: IRC 設定 +| test-irc-mode.cpp | Tests: IRC modes. // TRANSLATION MISSING -| test-irc-ignore.cpp | Tests: IRC ignores. +| test-irc-nick.cpp | Tests: IRC nicks. +| test-irc-protocol.cpp | テスト: IRC プロトコル // TRANSLATION MISSING -| test-irc-message.cpp | Tests: IRC messages. +| test-irc-server.cpp | Tests: IRC server. // TRANSLATION MISSING -| test-irc-mode.cpp | Tests: IRC modes. +| trigger/ | Root of unit tests for trigger plugin. // TRANSLATION MISSING -| test-irc-nick.cpp | Tests: IRC nicks. -| test-irc-protocol.cpp | テスト: IRC プロトコル +| test-trigger.cpp | Tests: triggers. // TRANSLATION MISSING -| test-irc-server.cpp | Tests: IRC server. +| typing/ | Root of unit tests for typing plugin. // TRANSLATION MISSING -| trigger/ | Root of unit tests for trigger plugin. +| test-typing.cpp | Tests: typing. // TRANSLATION MISSING -| test-trigger.cpp | Tests: triggers. +| test-typing-status.cpp | Tests: typing status. // TRANSLATION MISSING -| relay/ | Root of unit tests for Relay plugin. +| relay/ | Root of unit tests for Relay plugin. // TRANSLATION MISSING -| test-relay-auth.cpp | Tests: clients authentication. +| test-relay-auth.cpp | Tests: clients authentication. |=== [[documentation_translations]] diff --git a/doc/sr/weechat_dev.sr.adoc b/doc/sr/weechat_dev.sr.adoc index 0a76db491..29ee7940c 100644 --- a/doc/sr/weechat_dev.sr.adoc +++ b/doc/sr/weechat_dev.sr.adoc @@ -395,54 +395,60 @@ WeeChat „језгро” се налази у следећим директо [width="100%", cols="2m,3", options="header"] |=== -| Путања/фајл | Опис -| tests/ | Корен тестова. -| tests.cpp | Програм који се користи за извршавање свих тестова. -| scripts/ | Корен тестова за API скриптовања. -| test-scripts.cpp | Програм који се користи за извршавање тестова API скриптовања. -| python/ | Python скрипте које генеришу и покрећу тестове API скриптовања. -| testapigen.py | Python скрипта која генерише скрипте на свим језицима за тестирање API скриптовања. -| testapi.py | Python скрипта са тестовима API скриптовања, користи је скрипта testapigen.py. -| unparse.py | Конверзија Python кода у остале језике, користи је скрипта testapigen.py. -| unit/ | Корен unit тестова. -| test-plugins.cpp | Тестови: plugins. -| core/ | Корен unit тестова језгра. -| test-core-arraylist.cpp | Тестови: arraylists. -| test-core-calc.cpp | Тестови: калкулација израза. -| test-core-crypto.cpp | Тестови: криптографске функције. -| test-core-dir.cpp | Тестови: функције директоријума/фајла. -| test-core-eval.cpp | Тестови: израчунавање израза. -| test-core-hashtble.cpp | Тестови: hashtables. -| test-core-hdata.cpp | Тестови: hdata. -| test-core-hook.cpp | Тестови: куке. -| test-core-infolist.cpp | Тестови: infolists. -| test-core-list.cpp | Тестови: листе. -| test-core-network.cpp | Тестови: мрежне функције. -| test-core-secure.cpp | Тестови: обезбеђени подаци. -| test-core-signal.cpp | Тестови: сигнали. -| test-core-string.cpp | Тестови: стрингови. -| test-core-url.cpp | Тестови: URL адресе. -| test-core-utf8.cpp | Тестови: UTF-8. -| test-core-util.cpp | Тестови: помоћне функције. -| gui/ | Корен unit тестова интерфејса. -| test-gui-color.cpp | Тестови: боје. -| test-gui-line.cpp | Тестови: линије. -| test-gui-nick.cpp | Тестови: надимци. -| plugins/ | Корен unit тестова додатака. -| irc/ | Корен unit тестова IRC додатка. -| test-irc-channel.cpp | Тестови: IRC канали. -| test-irc-color.cpp | Тестови: IRC боје. -| test-irc-config.cpp | Тестови: IRC конфигурација. -| test-irc-ignore.cpp | Тестови: IRC игнорисања. -| test-irc-message.cpp | Тестови: IRC поруке. -| test-irc-mode.cpp | Тестови: IRC режими. -| test-irc-nick.cpp | Тестови: IRC надимци. -| test-irc-protocol.cpp | Тестови: IRC протокол. -| test-irc-server.cpp | Тестови: IRC сервер. -| trigger/ | Корен unit тестова за окидач додатак. -| test-trigger.cpp | Тестови: окидачи. -| relay/ | Корен unit тестова за Релеј додатак. -| test-relay-auth.cpp | Тестови: аутентификација клијената. +| Путања/фајл | Опис +| tests/ | Корен тестова. +| tests.cpp | Програм који се користи за извршавање свих тестова. +| scripts/ | Корен тестова за API скриптовања. +| test-scripts.cpp | Програм који се користи за извршавање тестова API скриптовања. +| python/ | Python скрипте које генеришу и покрећу тестове API скриптовања. +| testapigen.py | Python скрипта која генерише скрипте на свим језицима за тестирање API скриптовања. +| testapi.py | Python скрипта са тестовима API скриптовања, користи је скрипта testapigen.py. +| unparse.py | Конверзија Python кода у остале језике, користи је скрипта testapigen.py. +| unit/ | Корен unit тестова. +| test-plugins.cpp | Тестови: plugins. +| core/ | Корен unit тестова језгра. +| test-core-arraylist.cpp | Тестови: arraylists. +| test-core-calc.cpp | Тестови: калкулација израза. +| test-core-crypto.cpp | Тестови: криптографске функције. +| test-core-dir.cpp | Тестови: функције директоријума/фајла. +| test-core-eval.cpp | Тестови: израчунавање израза. +| test-core-hashtble.cpp | Тестови: hashtables. +| test-core-hdata.cpp | Тестови: hdata. +| test-core-hook.cpp | Тестови: куке. +| test-core-infolist.cpp | Тестови: infolists. +| test-core-list.cpp | Тестови: листе. +| test-core-network.cpp | Тестови: мрежне функције. +| test-core-secure.cpp | Тестови: обезбеђени подаци. +| test-core-signal.cpp | Тестови: сигнали. +| test-core-string.cpp | Тестови: стрингови. +| test-core-url.cpp | Тестови: URL адресе. +| test-core-utf8.cpp | Тестови: UTF-8. +| test-core-util.cpp | Тестови: помоћне функције. +| gui/ | Корен unit тестова интерфејса. +| test-gui-color.cpp | Тестови: боје. +| test-gui-line.cpp | Тестови: линије. +| test-gui-nick.cpp | Тестови: надимци. +| plugins/ | Корен unit тестова додатака. +| irc/ | Корен unit тестова IRC додатка. +| test-irc-channel.cpp | Тестови: IRC канали. +| test-irc-color.cpp | Тестови: IRC боје. +| test-irc-config.cpp | Тестови: IRC конфигурација. +| test-irc-ignore.cpp | Тестови: IRC игнорисања. +| test-irc-message.cpp | Тестови: IRC поруке. +| test-irc-mode.cpp | Тестови: IRC режими. +| test-irc-nick.cpp | Тестови: IRC надимци. +| test-irc-protocol.cpp | Тестови: IRC протокол. +| test-irc-server.cpp | Тестови: IRC сервер. +| trigger/ | Корен unit тестова за окидач додатак. +| test-trigger.cpp | Тестови: окидачи. +// TRANSLATION MISSING +| typing/ | Root of unit tests for typing plugin. +// TRANSLATION MISSING +| test-typing.cpp | Tests: typing. +// TRANSLATION MISSING +| test-typing-status.cpp | Tests: typing status. +| relay/ | Корен unit тестова за Релеј додатак. +| test-relay-auth.cpp | Тестови: аутентификација клијената. |=== |