3

Visual Studio 2012 でコード化された UI テストを作成しようとしています。新しいテストを追加すると、VS は自動的にレコーダーを起動します。次に、テストしたい WinForms アプリケーションでいくつかの基本的なクリックを行います。記録を終了し、スクリプトを生成します。そのスクリプトを実行しようとすると、問題なく動作しますが、ランタイム エラーが発生します

「メッセージ: 単体テスト アダプターが例外をスローしました: メソッドが見つかりません: 'Void Microsoft.VisualStudio.TestTools.Diagnostics.NonVSSqmClient..ctor(UInt32)'..」

スクリプトを実行するにはどうすればよいですか?

4

2 に答える 2

1

コード化されたUIテストをサポートするVisualStudio2012のバージョンは、PremiumとUltimateのみです。

http://www.microsoft.com/visualstudio/eng/products/compare

これらのバージョンは、スクリプトを実行できる必要があります。

于 2012-09-13T15:11:24.807 に答える
1

After recording, when you give the method name for recording you have to call that method in another CS file. Next go to Test list Editor and select the CS file where you have called the test method and right click that method and run the application.

I think this will help you.

于 2012-09-14T06:54:39.200 に答える