ईवेंट्स
17 मार्च, 9 pm - 21 मार्च, 10 am
साथी डेवलपर्स और विशेषज्ञों के साथ वास्तविक दुनिया के उपयोग के मामलों के आधार पर स्केलेबल एआई समाधान बनाने के लिए मीटअप श्रृंखला में शामिल हों।
अभी पंजीकरण करेंयह ब्राउज़र अब समर्थित नहीं है.
नवीनतम सुविधाओं, सुरक्षा अपडेट और तकनीकी सहायता का लाभ लेने के लिए Microsoft Edge में अपग्रेड करें.
You can run tests on already published output by using the dotnet vstest
command. This will work on xUnit, MSTest, and NUnit tests. Simply locate the DLL file that was part of your published output and run:
dotnet vstest <MyPublishedTests>.dll
Where <MyPublishedTests>
is the name of your published test project.
The commands below demonstrate running tests on a published DLL.
dotnet new mstest -o MyProject.Tests
cd MyProject.Tests
dotnet publish -o out
dotnet vstest out/MyProject.Tests.dll
नोट
Note: If your app targets a framework other than netcoreapp
, you can still run the dotnet vstest
command by passing in the targeted framework with a framework flag. For example, dotnet vstest <MyPublishedTests>.dll --Framework:".NETFramework,Version=v4.6"
. In Visual Studio 2017 Update 5 and later, the desired framework is automatically detected.
.NET प्रतिक्रिया
.NET एक ओपन सोर्स प्रोजेक्ट है. प्रतिक्रिया प्रदान करने के लिए लिंक का चयन करें:
ईवेंट्स
17 मार्च, 9 pm - 21 मार्च, 10 am
साथी डेवलपर्स और विशेषज्ञों के साथ वास्तविक दुनिया के उपयोग के मामलों के आधार पर स्केलेबल एआई समाधान बनाने के लिए मीटअप श्रृंखला में शामिल हों।
अभी पंजीकरण करेंप्रशिक्षण
मॉड्यूल
विजुअल स्टूडियो में सी # परीक्षण - Training
Visual Studio में परीक्षण उपकरण का उपयोग करके अपने C# अनुप्रयोग का परीक्षण प्रारंभ करें। परीक्षण लिखना सीखें, टेस्ट एक्सप्लोरर का उपयोग करें, टेस्ट सूट बनाएं, और कोड लिखने के लिए लाल, हरे, रिफैक्टर पैटर्न को लागू करें।