設定ファイル

Tricentis Tosca の設定ファイルは、既存の設定をカスタマイズしたり、新しい特定の設定を追加したりするために変更することができます。

設定ファイルの変更は必ず管理者のみが行ってください。

この章では、以下の設定ファイルについて詳しく説明します。

Toscaは TOSCACommander.dll.config TCShell.dll.config ファイルの設定よりも、ユーザー <Version> .config ファイルで指定された設定を優先して扱います。

設定ファイルの構造

設定ファイルのファイル形式はXMLです。TOSCACommander.dll.config ファイルのXML構造は以下のようになります。

<configuration>
  <configSections>
    <sectionGroup name="userSettings">...
    <sectionGroup name="applicationSettings">...
    [...]
  <userSettings>
    <Tricentis.TCCore.BusinessObjects.Properties.Settings>
    <Tricentis.TCCore.Persistency.Properties.Settings>
    <Tricentis.TCCore.GUI.Properties.Settings>
    <Tricentis.TCCore.Base.Properties.Settings>
    <Tricentis.TCAddIns.Reporting.Properties.Settings>
    <Tricentis.TCAddIns.RequirementsManagement.Properties.Settings>
    <Tricentis.TCAddIns.TestCaseDesign.Properties.Settings>
    [...]
  <applicationSettings>
    <Tricentis.TCCore.BusinessObjects.Properties.Settings>
    <Tricentis.TCCore.GUI.Properties.Settings>
    <Tricentis.TCCore.Persistency.Properties.Settings>
    <Tricentis.TCCore.Base.Properties.Settings>
    <Tricentis.TCCore.XLConnector.Properties.Settings>
    [...]

新しい設定コレクションは、セクション <configSections> の対応する sectionGroup で指定する必要があります。