0

我正在嘗試使用VS 2013雲負載測試來測試WCF端點壓力測試。我創建了運行良好的單元睾丸。爲了使我的單元測試工作,我必須將一些隨機值傳遞給端點。所以我創建了一個有效值的數據庫haavinf,並隨機選擇它們作爲我的WCF端點的輸入。單元測試負載測試Visual Studio Cloud無法初始化SQL Server連接

我想使用VS 2013雲負載測試和我的測試在單元測試初始化​​測試失敗。

Initialization method WCFLoadTests.Tests.Init threw exception.
System.Data.Entity.Core.EntityException:
System.Data.Entity.Core.EntityException: The underlying provider failed on Open. --->
System.Data.SqlClient.SqlException: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified).

我需要在雲上做一些設置嗎?或者是什麼?

非常感謝,

回答

0

感謝所有誰看了我的問題,花時間幫我解決這個問題。

我通過在我的單元測試中簡單地使用Code First技術解決了這個問題。早些時候我首先使用數據庫(正在懶惰)和生成的連接字符串(providerName =「System.Data.EntityClient」)給出錯誤。

非常感謝,

相關問題