Quantcast
Channel: Windows Presentation Foundation (WPF) forum
Viewing all articles
Browse latest Browse all 18858

Unit Testing WPF Command

$
0
0

Hi,

I am trying to write unit tests for a command that executes an asynchronous action using tasks (TPL). 

Here is the example code that I am trying to achieve.

class MainPageViewModel
    {
        private IService service_;

        public ICommand StartCommand{get;set;}

        //Bind this method to Start Commmand
        private void StartTask()
        {
            var task = service_.StartServiceAsync();
            task.ContinueWith(AfterService);
        }

        private void AfterService(Task<IResult> result)
        {
            //update UI with result
        }
    }

    class TestClass
    {
        [TestMethod]
        public Test_StartTask()
        {
            MainPageViewModel vm = new MainPageViewModel();
            StartCommand();
            //need to check if UI is updated but since the AfterService is called on a different thread the assert fails

        }
    }

In my Test Method I can't write Assert after the StartTask() call, please help me on how to handle such scenarios for writing test cases? TIA.


Please mark the replies as answers if they help or unmark if not.


Viewing all articles
Browse latest Browse all 18858

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>