public void DataService_GetContentTypes_Returns_Reader_Of_The_ContentTypes()
        {
            //Arrange
            int rowCount = DataUtil.GetRecordCount(DataTestHelper.ConnectionString,
                                                   ContentDataTestHelper.ContentTypesTableName);
            DataUtil.AddDatabaseObject(virtualScriptFilePath, getContentTypes);

            DataService ds = new DataService();

            //Act
            IDataReader dataReader = ds.GetContentTypes();

            //Assert
            DatabaseAssert.ReaderRowCountIsEqual(dataReader, Constants.CONTENTTYPE_ValidContentTypeCount);
        }