MSTEST0037 could also propose to use [Assert.IsNotEmpty](https://learn.microsoft.com/en-us/dotnet/api/microsoft.visualstudio.testtools.unittesting.assert.isnotempty?view=mstest-net-3.10) for the following code: ```c# Assert.IsTrue(myList.Count > 0); // Assert.IsGreaterThan is currently proposed Assert.IsTrue(myList.Count != 0); // Assert.AreNotEqual is currently proposed ``` Ideally, this would be reported for both generic and non-generic collections.