私はVerigyから受け取ったASCIIファイルに基づいて私のすべてのVerigy 93k test methodsのパラメータをインポートしています。インポート時に、テストメソッドの属性エイリアスとメソッドはわかりません。彼らは、後で様々な開発者によって静的に作成できますか?以下のコードは、自動作成しようとしているテストメソッドのparamハッシュのスニペットです。さまざまなテストメソッド 'params、aliases、およびmethods'を異なる時間に定義できますか?
THXは
add_tml :my93k,
class_name: 'my93k',
Functional: {
class_name: 'Functional',
'ErrorMap.DutCyclesPerTesterCycles' => [:string, '1'],
'ErrorMap.EdgesPerTesterCycle' => [:string, '4'],
'ErrorMap.Location' => [:string, 'RAM'],
# Attribute aliases can be defined like this:
aliases: {
},
# Define any methods you want the test method to have
methods: {
}
},
my_other_test: {
# Define another test in exactly the same way...
}
end
説明ありがとうございます。もう少しPRのように見えるだろう。 –