public void DataService_AddScopeType_Adds_Record_On_Valid_ScopeType()
        {
            //Arrange
            int rowCount = DataUtil.GetRecordCount(DataTestHelper.ConnectionString,
                                                   ContentDataTestHelper.ScopeTypesTableName);
            DataUtil.AddDatabaseObject(virtualScriptFilePath, addScopeType);

            ScopeType scopeType = new ScopeType();
            scopeType.ScopeType = Constants.SCOPETYPE_ValidScopeType;

            DataService ds = new DataService();

            //Act
            int scopeTypeItemId = ds.AddScopeType(scopeType);

            //Assert
            DatabaseAssert.RecordCountIsEqual(DataTestHelper.ConnectionString, ContentDataTestHelper.ScopeTypesTableName,
                                              rowCount + 1);
        }