ArxmlAutomation-Basic.Tests.ps1
BeforeAll{ $env:PSModulePath+=[IO.Path]::PathSeparator+(Resolve-Path "$PSScriptRoot/..") $moduleName=(([System.IO.DirectoryInfo] (Resolve-Path "$PSScriptRoot").Path).Name) Write-Host "Test Module Name $moduleName" Import-Module $moduleName -Force & Resolve-Path ("$PSScriptRoot/../../Rules/ArxmlAutomation.Rules.ps1") Get-AUTOSARCollection -FilePaths (Get-ChildItem "$PSScriptRoot/../../ExampleResouces/SWComponentAndComposition" -Filter "*.arxml" -Recurse)|Use-AutoSarCollection } Describe "Test for Create New Arxml Object" { It "AutoSar object shall be delivered"{ New-AutosarObj|Foreach-Object {$_.GetType().ToString()}|Should -Be ("AR430.Autosar") } } Describe "Test for Reference Related Functions"{ It "Find Ref Properties"{ Find-AllItemsByType -Type ([AR430.SwComponentPrototype])| Get-ArElementRef| Should -BeOfType AR430.Ref } It "Find Ref Obj"{ Find-AllItemsByType -Type ([AR430.SwComponentPrototype])| Find-ArElementFromRef| Should -BeOfType AR430.ApplicationSwComponentType } } Describe "Find-NestedReferrableItem"{ It "Normal Execution Example"{ { $result=[AR430.CompositionSwComponentType]|Find-NestedReferrableItem -DepthAllow 5 }|Should -not -throw } } |