├── .gitignore ├── .gitlab-ci.yml ├── DBCInterface.sln ├── DBCInterface ├── Classes │ ├── DBCECU.cs │ ├── DBCFile.cs │ ├── DBCMessage.cs │ ├── DBCMessageUpdateEventArgs.cs │ ├── DBCSignal.cs │ └── DatabaseLoadingException.cs ├── DBCInterface.1.0.0.nupkg ├── DBCInterface.csproj ├── DBC_File_Documentation.txt ├── Interfaces │ ├── IDBCECU.cs │ ├── IDBCFile.cs │ ├── IDBCMessage.cs │ └── IDBCSignal.cs ├── Properties │ └── AssemblyInfo.cs ├── TestDBC │ └── Test.cs ├── package.nuspec ├── packages.config └── packages │ ├── Conversions.1.0.0.1 │ ├── Conversions.1.0.0.1.nupkg │ └── lib │ │ └── net45 │ │ ├── Conversions.XML │ │ └── Conversions.dll │ ├── GlobalLibrary.1.0.0 │ ├── GlobalLibrary.1.0.0.nupkg │ └── lib │ │ └── net45 │ │ └── GlobalLibrary.dll │ ├── MSTest.TestAdapter.1.2.0 │ ├── MSTest.TestAdapter.1.2.0.nupkg │ └── build │ │ ├── _common │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ │ ├── cs │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── de │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── es │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── fr │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── it │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── ja │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── ko │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── pl │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── pt │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── ru │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── tr │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── zh-Hans │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ └── zh-Hant │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── net45 │ │ ├── MSTest.TestAdapter.props │ │ └── MSTest.TestAdapter.targets │ │ ├── netcoreapp1.0 │ │ ├── MSTest.TestAdapter.props │ │ └── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll │ │ └── uap10.0 │ │ ├── MSTest.TestAdapter.props │ │ ├── MSTest.TestAdapter.targets │ │ └── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll │ └── MSTest.TestFramework.1.2.0 │ ├── MSTest.TestFramework.1.2.0.nupkg │ └── lib │ ├── net45 │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ ├── cs │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── de │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── es │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── fr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── it │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ja │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ko │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pl │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pt │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ru │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── tr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── zh-Hans │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ └── zh-Hant │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── netstandard1.0 │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ ├── cs │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── de │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── es │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── fr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── it │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ja │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ko │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pl │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pt │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ru │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── tr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── zh-Hans │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ └── zh-Hant │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ └── uap10.0 │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ ├── cs │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── de │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── es │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── fr │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── it │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ja │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ko │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pl │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pt │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ru │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── tr │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── zh-Hans │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ └── zh-Hant │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml ├── DBCInterfaceTests ├── AsyncParsingTests.cs ├── DBCInterfaceTests.csproj ├── ParsingTests.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── packages.config ├── LICENSE ├── dbc-icon.png ├── packages ├── CAN.1.0.2 │ ├── CAN.1.0.2.nupkg │ └── lib │ │ └── net45 │ │ └── CAN.dll ├── Conversions.1.0.0.2 │ ├── Conversions.1.0.0.2.nupkg │ └── lib │ │ └── net45 │ │ ├── Conversions.XML │ │ └── Conversions.dll ├── GenericMessaging.1.0.0.3 │ ├── GenericMessaging.1.0.0.3.nupkg │ └── lib │ │ └── net45 │ │ └── GenericMessaging.dll ├── GenericMessaging.1.0.6 │ ├── GenericMessaging.1.0.6.nupkg │ └── lib │ │ └── net45 │ │ ├── GenericMessaging.dll │ │ └── GenericMessaging.xml ├── GlobalLibrary.1.0.1 │ ├── GlobalLibrary.1.0.1.nupkg │ └── lib │ │ └── net45 │ │ └── GlobalLibrary.dll ├── MSTest.TestAdapter.1.3.2 │ ├── .signature.p7s │ ├── MSTest.TestAdapter.1.3.2.nupkg │ └── build │ │ ├── _common │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ │ ├── cs │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── de │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── es │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── fr │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── it │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── ja │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── ko │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── pl │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── pt │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── ru │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── tr │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── zh-Hans │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ └── zh-Hant │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── net45 │ │ ├── MSTest.TestAdapter.props │ │ └── MSTest.TestAdapter.targets │ │ ├── netcoreapp1.0 │ │ ├── MSTest.TestAdapter.props │ │ └── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll │ │ └── uap10.0 │ │ ├── MSTest.TestAdapter.props │ │ ├── MSTest.TestAdapter.targets │ │ └── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll ├── MSTest.TestFramework.1.2.0 │ ├── MSTest.TestFramework.1.2.0.nupkg │ └── lib │ │ ├── net45 │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ │ ├── cs │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── de │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── es │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── fr │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── it │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── ja │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── ko │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── pl │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── pt │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── ru │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── tr │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── zh-Hans │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ └── zh-Hant │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── netstandard1.0 │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ │ ├── cs │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── de │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── es │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── fr │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── it │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── ja │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── ko │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── pl │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── pt │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── ru │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── tr │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── zh-Hans │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ └── zh-Hant │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ └── uap10.0 │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ │ ├── cs │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── de │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── es │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── fr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── it │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── ja │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── ko │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── pl │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── pt │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── ru │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── tr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ ├── zh-Hans │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ └── zh-Hant │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml └── MSTest.TestFramework.1.3.2 │ ├── .signature.p7s │ ├── MSTest.TestFramework.1.3.2.nupkg │ └── lib │ ├── net45 │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ ├── cs │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── de │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── es │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── fr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── it │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ja │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ko │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pl │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pt │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ru │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── tr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── zh-Hans │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ └── zh-Hant │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── netstandard1.0 │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ ├── cs │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── de │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── es │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── fr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── it │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ja │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ko │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pl │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pt │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ru │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── tr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── zh-Hans │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ └── zh-Hant │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ └── uap10.0 │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ ├── cs │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── de │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── es │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── fr │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── it │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ja │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ko │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pl │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pt │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ru │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── tr │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── zh-Hans │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ └── zh-Hant │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml └── readme.md /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | variables: 2 | BUILD_: C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe 3 | OUTPUT_: $CI_PROJECT_DIR\build\dbc-interface\release 4 | TEST_: C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe 5 | 6 | stages: 7 | - pre_script 8 | - build 9 | - test 10 | 11 | NuGet Restore: 12 | stage: pre_script 13 | script: 14 | #- setx BUILD "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe" 15 | #- echo %BUILD% 16 | - set NUGET="C:\Program Files (x86)\NuGet\nuget.exe" 17 | - '%NUGET% restore -NonInteractive' 18 | 19 | Build: 20 | stage: build 21 | script: 22 | - '"%BUILD_%" /p:Configuration="Release" /p:Platform="Any CPU" /p:OutputPath="%OUTPUT_%" "DBCInterface.sln"' 23 | artifacts: 24 | paths: 25 | - '%OUTPUT_%' 26 | expire_in: 10 minutes 27 | 28 | Test: 29 | stage: test 30 | script: 31 | - '"%TEST_%" %OUTPUT_%\DBCInterfaceTests.dll' -------------------------------------------------------------------------------- /DBCInterface.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27130.2024 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{28451062-08AB-4D55-B284-3BDE4E28CCC2}" 7 | ProjectSection(SolutionItems) = preProject 8 | ..\.git\.gitignore = ..\.git\.gitignore 9 | .gitlab-ci.yml = .gitlab-ci.yml 10 | ..\readme.md = ..\readme.md 11 | EndProjectSection 12 | EndProject 13 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DBCInterface", "DBCInterface\DBCInterface.csproj", "{59A0B868-767C-43D0-B119-488039DE7F3B}" 14 | EndProject 15 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DBCInterfaceTests", "DBCInterfaceTests\DBCInterfaceTests.csproj", "{9426D486-1732-4B56-A53D-DE7273A2CA0C}" 16 | EndProject 17 | Global 18 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 19 | Debug|Any CPU = Debug|Any CPU 20 | Release|Any CPU = Release|Any CPU 21 | EndGlobalSection 22 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 23 | {59A0B868-767C-43D0-B119-488039DE7F3B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 24 | {59A0B868-767C-43D0-B119-488039DE7F3B}.Debug|Any CPU.Build.0 = Debug|Any CPU 25 | {59A0B868-767C-43D0-B119-488039DE7F3B}.Release|Any CPU.ActiveCfg = Release|Any CPU 26 | {59A0B868-767C-43D0-B119-488039DE7F3B}.Release|Any CPU.Build.0 = Release|Any CPU 27 | {9426D486-1732-4B56-A53D-DE7273A2CA0C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 28 | {9426D486-1732-4B56-A53D-DE7273A2CA0C}.Debug|Any CPU.Build.0 = Debug|Any CPU 29 | {9426D486-1732-4B56-A53D-DE7273A2CA0C}.Release|Any CPU.ActiveCfg = Release|Any CPU 30 | {9426D486-1732-4B56-A53D-DE7273A2CA0C}.Release|Any CPU.Build.0 = Release|Any CPU 31 | EndGlobalSection 32 | GlobalSection(SolutionProperties) = preSolution 33 | HideSolutionNode = FALSE 34 | EndGlobalSection 35 | GlobalSection(ExtensibilityGlobals) = postSolution 36 | SolutionGuid = {FCE4D9F2-7576-41AC-B7F8-170E7532AA98} 37 | EndGlobalSection 38 | EndGlobal 39 | -------------------------------------------------------------------------------- /DBCInterface/Classes/DBCECU.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace Aptiv.DBCFiles.Classes 5 | { 6 | [Serializable] 7 | internal class DBCECU : IDBCECU 8 | { 9 | /// 10 | /// The name of this particular ECU. 11 | /// 12 | public string Name; 13 | 14 | /// 15 | /// Key = message name; Value = DBCMessage 16 | /// 17 | [NonSerialized] 18 | public Dictionary Messages = new Dictionary(); 19 | 20 | /// 21 | /// Dictionary of messages (and their signals) that this ECU is 22 | /// marked as receiving. 23 | /// 24 | [NonSerialized] 25 | public Dictionary RxMessages = new Dictionary(); 26 | 27 | /// 28 | /// Construct a new ECU. 29 | /// 30 | /// 31 | public DBCECU(string ecu_name) 32 | { 33 | Name = ecu_name; 34 | } 35 | 36 | /// 37 | /// Convert an instance of a ECU to a string. 38 | /// 39 | /// 40 | public override string ToString() 41 | { 42 | return Name; 43 | } 44 | 45 | #region --- IECU Interface --- 46 | 47 | string IDBCECU.Name => Name; 48 | 49 | IReadOnlyDictionary IDBCECU.Messages => Messages; 50 | 51 | IReadOnlyDictionary IDBCECU.RxMessages => RxMessages; 52 | 53 | #endregion 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /DBCInterface/Classes/DBCMessageUpdateEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace Aptiv.DBCFiles 5 | { 6 | /// 7 | /// Event arguments for DBCMessages. 8 | /// 9 | [Serializable] 10 | public class DBCMessageUpdateEventArgs : EventArgs 11 | { 12 | /// 13 | /// The coresponding modified signals to the message. 14 | /// 15 | public IList ModifiedDBCSignals { get; private set; } 16 | 17 | /// 18 | /// Construct a new DBCMessageEventArgs with the given message and signal. 19 | /// 20 | /// A list of all modified signals 21 | public DBCMessageUpdateEventArgs(IList signals) 22 | { 23 | ModifiedDBCSignals = signals; 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /DBCInterface/Classes/DatabaseLoadingException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.Serialization; 3 | using System.Security.Permissions; 4 | 5 | namespace Aptiv.DBCFiles 6 | { 7 | /// 8 | /// A class to handle Exceptions specific to loading a database file. 9 | /// 10 | [Serializable] 11 | public class DatabaseLoadingException : Exception, ISerializable 12 | { 13 | private readonly DBCFile partialDatabase; 14 | string fileLine; 15 | 16 | /// 17 | /// 18 | /// 19 | /// 20 | /// 21 | public DatabaseLoadingException(DBCFile file, string fileLine = "") 22 | { 23 | partialDatabase = file; 24 | this.fileLine = fileLine; 25 | } 26 | /// 27 | /// 28 | /// 29 | /// 30 | /// 31 | /// 32 | public DatabaseLoadingException(string message, DBCFile file, string fileLine = "") 33 | : base(message) 34 | { 35 | partialDatabase = file; 36 | this.fileLine = fileLine; 37 | } 38 | /// 39 | /// 40 | /// 41 | /// 42 | /// 43 | /// 44 | /// 45 | public DatabaseLoadingException(string message, Exception inner, DBCFile file, string fileLine = "") 46 | : base(message, inner) 47 | { 48 | partialDatabase = file; 49 | this.fileLine = fileLine; 50 | } 51 | 52 | /// 53 | /// 54 | /// 55 | /// 56 | /// 57 | [SecurityPermission(SecurityAction.Demand, SerializationFormatter = true)] 58 | public override void GetObjectData(SerializationInfo info, StreamingContext context) 59 | { 60 | base.GetObjectData(info, context); 61 | info.AddValue("Partial Database", partialDatabase); 62 | } 63 | /// 64 | /// 65 | /// 66 | /// 67 | /// 68 | [SecurityPermission(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.SerializationFormatter)] 69 | void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) 70 | { 71 | if (info == null) 72 | throw new ArgumentNullException("info"); 73 | 74 | GetObjectData(info, context); 75 | } 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /DBCInterface/DBCInterface.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/DBCInterface.1.0.0.nupkg -------------------------------------------------------------------------------- /DBCInterface/DBCInterface.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {59A0B868-767C-43D0-B119-488039DE7F3B} 8 | Library 9 | Properties 10 | Aptiv.DBCFiles 11 | DBCInterface 12 | v4.5 13 | 512 14 | 15 | 16 | 17 | true 18 | full 19 | false 20 | bin\Debug\ 21 | DEBUG;TRACE 22 | prompt 23 | 4 24 | false 25 | 26 | 27 | pdbonly 28 | true 29 | bin\Release\ 30 | TRACE 31 | prompt 32 | 4 33 | false 34 | bin\Release\DBCInterface.xml 35 | 36 | 37 | 38 | 39 | 40 | 41 | ..\packages\CAN.1.0.2\lib\net45\CAN.dll 42 | 43 | 44 | ..\packages\Conversions.1.0.0.2\lib\net45\Conversions.dll 45 | 46 | 47 | ..\packages\GenericMessaging.1.0.6\lib\net45\GenericMessaging.dll 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 85 | -------------------------------------------------------------------------------- /DBCInterface/Interfaces/IDBCECU.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace Aptiv.DBCFiles 4 | { 5 | /// 6 | /// An ECU object described by a DBC file. 7 | /// 8 | public interface IDBCECU 9 | { 10 | /// 11 | /// The name of this ECU. 12 | /// 13 | string Name { get; } 14 | 15 | /// 16 | /// The set of messages in this ECU. 17 | /// 18 | IReadOnlyDictionary Messages { get; } 19 | 20 | /// 21 | /// The set of messages in this ECU marked as being RX. 22 | /// 23 | IReadOnlyDictionary RxMessages { get; } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /DBCInterface/Interfaces/IDBCFile.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace Aptiv.DBCFiles 4 | { 5 | /// 6 | /// Describes a generic DBCFile object. 7 | /// 8 | public interface IDBCFile 9 | { 10 | /// 11 | /// The name of the internal file. 12 | /// 13 | string Filename { get; } 14 | 15 | /// 16 | /// ECUs defined in the DBC file. 17 | /// 18 | IReadOnlyDictionary ECUs { get; } 19 | 20 | /// 21 | /// Messages defined in the DBC file. 22 | /// 23 | IReadOnlyDictionary Messages { get; } 24 | 25 | /// 26 | /// Specific attributes defined in the DBC file. (eg. "baudrate") 27 | /// 28 | Dictionary>> Attributes { get; } 29 | 30 | /// 31 | /// Groups of signals defined in the DBC file. 32 | /// 33 | Dictionary> SignalGroups { get; } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /DBCInterface/Interfaces/IDBCMessage.cs: -------------------------------------------------------------------------------- 1 | using Aptiv.Messages.CAN; 2 | using Aptiv.Messaging; 3 | using System; 4 | using System.Collections.Generic; 5 | 6 | namespace Aptiv.DBCFiles 7 | { 8 | /// 9 | /// A message object described by the DBC. 10 | /// 11 | public interface IDBCMessage : IMessage, ICloneable 12 | { 13 | /// 14 | /// The dictionary of Signals contained in this DBC message. 15 | /// 16 | IReadOnlyDictionary Signals { get; } 17 | 18 | /// 19 | /// The unique name of this Message. 20 | /// 21 | string Name { get; } 22 | 23 | /// 24 | /// A flag to indicate whether this message can be sent periodically. 25 | /// 26 | bool Cyclic { get; } 27 | 28 | /// 29 | /// The length of time in milliseconds to send this message periodically. 30 | /// 31 | uint CycleTime { get; } 32 | 33 | /// 34 | /// The containing ECU for this message. 35 | /// 36 | IDBCECU ECU { get; } 37 | 38 | /// 39 | /// Defines the way to send. 40 | /// 41 | string LaunchType { get; } 42 | 43 | /// 44 | /// The time to wait before sending this message. 45 | /// 46 | int DelayTime { get; } 47 | 48 | /// 49 | /// Updates this IDBCMessage with the data from the given CAN message. 50 | /// 51 | /// The data to use to update the signals of this 52 | /// DBC message. 53 | /// True on success. 54 | bool Update(CANMessage m); 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /DBCInterface/Interfaces/IDBCSignal.cs: -------------------------------------------------------------------------------- 1 | using Aptiv.Messaging; 2 | using System.Collections.Generic; 3 | 4 | namespace Aptiv.DBCFiles 5 | { 6 | /// 7 | /// A signal object described by the DBC file. 8 | /// 9 | public interface IDBCSignal 10 | { 11 | /// 12 | /// The unique identifier for this signal. 13 | /// 14 | string Name { get; } 15 | 16 | /// 17 | /// The ECU parent of this Signal. 18 | /// 19 | IDBCECU ECU { get; } 20 | 21 | /// 22 | /// The Message parent of this signal. 23 | /// 24 | IDBCMessage Message { get; } 25 | 26 | /// 27 | /// The function of this signal. 28 | /// 29 | string Function { get; } 30 | 31 | /// 32 | /// The bit length of the message 33 | /// 34 | uint BitLength { get; } 35 | 36 | /// 37 | /// The default value of the signal 38 | /// 39 | ulong DefaultValue { get; } 40 | 41 | /// 42 | /// The normal maximum 43 | /// 44 | ulong NormMax { get; } 45 | 46 | /// 47 | ///The normal minimum 48 | /// 49 | ulong NormMin { get; } 50 | 51 | /// 52 | /// The delta between physical Values 53 | /// 54 | double Factor { get; } 55 | 56 | /// 57 | /// Offset of the physical value 58 | /// 59 | double Offset { get; } 60 | 61 | /// 62 | /// Units of the signal 63 | /// 64 | string Units { get; } 65 | 66 | /// 67 | /// The order of the bytes in the signal. 68 | /// 69 | ByteOrder Order { get; } 70 | 71 | /// 72 | /// Specific attributes from the DBC file. 73 | /// 74 | IReadOnlyDictionary Attributes { get; } 75 | 76 | /// 77 | /// Specified values from the DBC. 78 | /// 79 | IReadOnlyDictionary SpecifiedValues { get; } 80 | 81 | /// 82 | /// Obtain or set the value of this signal in the message. 83 | /// 84 | ulong Value { get; set; } 85 | 86 | /// 87 | /// The physical value represented in this signal. 88 | /// 89 | double PhysicalValue { get; set; } 90 | 91 | /// 92 | /// The maximum value of the Value. 93 | /// 94 | ulong MaxValue { get; } 95 | 96 | /// 97 | /// The minimum value of the Value. 98 | /// 99 | ulong MinValue { get; } 100 | 101 | /// 102 | /// The maximum value of the PhysicalValue. 103 | /// 104 | double PhysicalMax { get; } 105 | 106 | /// 107 | /// The minimum value of the PhysicalValue"/> 108 | /// 109 | double PhysicalMin { get; } 110 | 111 | /// 112 | /// The starting location of this signal in a message. 113 | /// 114 | uint StartBit { get; } 115 | 116 | /// 117 | /// 118 | /// 119 | ulong SNA { get; } 120 | 121 | /// 122 | /// 123 | /// 124 | IntDescriptor Descriptor { get; } 125 | } 126 | } 127 | -------------------------------------------------------------------------------- /DBCInterface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DBCInterface/TestDBC/Test.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | 4 | namespace Delphi.Saint.DBCFiles 5 | { 6 | class Test 7 | { 8 | static void Main(string[] args) 9 | { 10 | DBCFile dbc = new DBCFile(@"C:\Users\jj06gk\Desktop\DBCInterface\DBC files\ISC1_I_NIS_R_19__vAB.dbc", 0); 11 | 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /DBCInterface/package.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DBCInterface 6 | 7 | 1.2.1 8 | DBCInterface 9 | 10 | Aptiv WLL 11 | Aptiv WLL 12 | 17 | false 18 | 19 | Allows interfacing with DBC files and provides a set of Message objects for tracking CAN messages. 20 | 21 | Added an Update function to IDBCMessages. 22 | Copyright © Aptiv WLL 2018 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /DBCInterface/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /DBCInterface/packages/Conversions.1.0.0.1/Conversions.1.0.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/Conversions.1.0.0.1/Conversions.1.0.0.1.nupkg -------------------------------------------------------------------------------- /DBCInterface/packages/Conversions.1.0.0.1/lib/net45/Conversions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/Conversions.1.0.0.1/lib/net45/Conversions.dll -------------------------------------------------------------------------------- /DBCInterface/packages/GlobalLibrary.1.0.0/GlobalLibrary.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/GlobalLibrary.1.0.0/GlobalLibrary.1.0.0.nupkg -------------------------------------------------------------------------------- /DBCInterface/packages/GlobalLibrary.1.0.0/lib/net45/GlobalLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/GlobalLibrary.1.0.0/lib/net45/GlobalLibrary.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/MSTest.TestAdapter.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/MSTest.TestAdapter.1.2.0.nupkg -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/net45/MSTest.TestAdapter.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll 16 | PreserveNewest 17 | False 18 | 19 | 20 | -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/net45/MSTest.TestAdapter.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | %(CurrentUICultureHierarchy.Identity) 25 | 26 | 27 | 28 | %(MSTestV2ResourceFiles.CultureString)\%(Filename)%(Extension) 29 | PreserveNewest 30 | False 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/netcoreapp1.0/MSTest.TestAdapter.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll 16 | PreserveNewest 17 | False 18 | 19 | 20 | -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/uap10.0/MSTest.TestAdapter.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll 16 | PreserveNewest 17 | False 18 | 19 | 20 | -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/uap10.0/MSTest.TestAdapter.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | %(CurrentUICultureHierarchy.Identity) 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 34 | $(CurrentUICultureHierarchy)\%(FileName).resources.dll 35 | PreserveNewest 36 | %(FullPath) 37 | False 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestAdapter.1.2.0/build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/MSTest.TestFramework.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestFramework.1.2.0/MSTest.TestFramework.1.2.0.nupkg -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | Used to specify deployment item (file or directory) for per-test deployment. 10 | Can be specified on test class or test method. 11 | Can have multiple instances of the attribute to specify more than one item. 12 | The item path can be absolute or relative, if relative, it is relative to RunConfig.RelativePathRoot. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | Initializes a new instance of the class. 26 | 27 | The file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies. 28 | 29 | 30 | 31 | Initializes a new instance of the class 32 | 33 | The relative or absolute path to the file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies. 34 | The path of the directory to which the items are to be copied. It can be either absolute or relative to the deployment directory. All files and directories identified by will be copied to this directory. 35 | 36 | 37 | 38 | Gets the path of the source file or folder to be copied. 39 | 40 | 41 | 42 | 43 | Gets the path of the directory to which the item is copied. 44 | 45 | 46 | 47 | 48 | TestContext class. This class should be fully abstract and not contain any 49 | members. The adapter will implement the members. Users in the framework should 50 | only access this via a well-defined interface. 51 | 52 | 53 | 54 | 55 | Gets test properties for a test. 56 | 57 | 58 | 59 | 60 | Gets Fully-qualified name of the class containing the test method currently being executed 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | Gets the Name of the test method currently being executed 72 | 73 | 74 | 75 | 76 | Gets the current test outcome. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | Používá se pro určení položky nasazení (souboru nebo adresáře) za účelem nasazení podle testu. 10 | Lze zadat na testovací třídě nebo testovací metodě. 11 | Může mít více instancí atributu pro zadání více než jedné položky. 12 | Cesta k položce může být absolutní nebo relativní. Pokud je relativní, je relativní ve vztahu k RunConfig.RelativePathRoot. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | Inicializuje novou instanci třídy . 26 | 27 | Soubor nebo adresář, který se má nasadit. Cesta je relativní ve vztahu k adresáři výstupu sestavení. Položka bude zkopírována do adresáře, ve kterém jsou nasazená testovací sestavení. 28 | 29 | 30 | 31 | Inicializuje novou instanci třídy . 32 | 33 | Relativní nebo absolutní cesta k souboru nebo adresáři, který se má nasadit. Cesta je relativní ve vztahu k adresáři výstupu sestavení. Položka bude zkopírována do stejného adresáře jako nasazená testovací sestavení. 34 | Cesta k adresáři, do kterého se mají položky kopírovat. Může být absolutní nebo relativní ve vztahu k adresáři nasazení. Všechny soubory a adresáře určené cestou budou zkopírovány do tohoto adresáře. 35 | 36 | 37 | 38 | Získá cestu ke zdrojovému souboru nebo složce, které se mají kopírovat. 39 | 40 | 41 | 42 | 43 | Získá cestu adresáře, do kterého se položka zkopíruje. 44 | 45 | 46 | 47 | 48 | Třída TestContext. Tato třída by měla být zcela abstraktní a neměla by obsahovat žádné 49 | členy. Členy implementuje adaptér. Uživatelé rozhraní by měli 50 | k této funkci přistupovat jenom prostřednictvím dobře definovaného rozhraní. 51 | 52 | 53 | 54 | 55 | Získá vlastnosti testu. 56 | 57 | 58 | 59 | 60 | Získá plně kvalifikovaný název třídy obsahující aktuálně prováděnou testovací metodu. 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | Získá název aktuálně prováděné testovací metody. 72 | 73 | 74 | 75 | 76 | Získá aktuální výsledek testu. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | テスト配置ごとに配置項目 (ファイルまたはディレクトリ) を指定するために使用されます。 10 | テスト クラスまたはテスト メソッドで指定できます。 11 | 属性に複数のインスタンスを指定して、2 つ以上の項目を指定することができます。 12 | 項目のパスには絶対パスまたは相対パスを指定できます。相対パスの場合は、RunConfig.RelativePathRoot からの相対パスです。 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | クラスの新しいインスタンスを初期化します。 26 | 27 | 配置するファイルまたはディレクトリ。パスはビルドの出力ディレクトリの相対パスです。項目は配置されたテスト アセンブリと同じディレクトリにコピーされます。 28 | 29 | 30 | 31 | クラスの新しいインスタンスを初期化する 32 | 33 | 配置するファイルまたはディレクトリへの相対パスまたは絶対パス。パスはビルドの出力ディレクトリの相対パスです。項目は配置されたテスト アセンブリと同じディレクトリにコピーされます。 34 | アイテムのコピー先のディレクトリのパス。配置ディレクトリへの絶対パスまたは相対パスのいずれかを指定できます。次で識別されるすべてのファイルとディレクトリは このディレクトリにコピーされます。 35 | 36 | 37 | 38 | コピーするソース ファイルまたはフォルダーのパスを取得します。 39 | 40 | 41 | 42 | 43 | 項目のコピー先のディレクトリのパスを取得します。 44 | 45 | 46 | 47 | 48 | TestContext クラス。このクラスは完全に抽象的でなければならず、かつメンバー 49 | を含んでいてはなりません。アダプターはメンバーを実装します。フレームワーク内のユーザーは 50 | 正しく定義されたインターフェイスを介してのみこのクラスにアクセスする必要があります。 51 | 52 | 53 | 54 | 55 | テストのテスト プロパティを取得します。 56 | 57 | 58 | 59 | 60 | 現在実行中のテスト メソッドを含むクラスの完全修飾名を取得する 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | 現在実行中のテスト メソッドの名前を取得する 72 | 73 | 74 | 75 | 76 | 現在のテスト成果を取得します。 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | 테스트 배포별 배포 항목(파일 또는 디렉터리)을 지정하는 데 사용됩니다. 10 | 테스트 클래스 또는 테스트 메서드에서 지정할 수 있습니다. 11 | 둘 이상의 항목을 지정하기 위한 여러 특성 인스턴스를 가질 수 있습니다. 12 | 항목 경로는 절대 또는 상대 경로일 수 있으며, 상대 경로인 경우 RunConfig.RelativePathRoot가 기준입니다. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | 클래스의 새 인스턴스를 초기화합니다. 26 | 27 | 배포할 파일 또는 디렉터리. 경로는 빌드 출력 디렉터리에 대해 상대적입니다. 배포된 테스트 어셈블리와 동일한 디렉터리에 항목이 복사됩니다. 28 | 29 | 30 | 31 | 클래스의 새 인스턴스를 초기화합니다. 32 | 33 | 배포할 파일 또는 디렉터리에 대한 상대 또는 절대 경로. 경로는 빌드 출력 디렉터리에 대해 상대적입니다. 배포된 테스트 어셈블리와 동일한 디렉터리에 항목이 복사됩니다. 34 | 항목을 복사할 디렉터리의 경로. 배포 디렉터리에 대한 절대 경로 또는 상대 경로일 수 있습니다.에 의해 식별되는 모든 파일 및 디렉터리는 이 디렉터리에 복사됩니다. 35 | 36 | 37 | 38 | 복사할 소스 파일 또는 폴더의 경로를 가져옵니다. 39 | 40 | 41 | 42 | 43 | 항목을 복사할 디렉터리의 경로를 가져옵니다. 44 | 45 | 46 | 47 | 48 | TestContext 클래스. 이 클래스는 완전히 추상 클래스여야 하며 멤버를 포함할 49 | 수 없습니다. 어댑터는 멤버를 구현합니다. 프레임워크의 사용자는 50 | 잘 정의된 인터페이스를 통해서만 여기에 액세스할 수 있습니다. 51 | 52 | 53 | 54 | 55 | 테스트에 대한 테스트 속성을 가져옵니다. 56 | 57 | 58 | 59 | 60 | 현재 실행 중인 테스트 메서드를 포함하는 클래스의 정규화된 이름을 가져옵니다 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | 현재 실행 중인 테스트 메서드의 이름을 가져옵니다. 72 | 73 | 74 | 75 | 76 | 현재 테스트 결과를 가져옵니다. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | Test başına dağıtım için dağıtım öğesi (dosya veya dizin) belirtmek üzere kullanılır. 10 | Test sınıfında veya test metodunda belirtilebilir. 11 | Birden fazla öğe belirtmek için özniteliğin birden fazla örneğini içerebilir. 12 | Öğe yolu mutlak veya göreli olabilir; göreli ise RunConfig.RelativePathRoot ile görelidir. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | sınıfının yeni bir örneğini başlatır. 26 | 27 | Dağıtılacak dosya veya dizin. Yol, derleme çıktı dizinine göredir. Öğe, dağıtılan test bütünleştirilmiş kodlarıyla aynı dizine kopyalanır. 28 | 29 | 30 | 31 | sınıfının yeni bir örneğini başlatır 32 | 33 | Dağıtılacak dosya veya dizinin göreli ya da mutlak yolu. Yol, derleme çıktı dizinine göredir. Öğe, dağıtılan test bütünleştirilmiş kodlarıyla aynı dizine kopyalanır. 34 | Öğelerin kopyalanacağı dizinin yolu. Dağıtım dizinine göre mutlak veya göreli olabilir. Tüm dosyalar ve dizinler şuna göre tanımlanır: bu dizine kopyalanacak. 35 | 36 | 37 | 38 | Kopyalanacak kaynak dosya veya klasörün yolunu alır. 39 | 40 | 41 | 42 | 43 | Öğenin kopyalandığı dizinin yolunu alır. 44 | 45 | 46 | 47 | 48 | TestContext sınıfı. Bu sınıf tamamen soyut olmalı ve herhangi bir üye 49 | içermemelidir. Üyeler bağdaştırıcı tarafından uygulanır. Çerçevedeki kullanıcılar 50 | buna yalnızca iyi tanımlanmış bir arabirim üzerinden erişmelidir. 51 | 52 | 53 | 54 | 55 | Bir testin test özelliklerini alır. 56 | 57 | 58 | 59 | 60 | O anda yürütülen test metodunu içeren sınıfın tam adını alır 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | Yürütülmekte olan test metodunun Adını alır 72 | 73 | 74 | 75 | 76 | Geçerli test sonucunu alır. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | 用于为预测试部署指定部署项(文件或目录)。 10 | 可在测试类或测试方法上指定。 11 | 可使用多个特性实例来指定多个项。 12 | 项路径可以是绝对路径或相对路径,如果为相对路径,则相对于 RunConfig.RelativePathRoot。 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | 初始化 类的新实例。 26 | 27 | 要部署的文件或目录。路径与生成输出目录相关。将项复制到与已部署测试程序集相同的目录。 28 | 29 | 30 | 31 | 初始化 类的新实例 32 | 33 | 要部署的文件或目录的相对路径或绝对路径。该路径相对于生成输出目录。将项复制到与已部署测试程序集相同的目录。 34 | 要将项复制到其中的目录路径。它可以是绝对部署目录或相对部署目录。所有由以下对象标识的文件和目录: 将复制到此目录。 35 | 36 | 37 | 38 | 获取要复制的源文件或文件夹的路径。 39 | 40 | 41 | 42 | 43 | 获取将项复制到其中的目录路径。 44 | 45 | 46 | 47 | 48 | TestContext 类。此类应完全抽象,且不包含任何 49 | 成员。适配器将实现成员。框架中的用户应 50 | 仅通过定义完善的接口对此进行访问。 51 | 52 | 53 | 54 | 55 | 获取测试的测试属性。 56 | 57 | 58 | 59 | 60 | 获取包含当前正在执行的测试方法的类的完全限定名称 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | 获取当前正在执行的测试方法的名称 72 | 73 | 74 | 75 | 76 | 获取当前测试结果。 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | 用來指定每個測試部署的部署項目 (檔案或目錄)。 10 | 可以指定於測試類別或測試方法。 11 | 可以有屬性的多個執行個體來指定多個項目。 12 | 項目路徑可以是相對或絕對路徑,如果是相對路徑,則是 RunConfig.RelativePathRoot 的相對路徑。 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | 初始化 類別的新執行個體。 26 | 27 | 要部署的檔案或目錄。路徑是建置輸出目錄的相對路徑。項目將會複製到與已部署的測試組件相同的目錄。 28 | 29 | 30 | 31 | 初始化 類別的新執行個體 32 | 33 | 要部署之檔案或目錄的相對或絕對路徑。路徑是建置輸出目錄的相對路徑。項目將會複製到與已部署的測試組件相同的目錄。 34 | 要將項目複製到其中之目錄的路徑。它可以是部署目錄的絕對或相對路徑。下者所識別的所有檔案和目錄: 將會複製到這個目錄中。 35 | 36 | 37 | 38 | 取得要複製之來源檔案或資料夾的路徑。 39 | 40 | 41 | 42 | 43 | 取得要將項目複製到其中之目錄的路徑。 44 | 45 | 46 | 47 | 48 | TestContext 類別。這個類別應該是完全抽象的,而且未包含任何 49 | 成員。配接器將會實作成員。架構中的使用者只 50 | 應透過妥善定義的介面來存取這個項目。 51 | 52 | 53 | 54 | 55 | 取得測試的測試屬性。 56 | 57 | 58 | 59 | 60 | 取得包含目前正在執行之測試方法的類別完整名稱 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | 取得目前正在執行的測試方法名稱 72 | 73 | 74 | 75 | 76 | 取得目前測試結果。 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/DBCInterface/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /DBCInterfaceTests/AsyncParsingTests.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.VisualStudio.TestTools.UnitTesting; 2 | using System; 3 | using System.IO; 4 | using System.Threading.Tasks; 5 | 6 | namespace Aptiv.DBCFiles.Tests 7 | { 8 | [TestClass] 9 | public class AsyncParsingTests 10 | { 11 | DBCFile dbf; 12 | const byte HEAD = 0x50; 13 | 14 | [TestMethod()] 15 | [TestProperty("Category", "Load DBC")] 16 | public async Task DBCFileTest0() 17 | { 18 | foreach (var dbc in Directory.EnumerateFiles(TestToken.path, "*.dbc", SearchOption.AllDirectories)) 19 | { 20 | dbf = new DBCFile(dbc, false); 21 | await dbf.CreateLibraryDBCAsync(); 22 | Console.WriteLine(dbc); 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /DBCInterfaceTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | [assembly: AssemblyTitle("DBCInterfaceTests")] 6 | [assembly: AssemblyDescription("")] 7 | [assembly: AssemblyConfiguration("")] 8 | [assembly: AssemblyCompany("Delphi Testing Lab")] 9 | [assembly: AssemblyProduct("DBCInterfaceTests")] 10 | [assembly: AssemblyCopyright("Copyright © Delphi Testing Lab 2018")] 11 | [assembly: AssemblyTrademark("")] 12 | [assembly: AssemblyCulture("")] 13 | 14 | [assembly: ComVisible(false)] 15 | 16 | [assembly: Guid("9426d486-1732-4b56-a53d-de7273a2ca0c")] 17 | 18 | // [assembly: AssemblyVersion("1.0.*")] 19 | [assembly: AssemblyVersion("1.0.0.1")] 20 | [assembly: AssemblyFileVersion("1.0.0.1")] 21 | -------------------------------------------------------------------------------- /DBCInterfaceTests/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Aptiv.DBCFiles.Tests.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aptiv.DBCFiles.Tests.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// Looks up a localized resource of type System.Byte[]. 65 | /// 66 | internal static byte[] ISM_A_NCR17Q4_HMICAN_171121 { 67 | get { 68 | object obj = ResourceManager.GetObject("ISM_A_NCR17Q4_HMICAN_171121", resourceCulture); 69 | return ((byte[])(obj)); 70 | } 71 | } 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /DBCInterfaceTests/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Aptiv West Lafayette Lab 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /dbc-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/dbc-icon.png -------------------------------------------------------------------------------- /packages/CAN.1.0.2/CAN.1.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/CAN.1.0.2/CAN.1.0.2.nupkg -------------------------------------------------------------------------------- /packages/CAN.1.0.2/lib/net45/CAN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/CAN.1.0.2/lib/net45/CAN.dll -------------------------------------------------------------------------------- /packages/Conversions.1.0.0.2/Conversions.1.0.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/Conversions.1.0.0.2/Conversions.1.0.0.2.nupkg -------------------------------------------------------------------------------- /packages/Conversions.1.0.0.2/lib/net45/Conversions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/Conversions.1.0.0.2/lib/net45/Conversions.dll -------------------------------------------------------------------------------- /packages/GenericMessaging.1.0.0.3/GenericMessaging.1.0.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/GenericMessaging.1.0.0.3/GenericMessaging.1.0.0.3.nupkg -------------------------------------------------------------------------------- /packages/GenericMessaging.1.0.0.3/lib/net45/GenericMessaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/GenericMessaging.1.0.0.3/lib/net45/GenericMessaging.dll -------------------------------------------------------------------------------- /packages/GenericMessaging.1.0.6/GenericMessaging.1.0.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/GenericMessaging.1.0.6/GenericMessaging.1.0.6.nupkg -------------------------------------------------------------------------------- /packages/GenericMessaging.1.0.6/lib/net45/GenericMessaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/GenericMessaging.1.0.6/lib/net45/GenericMessaging.dll -------------------------------------------------------------------------------- /packages/GlobalLibrary.1.0.1/GlobalLibrary.1.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/GlobalLibrary.1.0.1/GlobalLibrary.1.0.1.nupkg -------------------------------------------------------------------------------- /packages/GlobalLibrary.1.0.1/lib/net45/GlobalLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/GlobalLibrary.1.0.1/lib/net45/GlobalLibrary.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/.signature.p7s -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/MSTest.TestAdapter.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/MSTest.TestAdapter.1.3.2.nupkg -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/net45/MSTest.TestAdapter.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll 16 | PreserveNewest 17 | False 18 | 19 | 20 | -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/net45/MSTest.TestAdapter.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | %(CurrentUICultureHierarchy.Identity) 25 | 26 | 27 | 28 | %(MSTestV2ResourceFiles.CultureString)\%(Filename)%(Extension) 29 | PreserveNewest 30 | False 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/netcoreapp1.0/MSTest.TestAdapter.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll 16 | PreserveNewest 17 | False 18 | 19 | 20 | -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/uap10.0/MSTest.TestAdapter.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll 16 | PreserveNewest 17 | False 18 | 19 | 20 | -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/uap10.0/MSTest.TestAdapter.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | %(CurrentUICultureHierarchy.Identity) 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 34 | $(CurrentUICultureHierarchy)\%(FileName).resources.dll 35 | PreserveNewest 36 | %(FullPath) 37 | False 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /packages/MSTest.TestAdapter.1.3.2/build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestAdapter.1.3.2/build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/MSTest.TestFramework.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.2.0/MSTest.TestFramework.1.2.0.nupkg -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.2.0/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.2.0/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | Used to specify deployment item (file or directory) for per-test deployment. 10 | Can be specified on test class or test method. 11 | Can have multiple instances of the attribute to specify more than one item. 12 | The item path can be absolute or relative, if relative, it is relative to RunConfig.RelativePathRoot. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | Initializes a new instance of the class. 26 | 27 | The file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies. 28 | 29 | 30 | 31 | Initializes a new instance of the class 32 | 33 | The relative or absolute path to the file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies. 34 | The path of the directory to which the items are to be copied. It can be either absolute or relative to the deployment directory. All files and directories identified by will be copied to this directory. 35 | 36 | 37 | 38 | Gets the path of the source file or folder to be copied. 39 | 40 | 41 | 42 | 43 | Gets the path of the directory to which the item is copied. 44 | 45 | 46 | 47 | 48 | TestContext class. This class should be fully abstract and not contain any 49 | members. The adapter will implement the members. Users in the framework should 50 | only access this via a well-defined interface. 51 | 52 | 53 | 54 | 55 | Gets test properties for a test. 56 | 57 | 58 | 59 | 60 | Gets Fully-qualified name of the class containing the test method currently being executed 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | Gets the Name of the test method currently being executed 72 | 73 | 74 | 75 | 76 | Gets the current test outcome. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | Používá se pro určení položky nasazení (souboru nebo adresáře) za účelem nasazení podle testu. 10 | Lze zadat na testovací třídě nebo testovací metodě. 11 | Může mít více instancí atributu pro zadání více než jedné položky. 12 | Cesta k položce může být absolutní nebo relativní. Pokud je relativní, je relativní ve vztahu k RunConfig.RelativePathRoot. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | Inicializuje novou instanci třídy . 26 | 27 | Soubor nebo adresář, který se má nasadit. Cesta je relativní ve vztahu k adresáři výstupu sestavení. Položka bude zkopírována do adresáře, ve kterém jsou nasazená testovací sestavení. 28 | 29 | 30 | 31 | Inicializuje novou instanci třídy . 32 | 33 | Relativní nebo absolutní cesta k souboru nebo adresáři, který se má nasadit. Cesta je relativní ve vztahu k adresáři výstupu sestavení. Položka bude zkopírována do stejného adresáře jako nasazená testovací sestavení. 34 | Cesta k adresáři, do kterého se mají položky kopírovat. Může být absolutní nebo relativní ve vztahu k adresáři nasazení. Všechny soubory a adresáře určené cestou budou zkopírovány do tohoto adresáře. 35 | 36 | 37 | 38 | Získá cestu ke zdrojovému souboru nebo složce, které se mají kopírovat. 39 | 40 | 41 | 42 | 43 | Získá cestu adresáře, do kterého se položka zkopíruje. 44 | 45 | 46 | 47 | 48 | Třída TestContext. Tato třída by měla být zcela abstraktní a neměla by obsahovat žádné 49 | členy. Členy implementuje adaptér. Uživatelé rozhraní by měli 50 | k této funkci přistupovat jenom prostřednictvím dobře definovaného rozhraní. 51 | 52 | 53 | 54 | 55 | Získá vlastnosti testu. 56 | 57 | 58 | 59 | 60 | Získá plně kvalifikovaný název třídy obsahující aktuálně prováděnou testovací metodu. 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | Získá název aktuálně prováděné testovací metody. 72 | 73 | 74 | 75 | 76 | Získá aktuální výsledek testu. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | テスト配置ごとに配置項目 (ファイルまたはディレクトリ) を指定するために使用されます。 10 | テスト クラスまたはテスト メソッドで指定できます。 11 | 属性に複数のインスタンスを指定して、2 つ以上の項目を指定することができます。 12 | 項目のパスには絶対パスまたは相対パスを指定できます。相対パスの場合は、RunConfig.RelativePathRoot からの相対パスです。 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | クラスの新しいインスタンスを初期化します。 26 | 27 | 配置するファイルまたはディレクトリ。パスはビルドの出力ディレクトリの相対パスです。項目は配置されたテスト アセンブリと同じディレクトリにコピーされます。 28 | 29 | 30 | 31 | クラスの新しいインスタンスを初期化する 32 | 33 | 配置するファイルまたはディレクトリへの相対パスまたは絶対パス。パスはビルドの出力ディレクトリの相対パスです。項目は配置されたテスト アセンブリと同じディレクトリにコピーされます。 34 | アイテムのコピー先のディレクトリのパス。配置ディレクトリへの絶対パスまたは相対パスのいずれかを指定できます。次で識別されるすべてのファイルとディレクトリは このディレクトリにコピーされます。 35 | 36 | 37 | 38 | コピーするソース ファイルまたはフォルダーのパスを取得します。 39 | 40 | 41 | 42 | 43 | 項目のコピー先のディレクトリのパスを取得します。 44 | 45 | 46 | 47 | 48 | TestContext クラス。このクラスは完全に抽象的でなければならず、かつメンバー 49 | を含んでいてはなりません。アダプターはメンバーを実装します。フレームワーク内のユーザーは 50 | 正しく定義されたインターフェイスを介してのみこのクラスにアクセスする必要があります。 51 | 52 | 53 | 54 | 55 | テストのテスト プロパティを取得します。 56 | 57 | 58 | 59 | 60 | 現在実行中のテスト メソッドを含むクラスの完全修飾名を取得する 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | 現在実行中のテスト メソッドの名前を取得する 72 | 73 | 74 | 75 | 76 | 現在のテスト成果を取得します。 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | 테스트 배포별 배포 항목(파일 또는 디렉터리)을 지정하는 데 사용됩니다. 10 | 테스트 클래스 또는 테스트 메서드에서 지정할 수 있습니다. 11 | 둘 이상의 항목을 지정하기 위한 여러 특성 인스턴스를 가질 수 있습니다. 12 | 항목 경로는 절대 또는 상대 경로일 수 있으며, 상대 경로인 경우 RunConfig.RelativePathRoot가 기준입니다. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | 클래스의 새 인스턴스를 초기화합니다. 26 | 27 | 배포할 파일 또는 디렉터리. 경로는 빌드 출력 디렉터리에 대해 상대적입니다. 배포된 테스트 어셈블리와 동일한 디렉터리에 항목이 복사됩니다. 28 | 29 | 30 | 31 | 클래스의 새 인스턴스를 초기화합니다. 32 | 33 | 배포할 파일 또는 디렉터리에 대한 상대 또는 절대 경로. 경로는 빌드 출력 디렉터리에 대해 상대적입니다. 배포된 테스트 어셈블리와 동일한 디렉터리에 항목이 복사됩니다. 34 | 항목을 복사할 디렉터리의 경로. 배포 디렉터리에 대한 절대 경로 또는 상대 경로일 수 있습니다.에 의해 식별되는 모든 파일 및 디렉터리는 이 디렉터리에 복사됩니다. 35 | 36 | 37 | 38 | 복사할 소스 파일 또는 폴더의 경로를 가져옵니다. 39 | 40 | 41 | 42 | 43 | 항목을 복사할 디렉터리의 경로를 가져옵니다. 44 | 45 | 46 | 47 | 48 | TestContext 클래스. 이 클래스는 완전히 추상 클래스여야 하며 멤버를 포함할 49 | 수 없습니다. 어댑터는 멤버를 구현합니다. 프레임워크의 사용자는 50 | 잘 정의된 인터페이스를 통해서만 여기에 액세스할 수 있습니다. 51 | 52 | 53 | 54 | 55 | 테스트에 대한 테스트 속성을 가져옵니다. 56 | 57 | 58 | 59 | 60 | 현재 실행 중인 테스트 메서드를 포함하는 클래스의 정규화된 이름을 가져옵니다 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | 현재 실행 중인 테스트 메서드의 이름을 가져옵니다. 72 | 73 | 74 | 75 | 76 | 현재 테스트 결과를 가져옵니다. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | Usado para especificar o item de implantação (arquivo ou diretório) para implantação por teste. 10 | Pode ser especificado em classe de teste ou em método de teste. 11 | Pode ter várias instâncias do atributo para especificar mais de um item. 12 | O caminho do item pode ser absoluto ou relativo. Se relativo, é relativo a RunConfig.RelativePathRoot. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | Inicializa uma nova instância da classe . 26 | 27 | O arquivo ou o diretório a ser implantado. O caminho é relativo ao diretório de saída do build. O item será copiado para o mesmo diretório que o dos assemblies de teste implantados. 28 | 29 | 30 | 31 | Inicializa uma nova instância da classe 32 | 33 | O caminho relativo ou absoluto ao arquivo ou ao diretório a ser implantado. O caminho é relativo ao diretório de saída do build. O item será copiado para o mesmo diretório que o dos assemblies de teste implantados. 34 | O caminho do diretório para o qual os itens deverão ser copiados. Ele pode ser absoluto ou relativo ao diretório de implantação. Todos os arquivos e diretórios identificados por serão copiados para esse diretório. 35 | 36 | 37 | 38 | Obtém o caminho da pasta ou do arquivo de origem a ser copiado. 39 | 40 | 41 | 42 | 43 | Obtém o caminho do diretório para o qual o item é copiado. 44 | 45 | 46 | 47 | 48 | Classe TestContext. Essa classe deve ser totalmente abstrata e não conter nenhum 49 | membro. O adaptador implementará os membros. Os usuários na estrutura devem 50 | acessá-la somente por meio de uma interface bem definida. 51 | 52 | 53 | 54 | 55 | Obtém as propriedades de teste para um teste. 56 | 57 | 58 | 59 | 60 | Obtém o Nome totalmente qualificado da classe contendo o método de teste executado no momento 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | Obtém o Nome do método de teste executado no momento 72 | 73 | 74 | 75 | 76 | Obtém o resultado do teste atual. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | Test başına dağıtım için dağıtım öğesi (dosya veya dizin) belirtmek üzere kullanılır. 10 | Test sınıfında veya test metodunda belirtilebilir. 11 | Birden fazla öğe belirtmek için özniteliğin birden fazla örneğini içerebilir. 12 | Öğe yolu mutlak veya göreli olabilir; göreli ise RunConfig.RelativePathRoot ile görelidir. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | sınıfının yeni bir örneğini başlatır. 26 | 27 | Dağıtılacak dosya veya dizin. Yol, derleme çıktı dizinine göredir. Öğe, dağıtılan test bütünleştirilmiş kodlarıyla aynı dizine kopyalanır. 28 | 29 | 30 | 31 | sınıfının yeni bir örneğini başlatır 32 | 33 | Dağıtılacak dosya veya dizinin göreli ya da mutlak yolu. Yol, derleme çıktı dizinine göredir. Öğe, dağıtılan test bütünleştirilmiş kodlarıyla aynı dizine kopyalanır. 34 | Öğelerin kopyalanacağı dizinin yolu. Dağıtım dizinine göre mutlak veya göreli olabilir. Tüm dosyalar ve dizinler şuna göre tanımlanır: bu dizine kopyalanacak. 35 | 36 | 37 | 38 | Kopyalanacak kaynak dosya veya klasörün yolunu alır. 39 | 40 | 41 | 42 | 43 | Öğenin kopyalandığı dizinin yolunu alır. 44 | 45 | 46 | 47 | 48 | TestContext sınıfı. Bu sınıf tamamen soyut olmalı ve herhangi bir üye 49 | içermemelidir. Üyeler bağdaştırıcı tarafından uygulanır. Çerçevedeki kullanıcılar 50 | buna yalnızca iyi tanımlanmış bir arabirim üzerinden erişmelidir. 51 | 52 | 53 | 54 | 55 | Bir testin test özelliklerini alır. 56 | 57 | 58 | 59 | 60 | O anda yürütülen test metodunu içeren sınıfın tam adını alır 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | Yürütülmekte olan test metodunun Adını alır 72 | 73 | 74 | 75 | 76 | Geçerli test sonucunu alır. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | 用于为预测试部署指定部署项(文件或目录)。 10 | 可在测试类或测试方法上指定。 11 | 可使用多个特性实例来指定多个项。 12 | 项路径可以是绝对路径或相对路径,如果为相对路径,则相对于 RunConfig.RelativePathRoot。 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | 初始化 类的新实例。 26 | 27 | 要部署的文件或目录。路径与生成输出目录相关。将项复制到与已部署测试程序集相同的目录。 28 | 29 | 30 | 31 | 初始化 类的新实例 32 | 33 | 要部署的文件或目录的相对路径或绝对路径。该路径相对于生成输出目录。将项复制到与已部署测试程序集相同的目录。 34 | 要将项复制到其中的目录路径。它可以是绝对部署目录或相对部署目录。所有由以下对象标识的文件和目录: 将复制到此目录。 35 | 36 | 37 | 38 | 获取要复制的源文件或文件夹的路径。 39 | 40 | 41 | 42 | 43 | 获取将项复制到其中的目录路径。 44 | 45 | 46 | 47 | 48 | TestContext 类。此类应完全抽象,且不包含任何 49 | 成员。适配器将实现成员。框架中的用户应 50 | 仅通过定义完善的接口对此进行访问。 51 | 52 | 53 | 54 | 55 | 获取测试的测试属性。 56 | 57 | 58 | 59 | 60 | 获取包含当前正在执行的测试方法的类的完全限定名称 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | 获取当前正在执行的测试方法的名称 72 | 73 | 74 | 75 | 76 | 获取当前测试结果。 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | 用來指定每個測試部署的部署項目 (檔案或目錄)。 10 | 可以指定於測試類別或測試方法。 11 | 可以有屬性的多個執行個體來指定多個項目。 12 | 項目路徑可以是相對或絕對路徑,如果是相對路徑,則是 RunConfig.RelativePathRoot 的相對路徑。 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | 初始化 類別的新執行個體。 26 | 27 | 要部署的檔案或目錄。路徑是建置輸出目錄的相對路徑。項目將會複製到與已部署的測試組件相同的目錄。 28 | 29 | 30 | 31 | 初始化 類別的新執行個體 32 | 33 | 要部署之檔案或目錄的相對或絕對路徑。路徑是建置輸出目錄的相對路徑。項目將會複製到與已部署的測試組件相同的目錄。 34 | 要將項目複製到其中之目錄的路徑。它可以是部署目錄的絕對或相對路徑。下者所識別的所有檔案和目錄: 將會複製到這個目錄中。 35 | 36 | 37 | 38 | 取得要複製之來源檔案或資料夾的路徑。 39 | 40 | 41 | 42 | 43 | 取得要將項目複製到其中之目錄的路徑。 44 | 45 | 46 | 47 | 48 | TestContext 類別。這個類別應該是完全抽象的,而且未包含任何 49 | 成員。配接器將會實作成員。架構中的使用者只 50 | 應透過妥善定義的介面來存取這個項目。 51 | 52 | 53 | 54 | 55 | 取得測試的測試屬性。 56 | 57 | 58 | 59 | 60 | 取得包含目前正在執行之測試方法的類別完整名稱 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | 取得目前正在執行的測試方法名稱 72 | 73 | 74 | 75 | 76 | 取得目前測試結果。 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.2.0/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.3.2/.signature.p7s -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/MSTest.TestFramework.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.3.2/MSTest.TestFramework.1.3.2.nupkg -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.3.2/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.3.2/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | Used to specify deployment item (file or directory) for per-test deployment. 10 | Can be specified on test class or test method. 11 | Can have multiple instances of the attribute to specify more than one item. 12 | The item path can be absolute or relative, if relative, it is relative to RunConfig.RelativePathRoot. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | Initializes a new instance of the class. 26 | 27 | The file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies. 28 | 29 | 30 | 31 | Initializes a new instance of the class 32 | 33 | The relative or absolute path to the file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies. 34 | The path of the directory to which the items are to be copied. It can be either absolute or relative to the deployment directory. All files and directories identified by will be copied to this directory. 35 | 36 | 37 | 38 | Gets the path of the source file or folder to be copied. 39 | 40 | 41 | 42 | 43 | Gets the path of the directory to which the item is copied. 44 | 45 | 46 | 47 | 48 | TestContext class. This class should be fully abstract and not contain any 49 | members. The adapter will implement the members. Users in the framework should 50 | only access this via a well-defined interface. 51 | 52 | 53 | 54 | 55 | Gets test properties for a test. 56 | 57 | 58 | 59 | 60 | Gets Fully-qualified name of the class containing the test method currently being executed 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | Gets the Name of the test method currently being executed 72 | 73 | 74 | 75 | 76 | Gets the current test outcome. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | Používá se pro určení položky nasazení (souboru nebo adresáře) za účelem nasazení podle testu. 10 | Lze zadat na testovací třídě nebo testovací metodě. 11 | Může mít více instancí atributu pro zadání více než jedné položky. 12 | Cesta k položce může být absolutní nebo relativní. Pokud je relativní, je relativní ve vztahu k RunConfig.RelativePathRoot. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | Inicializuje novou instanci třídy . 26 | 27 | Soubor nebo adresář, který se má nasadit. Cesta je relativní ve vztahu k adresáři výstupu sestavení. Položka bude zkopírována do adresáře, ve kterém jsou nasazená testovací sestavení. 28 | 29 | 30 | 31 | Inicializuje novou instanci třídy . 32 | 33 | Relativní nebo absolutní cesta k souboru nebo adresáři, který se má nasadit. Cesta je relativní ve vztahu k adresáři výstupu sestavení. Položka bude zkopírována do stejného adresáře jako nasazená testovací sestavení. 34 | Cesta k adresáři, do kterého se mají položky kopírovat. Může být absolutní nebo relativní ve vztahu k adresáři nasazení. Všechny soubory a adresáře určené cestou budou zkopírovány do tohoto adresáře. 35 | 36 | 37 | 38 | Získá cestu ke zdrojovému souboru nebo složce, které se mají kopírovat. 39 | 40 | 41 | 42 | 43 | Získá cestu adresáře, do kterého se položka zkopíruje. 44 | 45 | 46 | 47 | 48 | Třída TestContext. Tato třída by měla být zcela abstraktní a neměla by obsahovat žádné 49 | členy. Členy implementuje adaptér. Uživatelé rozhraní by měli 50 | k této funkci přistupovat jenom prostřednictvím dobře definovaného rozhraní. 51 | 52 | 53 | 54 | 55 | Získá vlastnosti testu. 56 | 57 | 58 | 59 | 60 | Získá plně kvalifikovaný název třídy obsahující aktuálně prováděnou testovací metodu. 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | Získá název aktuálně prováděné testovací metody. 72 | 73 | 74 | 75 | 76 | Získá aktuální výsledek testu. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | テスト配置ごとに配置項目 (ファイルまたはディレクトリ) を指定するために使用されます。 10 | テスト クラスまたはテスト メソッドで指定できます。 11 | 属性に複数のインスタンスを指定して、2 つ以上の項目を指定することができます。 12 | 項目のパスには絶対パスまたは相対パスを指定できます。相対パスの場合は、RunConfig.RelativePathRoot からの相対パスです。 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | クラスの新しいインスタンスを初期化します。 26 | 27 | 配置するファイルまたはディレクトリ。パスはビルドの出力ディレクトリの相対パスです。項目は配置されたテスト アセンブリと同じディレクトリにコピーされます。 28 | 29 | 30 | 31 | クラスの新しいインスタンスを初期化する 32 | 33 | 配置するファイルまたはディレクトリへの相対パスまたは絶対パス。パスはビルドの出力ディレクトリの相対パスです。項目は配置されたテスト アセンブリと同じディレクトリにコピーされます。 34 | アイテムのコピー先のディレクトリのパス。配置ディレクトリへの絶対パスまたは相対パスのいずれかを指定できます。次で識別されるすべてのファイルとディレクトリは このディレクトリにコピーされます。 35 | 36 | 37 | 38 | コピーするソース ファイルまたはフォルダーのパスを取得します。 39 | 40 | 41 | 42 | 43 | 項目のコピー先のディレクトリのパスを取得します。 44 | 45 | 46 | 47 | 48 | TestContext クラス。このクラスは完全に抽象的でなければならず、かつメンバー 49 | を含んでいてはなりません。アダプターはメンバーを実装します。フレームワーク内のユーザーは 50 | 正しく定義されたインターフェイスを介してのみこのクラスにアクセスする必要があります。 51 | 52 | 53 | 54 | 55 | テストのテスト プロパティを取得します。 56 | 57 | 58 | 59 | 60 | 現在実行中のテスト メソッドを含むクラスの完全修飾名を取得する 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | 現在実行中のテスト メソッドの名前を取得する 72 | 73 | 74 | 75 | 76 | 現在のテスト成果を取得します。 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | 테스트 배포별 배포 항목(파일 또는 디렉터리)을 지정하는 데 사용됩니다. 10 | 테스트 클래스 또는 테스트 메서드에서 지정할 수 있습니다. 11 | 둘 이상의 항목을 지정하기 위한 여러 특성 인스턴스를 가질 수 있습니다. 12 | 항목 경로는 절대 또는 상대 경로일 수 있으며, 상대 경로인 경우 RunConfig.RelativePathRoot가 기준입니다. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | 클래스의 새 인스턴스를 초기화합니다. 26 | 27 | 배포할 파일 또는 디렉터리. 경로는 빌드 출력 디렉터리에 대해 상대적입니다. 배포된 테스트 어셈블리와 동일한 디렉터리에 항목이 복사됩니다. 28 | 29 | 30 | 31 | 클래스의 새 인스턴스를 초기화합니다. 32 | 33 | 배포할 파일 또는 디렉터리에 대한 상대 또는 절대 경로. 경로는 빌드 출력 디렉터리에 대해 상대적입니다. 배포된 테스트 어셈블리와 동일한 디렉터리에 항목이 복사됩니다. 34 | 항목을 복사할 디렉터리의 경로. 배포 디렉터리에 대한 절대 경로 또는 상대 경로일 수 있습니다.에 의해 식별되는 모든 파일 및 디렉터리는 이 디렉터리에 복사됩니다. 35 | 36 | 37 | 38 | 복사할 소스 파일 또는 폴더의 경로를 가져옵니다. 39 | 40 | 41 | 42 | 43 | 항목을 복사할 디렉터리의 경로를 가져옵니다. 44 | 45 | 46 | 47 | 48 | TestContext 클래스. 이 클래스는 완전히 추상 클래스여야 하며 멤버를 포함할 49 | 수 없습니다. 어댑터는 멤버를 구현합니다. 프레임워크의 사용자는 50 | 잘 정의된 인터페이스를 통해서만 여기에 액세스할 수 있습니다. 51 | 52 | 53 | 54 | 55 | 테스트에 대한 테스트 속성을 가져옵니다. 56 | 57 | 58 | 59 | 60 | 현재 실행 중인 테스트 메서드를 포함하는 클래스의 정규화된 이름을 가져옵니다 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | 현재 실행 중인 테스트 메서드의 이름을 가져옵니다. 72 | 73 | 74 | 75 | 76 | 현재 테스트 결과를 가져옵니다. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | Test başına dağıtım için dağıtım öğesi (dosya veya dizin) belirtmek üzere kullanılır. 10 | Test sınıfında veya test metodunda belirtilebilir. 11 | Birden fazla öğe belirtmek için özniteliğin birden fazla örneğini içerebilir. 12 | Öğe yolu mutlak veya göreli olabilir; göreli ise RunConfig.RelativePathRoot ile görelidir. 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | sınıfının yeni bir örneğini başlatır. 26 | 27 | Dağıtılacak dosya veya dizin. Yol, derleme çıktı dizinine göredir. Öğe, dağıtılan test bütünleştirilmiş kodlarıyla aynı dizine kopyalanır. 28 | 29 | 30 | 31 | sınıfının yeni bir örneğini başlatır 32 | 33 | Dağıtılacak dosya veya dizinin göreli ya da mutlak yolu. Yol, derleme çıktı dizinine göredir. Öğe, dağıtılan test bütünleştirilmiş kodlarıyla aynı dizine kopyalanır. 34 | Öğelerin kopyalanacağı dizinin yolu. Dağıtım dizinine göre mutlak veya göreli olabilir. Tüm dosyalar ve dizinler şuna göre tanımlanır: bu dizine kopyalanacak. 35 | 36 | 37 | 38 | Kopyalanacak kaynak dosya veya klasörün yolunu alır. 39 | 40 | 41 | 42 | 43 | Öğenin kopyalandığı dizinin yolunu alır. 44 | 45 | 46 | 47 | 48 | TestContext sınıfı. Bu sınıf tamamen soyut olmalı ve herhangi bir üye 49 | içermemelidir. Üyeler bağdaştırıcı tarafından uygulanır. Çerçevedeki kullanıcılar 50 | buna yalnızca iyi tanımlanmış bir arabirim üzerinden erişmelidir. 51 | 52 | 53 | 54 | 55 | Bir testin test özelliklerini alır. 56 | 57 | 58 | 59 | 60 | O anda yürütülen test metodunu içeren sınıfın tam adını alır 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | Yürütülmekte olan test metodunun Adını alır 72 | 73 | 74 | 75 | 76 | Geçerli test sonucunu alır. 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | 用于为预测试部署指定部署项(文件或目录)。 10 | 可在测试类或测试方法上指定。 11 | 可使用多个特性实例来指定多个项。 12 | 项路径可以是绝对路径或相对路径,如果为相对路径,则相对于 RunConfig.RelativePathRoot。 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | 初始化 类的新实例。 26 | 27 | 要部署的文件或目录。路径与生成输出目录相关。将项复制到与已部署测试程序集相同的目录。 28 | 29 | 30 | 31 | 初始化 类的新实例 32 | 33 | 要部署的文件或目录的相对路径或绝对路径。该路径相对于生成输出目录。将项复制到与已部署测试程序集相同的目录。 34 | 要将项复制到其中的目录路径。它可以是绝对部署目录或相对部署目录。所有由以下对象标识的文件和目录: 将复制到此目录。 35 | 36 | 37 | 38 | 获取要复制的源文件或文件夹的路径。 39 | 40 | 41 | 42 | 43 | 获取将项复制到其中的目录路径。 44 | 45 | 46 | 47 | 48 | TestContext 类。此类应完全抽象,且不包含任何 49 | 成员。适配器将实现成员。框架中的用户应 50 | 仅通过定义完善的接口对此进行访问。 51 | 52 | 53 | 54 | 55 | 获取测试的测试属性。 56 | 57 | 58 | 59 | 60 | 获取包含当前正在执行的测试方法的类的完全限定名称 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | 获取当前正在执行的测试方法的名称 72 | 73 | 74 | 75 | 76 | 获取当前测试结果。 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions 5 | 6 | 7 | 8 | 9 | 用來指定每個測試部署的部署項目 (檔案或目錄)。 10 | 可以指定於測試類別或測試方法。 11 | 可以有屬性的多個執行個體來指定多個項目。 12 | 項目路徑可以是相對或絕對路徑,如果是相對路徑,則是 RunConfig.RelativePathRoot 的相對路徑。 13 | 14 | 15 | [DeploymentItem("file1.xml")] 16 | [DeploymentItem("file2.xml", "DataFiles")] 17 | [DeploymentItem("bin\Debug")] 18 | 19 | 20 | DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future. 21 | 22 | 23 | 24 | 25 | 初始化 類別的新執行個體。 26 | 27 | 要部署的檔案或目錄。路徑是建置輸出目錄的相對路徑。項目將會複製到與已部署的測試組件相同的目錄。 28 | 29 | 30 | 31 | 初始化 類別的新執行個體 32 | 33 | 要部署之檔案或目錄的相對或絕對路徑。路徑是建置輸出目錄的相對路徑。項目將會複製到與已部署的測試組件相同的目錄。 34 | 要將項目複製到其中之目錄的路徑。它可以是部署目錄的絕對或相對路徑。下者所識別的所有檔案和目錄: 將會複製到這個目錄中。 35 | 36 | 37 | 38 | 取得要複製之來源檔案或資料夾的路徑。 39 | 40 | 41 | 42 | 43 | 取得要將項目複製到其中之目錄的路徑。 44 | 45 | 46 | 47 | 48 | TestContext 類別。這個類別應該是完全抽象的,而且未包含任何 49 | 成員。配接器將會實作成員。架構中的使用者只 50 | 應透過妥善定義的介面來存取這個項目。 51 | 52 | 53 | 54 | 55 | 取得測試的測試屬性。 56 | 57 | 58 | 59 | 60 | 取得包含目前正在執行之測試方法的類別完整名稱 61 | 62 | 63 | This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. 64 | Those attributes have access to the test context, and provide messages that are included 65 | in the test results. Users can benefit from messages that include the fully-qualified 66 | class name in addition to the name of the test method currently being executed. 67 | 68 | 69 | 70 | 71 | 取得目前正在執行的測試方法名稱 72 | 73 | 74 | 75 | 76 | 取得目前測試結果。 77 | 78 | 79 | 80 | 81 | Used to write trace messages while the test is running 82 | 83 | formatted message string 84 | 85 | 86 | 87 | Used to write trace messages while the test is running 88 | 89 | format string 90 | the arguments 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.3.2/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /packages/MSTest.TestFramework.1.3.2/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aptiv-WLL/dbc-interface/09371100f0ff56d2f3a3680a8f863d642d32f4f2/packages/MSTest.TestFramework.1.3.2/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # ![](dbc-icon.png) DBC Interface 2 | 3 | Used for parsing and storing dbc files. 4 | --------------------------------------------------------------------------------