次のようなメソッドで単体テストを作成しようとしています。
Public Function TimeClock_Append(ByVal timeClockUploadJson As TimeClockUploadJson) As TimeClockUploadJson Implements IResourceCommanderData.TimeClock_Append
...
End Function
関数名を右クリックして「ユニットテストの作成」を選択すると、これが得られます...
'TODO: Ensure that the UrlToTest attribute specifies a URL to an ASP.NET page (for example,
' http://.../Default.aspx). This is necessary for the unit test to be executed on the web server,
' whether you are testing a page, web service, or a WCF service.
'''<summary>
'''A test for TimeClock_Append
'''</summary>
<TestMethod(), _
HostType("ASP.NET"), _
AspNetDevelopmentServerHost("C:\Projects\ACS.ResourceCommander 3.8\ACS.ResourceCommander.WCFRest", "/ACS.ResourceCommander.WCFRest"), _
UrlToTest("http://localhost/ACS.ResourceCommander.WCFRest")> _
Public Sub TimeClock_AppendTest()
'Private Accessor for TimeClock_Append is not found. Please rebuild the containing project or run the Publicize.exe manually.
Assert.Inconclusive("Private Accessor for TimeClock_Append is not found. Please rebuild the containing" & _
" project or run the Publicize.exe manually.")
End Sub
「TimeClock_Append のプライベート アクセサーが見つかりません。含まれているプロジェクトを再構築するか、Publicize.exe を手動で実行してください」というメッセージがわかりません。
このメソッドに関連する Test References フォルダー内のファイルを削除してから、メソッドを右クリックして [Create Private Accessor] を選択しましたが、何も解決しませんでした。
どうすればこれを解決できますか?