public void ExecuteReadTest()
        {
            string sqlQuery = $"Select Name, Score From TestTable Where Name = '{testStoredRecord.Key}' And Score = {testStoredRecord.Value}";
            var    reader   = testManager.ExecuteRead(sqlQuery);

            Assert.IsTrue(reader.HasRows);
            reader.Close();
        }