NUnit.Analyzers 4.3.0 missed an Assert.IsAssignableFrom that caused a build error after upgrading to NUnit 4.2.2, from NUnit 3.13.3. That is there was no build error or warning when on NUnit 3.13.3 and building with NUnit.Analyzers 4.3.0. Or if there was a warning, I missed it because I had tens of thousands of changes to make. I suggest this becomes a build error for NUnit.Analyzers. Fixed manually by doing this: `Assert.IsAssignableFrom<ClassName>(objectVariable);` -> `Assert.That(objectVariable, Is.AssignableFrom(typeof(ClassName)));`