Open
Description
I can see at least four different ways of implementing testing for TensorFlowSharp,
- Unit tests in C# using xUnit (TensorFlowSharp.Tests.CSharp)
- Unit tests in C# using MSTest (TensorFlowSharp.Tests.CSharp/GettingStarted.cs)
- Unit tests in F# using xUnit (TensorFlowSharp.Tests)
- Tests running through a custom runner (SampleTest)
I think these should all be consolidated into a single format before things get too out of hand. Since most tests are currently in C#/xUnit, and the framework code is C#, then I would propose that this is the way to go.
PS: I'd be happy for this to be assigned to myself and I'll make a start on migrating them all.