aboutsummaryrefslogtreecommitdiffstats
path: root/UnitTests/SPTableCopyTest.m
Commit message (Collapse)AuthorAgeFilesLines
* Reapply "Fixed testCopyTableFromTo_NoPermissions test"Marius Ursache2016-02-291-1/+2
| | | | This reverts commit 0f3ce372c0c777287f81f6db2f8431a4d32f1cd4.
* Revert "Fixed testCopyTableFromTo_NoPermissions test"Marius Ursache2016-02-271-2/+1
| | | | This reverts commit 4d2ec773b833b06fd6925502eb4ac512b1274b86.
* Fixed testCopyTableFromTo_NoPermissions testMarius Ursache2016-02-261-1/+2
| | | | Fixing testCopyTableFromTo_NoPermissions not using the mockConnection.
* Converted tests to XCTestMarius Ursache2016-02-261-3/+3
| | | | Converted the unit tests from SenTestingKit to XCTest as SenTestingKit was deprecated a couple of SDK versions ago.
* Add a unit test someone forgot and clean it upMax2015-10-021-30/+40
| | | | (Also add a test that will currently fail)
* Remove .h files for unit testsMax2015-03-161-2/+10
| | | | There is really no point in having them as unit tests don't have an interface someone would want to #import. (and they are disabled right now anyway ;))
* Update URL in source file header to point to GitHub.Stuart Connolly2014-01-261-1/+1
|
* Remove SVN property placeholder.Stuart Connolly2014-01-261-2/+0
|
* Change Sequel Pro's license from GPL (version 2) to MIT.stuconnolly2012-07-251-13/+20
|
* Fix test build.stuconnolly2012-05-071-2/+2
|
* Disable tests until I have time to fix them.stuconnolly2012-05-061-2/+2
|
* Test config.stuconnolly2012-05-051-13/+11
|
* Tidy up database action tests.stuconnolly2012-05-041-14/+21
|
* * removed SPDatabaseCopyTest testCopyDatabaseTables which is out of place heredrx7772010-04-281-17/+44
| | | | | | | | | * minor restructuring of SPTableCopy for readability and debuggability * corrected wrong default copyright header on some files * SPCopyTableTest: removed testCopyTableFromTo since it is integrated in testCopyTableFromToWithData; * SPCopyTableTest: fixed test to reflect two queries table creation (show create and create) instead of create like (<4.1 compatibility)
* This changeset implements renaming and duplicating databases on a server. ↵drx7772010-04-281-0/+45
Details as follows: * altered MCPConnection listTablesFromDB:like: to return NSArray * altered MCPConnection listFieldsFromTable:like: to use backtick quoted strings for table and fieldnames * added MCPConnection listTablesFromDB for a complete table list * added SPStringAdditions.h to various files to prevent warnings * added sheets for duplicate/rename DB in DBView.xib * added duplicate/rename menu items to MainMenu.xib * added outlets in TableDocument: databaseNewSheet databaseRenameSheet databaseCopyNameField databaseRenameNameField copyOnlyStructureButton copyDatabaseButton renameDatabaseButton * added methods in TableDocument: getConnection, copyDatabase, renameDatabase, _copyDatabase, _renameDatabase * added OCMock Framework for object mocking in tests * added group Others/DatabaseActions