JUnit ParameterizedTest Is missing from the Fabric Loader
I wanted to implement some unit tests using the @ParameterizedTest annotation from JUnit, unfortunately it's not included in the Fabric bundled version of JUnit. In the world of C# testing this is such a basic feature, that I'm very surprised it's not there.
I've looked around in the Discord and I came across this post from 2023. Here someone wanted to use it as well and manually pulled it in, which according to modmuss is causing issues.
Now, almost 2 years later, these have not been included yet, which is a real shame. Is this something forgotten about, or was there a reason to not add it?
Can you try pulling it in yourself? I forget what issues it was causing?
In theory it should just be a matter of adding testImplementation 'org.junit.jupiter:junit-jupiter-params:5.12.2'.
I forget the reasons why this user was having issues.
I had tried that before, but I'm guessing a version mismatch happened. Using 5.12.2 seems to work :D