zspitz / ANTLR4ParseTreeVisualizer

Visual Studio debugging visualizer, and .NET visualization controls, for ANTLR4 parse trees
MIT License
66 stars 10 forks source link

MVVM testing #33

Open zspitz opened 4 years ago

zspitz commented 4 years ago

Relevant: https://www.pluralsight.com/courses/wpf-mvvm-test-driven-development-viewmodels

Questions:

zspitz commented 4 years ago

The only known bug related to selection is #42.

zspitz commented 4 years ago

Test cases (two test projects):

zspitz commented 4 years ago

Should the test project be in .NET Framework or .NET Core?

Antlr.Runtime can only be used from .NET Framework, so any tests which target this must use .NET Framework.

Tests against Antlr.Runtime.Standard can be either in .NET Framework or .NET Core.

zspitz commented 2 years ago

Related #60

zspitz commented 2 years ago

Should the test project be in .NET Framework or .NET Core?

Antlr.Runtime can only be used from .NET Framework, so any tests which target this must use .NET Framework.

Tests against Antlr.Runtime.Standard can be either in .NET Framework or .NET Core.

We've resolved this. Antlr.Runtime can be used from .NET Framework, .NET Core, and .NET 5. Test projects target net5.0-windows; there's currently no need for multitargeting.