Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using both [RunsOnUIThread] and [DynamicData] won't run data source on UI Thread #176

Open
carldebilly opened this issue Jul 3, 2024 · 0 comments

Comments

@carldebilly
Copy link
Member

The dynamic data provider should run on the same context (UI Thead here) than the test itself.

[TestClass]
public class SomeTests
{
	[TestMethod]
	[RunsOnUIThread]
	[DynamicData(nameof(GetTestsData), DynamicDataSourceType.Method)]
	public Do_The_Tests(FrameworkElement element)
	{
		// Do something with the `element`
	}

	public IEnumerable<object[]> GetTestsData()
	{
		var stackPanel = new StackPanel();
		stackPanel.Children.Add(new Border()); // WILL CRASH HERE
		yield return [ stackPanel ];
	}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant