user1771165
user1771165

Reputation: 11

Open Source GUI testing tools for tesing WPF (C# using VS2010)

I new to testing.....I am looking for a Open Source GUI testing tools for tesing WPF.

Thanks in advance.

Upvotes: 1

Views: 627

Answers (1)

bitbonk
bitbonk

Reputation: 49659

Allthough I have used White with some success in WPF projects, testing GUIs is always a big pain and in will always involve manual tests. I base my UI logic on the MVVM architecture pattern and then try to do all test related to GUIs in the ViewModel (so I can use a normal unittesting framework, like NUnit) and keep the View as dumb as possible, without any XAML trickery or handcrafted custom controls. In a lot of projects I was able to get away with almost no automated GUI tests at all.

Upvotes: 1

Related Questions