Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-17Merge pull request #9480 from mono/vsts-1042673-NUnit-nestingKeting Yang
[Unit Test] Make the nesting logic for vstest and NUnit(Mono) consistent
2020-01-15Update ↵Keting Yang
main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.Tests/MonoDevelop.UnitTesting.Tests/VsTestUnitTestTests.cs Co-Authored-By: Marius Ungureanu <marius.ungureanu@xamarin.com>
2020-01-15Update ↵Keting Yang
main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.Tests/MonoDevelop.UnitTesting.Tests/VsTestUnitTestTests.cs Co-Authored-By: Marius Ungureanu <marius.ungureanu@xamarin.com>
2020-01-15Update ↵Keting Yang
main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.Tests/MonoDevelop.UnitTesting.Tests/VsTestUnitTestTests.cs Co-Authored-By: Marius Ungureanu <marius.ungureanu@xamarin.com>
2020-01-15Update ↵Keting Yang
main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.Tests/MonoDevelop.UnitTesting.Tests/VsTestUnitTestTests.cs Co-Authored-By: Marius Ungureanu <marius.ungureanu@xamarin.com>
2020-01-15Update ↵Keting Yang
main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.Tests/MonoDevelop.UnitTesting.Tests.csproj Co-Authored-By: Marius Ungureanu <marius.ungureanu@xamarin.com>
2020-01-15Update ↵Keting Yang
main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.Tests/MonoDevelop.UnitTesting.Tests/VsTestUnitTestTests.cs Co-Authored-By: Marius Ungureanu <marius.ungureanu@xamarin.com>
2020-01-15Update ↵Keting Yang
main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.Tests/MonoDevelop.UnitTesting.Tests/VsTestUnitTestTests.cs Co-Authored-By: Marius Ungureanu <marius.ungureanu@xamarin.com>
2020-01-15Update ↵Keting Yang
main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.Tests/MonoDevelop.UnitTesting.Tests/VsTestUnitTestTests.cs Co-Authored-By: Marius Ungureanu <marius.ungureanu@xamarin.com>
2020-01-15Update ↵Keting Yang
main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.Tests/MonoDevelop.UnitTesting.Tests/VsTestUnitTestTests.cs Co-Authored-By: Marius Ungureanu <marius.ungureanu@xamarin.com>
2020-01-15Merge pull request #9447 from mono/nrefactory-removalJose Miguel Torres
Remove various references to NRefactory that are not used
2020-01-15Bump CompatVersiontherzok
2020-01-15Switch UnitTesting binary store to jsontherzok
Also switched collections to List<T>, CollectionBase does not deserialize properly
2020-01-10correct parenthesesKeting Yang
2020-01-10Unit Test for the new nestingKeting Yang
2020-01-09Fix the nesting logic for NUnit Test:Keting Yang
[1] Allow setting the title of a unit test [2] Handle the nesting logic while building the tests (get rid of the use of CanMergeWithParent, which is only used in TestNodeBuilder)
2019-12-23Switch to Task.CompletedTask where applicabletherzok
2019-12-09Add test case for unit test nestingKeting Yang
2019-12-09Merge pull request #9374 from mono/vsts-901156-unit-test-nestingnet5Keting Yang
[Unit Test] Fix the nesting for unit tests
2019-12-04Fix the nesting logicKeting Yang
2019-12-04Revert "Change the nesting logic"Keting Yang
This reverts commit 1d3a221dea09d051a03571c310a37a7c68c59895.
2019-12-04Change the nesting logicKeting Yang
2019-12-02Update the version of NuGetVersionMicrosoftTestPlatform to 16.4.0Keting Yang
2019-11-26Correct nesting for vstestsKeting Yang
2019-11-26[Unit Test] Fix the nesting for unit testsKeting Yang
Fixes: https://devdiv.visualstudio.com/DevDiv/_workitems/edit/901156/
2019-11-08[Icons] Add new high contrast icons to project filesVsevolod Kukol
2019-11-08[Icons][Shell] High contrast iconsVáclav Vančura
Green ones for now
2019-10-18[Unit Tests] let test results display properly in test result padKeting Yang
2019-09-20Update VsTestProjectTestSuite.csKeting Yang
2019-09-19Move method calls to avoid duplicate calls to DiscoverTestAsync()Keting Yang
2019-09-18Move testDiscoveryTask = null into the if statement in AfterBuildKeting Yang
2019-09-18[Unit Tests] avoid running old tests in VsTestProjectTestSuite when it will ↵Keting Yang
be removed later When UnitTestService is running the tests, for VsTest, it is using the old tests before all test information is refreshed. In UnitTestGroup.Refresh(), Tests collection is accessed which triggered VsTestProjectTestSuite’s OnCreateTests(). However it will return the control to the calling thread once VsTestDiscoveryAdapter.Instance.DiscoverTestsAsync (Project); is called. This causes the tests not properly refreshed. For the fix, a new method DiscoverTestAsync() is created, which does the same thing as old OnCreateTests() does, but returns a Task. Local variable testDiscoveryTask is created and shared by OnCreateTests() and Refresh(). We use it to know when Refresh() can return.
2019-09-17Merge pull request #8424 from mono/vsts-802586-debug-all-testsKeting Yang
[Debugger] Add Debug All Test command
2019-09-09Continue the loop if any execution handler is found that can run the testKeting Yang
2019-09-06null check for testKeting Yang
2019-09-06Disable "Show test source code" menu option when souceCodeLocation is nullKeting Yang
2019-09-06null check for CurrentSelectedSolutionKeting Yang
2019-09-06Support Debug All Test with multiple unit test projects under one solution ↵Keting Yang
folder
2019-09-05Change the design of the unit test padKeting Yang
1. Include the new icon of "Debug All" 2. Get rid of the text lable
2019-09-05Fixes "Run All Tests" with keyboard shortcutKeting Yang
Support "run all tests" with multiple test projects under one solution (The previous version will only run the unit tests from one of the projects)
2019-09-04Use rootNode instead of selectedTestKeting Yang
2019-09-04Use RunTest instead of RunTests, change buttonDebugAll.Sensitive according ↵Keting Yang
to buttonRunAll.Sensitive
2019-09-04[Debugger] Add Debug All Test commandKeting Yang
Make it possible to create a keyboard shortcut to Debug all unit tests. Fixes: https://devdiv.visualstudio.com/DevDiv/_workitems/edit/802586/
2019-08-29ThreadingKeting Yang
2019-08-29Sort listKeting Yang
2019-08-29remove null checkKeting Yang
2019-08-29[Test Tools] let unit tests support "Show Test Source Code"Keting Yang
Fixes: https://devdiv.visualstudio.com/DevDiv/_workitems/edit/973891/
2019-07-06[Misc] cleanup code a bit moretherzok
2019-07-06Simplify some usages of CancellationTokenSourcetherzok
2019-05-23Improve unit test service initialization timeLluis Sanchez
Delay initialization of package service until the first solution is opened