Activity overview
Latest activity by MCG
I did a compare between source control and the database and found some 'tSQLt.TestClass' extended properties on the test class schemas were accidentally removed. I added them back and after restarting SSMS, SQLTest is showing all the tests again. To list extended properties on all schemas: SELECT * FROM fn_listextendedproperty(default, 'schema', NULL, default, default, default, default); To re-add the extended property needed for SQLTest: EXECUTE sp_addextendedproperty @name = N'tSQLt.TestClass', @value = 1, @level0type = N'SCHEMA', @level0name = N'<name of your test class>'; / comments
I did a compare between source control and the database and found some 'tSQLt.TestClass' extended properties on the test class schemas were accidentally removed. I added them back and after restart...