File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44using NUnit . Framework ;
55using SQLite . Net . Attributes ;
66
7- #if __WIN32__
8- using SQLitePlatformTest = SQLite . Net . Platform . Win32 . SQLitePlatformWin32 ;
9- #elif WINDOWS_PHONE
10- using SQLitePlatformTest = SQLite . Net . Platform . WindowsPhone8 . SQLitePlatformWP8 ;
11- #elif __WINRT__
12- using SQLitePlatformTest = SQLite . Net . Platform . WinRT . SQLitePlatformWinRT ;
13- #elif __IOS__
14- using SQLitePlatformTest = SQLite . Net . Platform . XamarinIOS . SQLitePlatformIOS ;
15- #elif __ANDROID__
16- using SQLitePlatformTest = SQLite . Net . Platform . XamarinAndroid . SQLitePlatformAndroid ;
17- #elif __OSX__
18- using SQLitePlatformTest = SQLite . Net . Platform . OSX . SQLitePlatformOSX ;
19- #else
20- using SQLitePlatformTest = SQLite . Net . Platform . Generic . SQLitePlatformGeneric ;
21- #endif
22-
23-
247namespace SQLite . Net . Tests
258{
269 [ TestFixture ]
Original file line number Diff line number Diff line change 99using SQLite . Net . Async ;
1010using SQLite . Net . Attributes ;
1111
12- #if __WIN32__
13- using SQLitePlatformTest = SQLite . Net . Platform . Win32 . SQLitePlatformWin32 ;
14- #elif WINDOWS_PHONE
15- using SQLitePlatformTest = SQLite . Net . Platform . WindowsPhone8 . SQLitePlatformWP8 ;
16- #elif __WINRT__
17- using SQLitePlatformTest = SQLite . Net . Platform . WinRT . SQLitePlatformWinRT ;
18- #elif __IOS__
19- using SQLitePlatformTest = SQLite . Net . Platform . XamarinIOS . SQLitePlatformIOS ;
20- #elif __ANDROID__
21- using SQLitePlatformTest = SQLite . Net . Platform . XamarinAndroid . SQLitePlatformAndroid ;
22- #elif __OSX__
23- using SQLitePlatformTest = SQLite . Net . Platform . OSX . SQLitePlatformOSX ;
24- #else
25- using SQLitePlatformTest = SQLite . Net . Platform . Generic . SQLitePlatformGeneric ;
26- #endif
2712
2813namespace SQLite . Net . Tests
2914{
Original file line number Diff line number Diff line change 44using NUnit . Framework ;
55using SQLite . Net . Attributes ;
66using System . IO ;
7- #if __WIN32__
8- using SQLitePlatformTest = SQLite . Net . Platform . Win32 . SQLitePlatformWin32 ;
9-
10- #elif WINDOWS_PHONE
11- using SQLitePlatformTest = SQLite . Net . Platform . WindowsPhone8 . SQLitePlatformWP8 ;
12-
13- #elif __WINRT__
14- using SQLitePlatformTest = SQLite . Net . Platform . WinRT . SQLitePlatformWinRT ;
15-
16- #elif __IOS__
17- using SQLitePlatformTest = SQLite . Net . Platform . XamarinIOS . SQLitePlatformIOS ;
18-
19- #elif __ANDROID__
20- using SQLitePlatformTest = SQLite . Net . Platform . XamarinAndroid . SQLitePlatformAndroid ;
21-
22- #elif __OSX__
23- using SQLitePlatformTest = SQLite . Net . Platform . OSX . SQLitePlatformOSX ;
24-
25- #else
26- using SQLitePlatformTest = SQLite . Net . Platform . Generic . SQLitePlatformGeneric ;
27- #endif
287
298namespace SQLite . Net . Tests
309{
Original file line number Diff line number Diff line change 33using System . Collections . Generic ;
44using System . Linq ;
55using SQLite . Net . Attributes ;
6-
7- #if __WIN32__
8- using SQLitePlatformTest = SQLite . Net . Platform . Win32 . SQLitePlatformWin32 ;
9- #elif WINDOWS_PHONE
10- using SQLitePlatformTest = SQLite . Net . Platform . WindowsPhone8 . SQLitePlatformWP8 ;
11- #elif __WINRT__
12- using SQLitePlatformTest = SQLite . Net . Platform . WinRT . SQLitePlatformWinRT ;
13- #elif __IOS__
14- using SQLitePlatformTest = SQLite . Net . Platform . XamarinIOS . SQLitePlatformIOS ;
15- #elif __ANDROID__
16- using SQLitePlatformTest = SQLite . Net . Platform . XamarinAndroid . SQLitePlatformAndroid ;
17- #elif __OSX__
18- using SQLitePlatformTest = SQLite . Net . Platform . OSX . SQLitePlatformOSX ;
19- #else
20- using SQLitePlatformTest = SQLite . Net . Platform . Generic . SQLitePlatformGeneric ;
21- #endif
22-
236using NUnit . Framework ;
247
258namespace SQLite . Net . Tests
Original file line number Diff line number Diff line change 44using SQLite . Net . Attributes ;
55using SQLite . Net . Interop ;
66
7- #if __WIN32__
8- using SQLitePlatformTest = SQLite . Net . Platform . Win32 . SQLitePlatformWin32 ;
9- #elif WINDOWS_PHONE
10- using SQLitePlatformTest = SQLite . Net . Platform . WindowsPhone8 . SQLitePlatformWP8 ;
11- #elif __WINRT__
12- using SQLitePlatformTest = SQLite . Net . Platform . WinRT . SQLitePlatformWinRT ;
13- #elif __IOS__
14- using SQLitePlatformTest = SQLite . Net . Platform . XamarinIOS . SQLitePlatformIOS ;
15- #elif __ANDROID__
16- using SQLitePlatformTest = SQLite . Net . Platform . XamarinAndroid . SQLitePlatformAndroid ;
17- #elif __OSX__
18- using SQLitePlatformTest = SQLite . Net . Platform . OSX . SQLitePlatformOSX ;
19- #else
20- using SQLitePlatformTest = SQLite . Net . Platform . Generic . SQLitePlatformGeneric ;
21- #endif
22-
237namespace SQLite . Net . Tests
248{
259 [ TestFixture ]
Original file line number Diff line number Diff line change 22using NUnit . Framework ;
33using SQLite . Net . Attributes ;
44
5- #if __WIN32__
6- using SQLitePlatformTest = SQLite . Net . Platform . Win32 . SQLitePlatformWin32 ;
7- #elif WINDOWS_PHONE
8- using SQLitePlatformTest = SQLite . Net . Platform . WindowsPhone8 . SQLitePlatformWP8 ;
9- #elif __WINRT__
10- using SQLitePlatformTest = SQLite . Net . Platform . WinRT . SQLitePlatformWinRT ;
11- #elif __IOS__
12- using SQLitePlatformTest = SQLite . Net . Platform . XamarinIOS . SQLitePlatformIOS ;
13- #elif __ANDROID__
14- using SQLitePlatformTest = SQLite . Net . Platform . XamarinAndroid . SQLitePlatformAndroid ;
15- #elif __OSX__
16- using SQLitePlatformTest = SQLite . Net . Platform . OSX . SQLitePlatformOSX ;
17- #else
18- using SQLitePlatformTest = SQLite . Net . Platform . Generic . SQLitePlatformGeneric ;
19- #endif
20-
215namespace SQLite . Net . Tests
226{
237 [ TestFixture ]
Original file line number Diff line number Diff line change 33using SQLite . Net . Attributes ;
44using SQLite . Net . Interop ;
55
6- #if __WIN32__
7- using SQLitePlatformTest = SQLite . Net . Platform . Win32 . SQLitePlatformWin32 ;
8- #elif WINDOWS_PHONE
9- using SQLitePlatformTest = SQLite . Net . Platform . WindowsPhone8 . SQLitePlatformWP8 ;
10- #elif __WINRT__
11- using SQLitePlatformTest = SQLite . Net . Platform . WinRT . SQLitePlatformWinRT ;
12- #elif __IOS__
13- using SQLitePlatformTest = SQLite . Net . Platform . XamarinIOS . SQLitePlatformIOS ;
14- #elif __ANDROID__
15- using SQLitePlatformTest = SQLite . Net . Platform . XamarinAndroid . SQLitePlatformAndroid ;
16- #elif __OSX__
17- using SQLitePlatformTest = SQLite . Net . Platform . OSX . SQLitePlatformOSX ;
18- #else
19- using SQLitePlatformTest = SQLite . Net . Platform . Generic . SQLitePlatformGeneric ;
20- #endif
21-
226namespace SQLite . Net . Tests
237{
248 [ TestFixture ]
Original file line number Diff line number Diff line change 33using SQLite . Net . Attributes ;
44using SQLite . Net . Interop ;
55
6- #if __WIN32__
7- using SQLitePlatformTest = SQLite . Net . Platform . Win32 . SQLitePlatformWin32 ;
8- #elif WINDOWS_PHONE
9- using SQLitePlatformTest = SQLite . Net . Platform . WindowsPhone8 . SQLitePlatformWP8 ;
10- #elif __WINRT__
11- using SQLitePlatformTest = SQLite . Net . Platform . WinRT . SQLitePlatformWinRT ;
12- #elif __IOS__
13- using SQLitePlatformTest = SQLite . Net . Platform . XamarinIOS . SQLitePlatformIOS ;
14- #elif __ANDROID__
15- using SQLitePlatformTest = SQLite . Net . Platform . XamarinAndroid . SQLitePlatformAndroid ;
16- #elif __OSX__
17- using SQLitePlatformTest = SQLite . Net . Platform . OSX . SQLitePlatformOSX ;
18- #else
19- using SQLitePlatformTest = SQLite . Net . Platform . Generic . SQLitePlatformGeneric ;
20- #endif
21-
226namespace SQLite . Net . Tests
237{
248 [ NUnit . Framework . Ignore ( "This test class/file was not included in the original project and is broken" ) ]
Original file line number Diff line number Diff line change 44using SQLite . Net . Attributes ;
55using SQLite . Net . Interop ;
66
7- #if __WIN32__
8- using SQLitePlatformTest = SQLite . Net . Platform . Win32 . SQLitePlatformWin32 ;
9- #elif WINDOWS_PHONE
10- using SQLitePlatformTest = SQLite . Net . Platform . WindowsPhone8 . SQLitePlatformWP8 ;
11- #elif __WINRT__
12- using SQLitePlatformTest = SQLite . Net . Platform . WinRT . SQLitePlatformWinRT ;
13- #elif __IOS__
14- using SQLitePlatformTest = SQLite . Net . Platform . XamarinIOS . SQLitePlatformIOS ;
15- #elif __ANDROID__
16- using SQLitePlatformTest = SQLite . Net . Platform . XamarinAndroid . SQLitePlatformAndroid ;
17- #elif __OSX__
18- using SQLitePlatformTest = SQLite . Net . Platform . OSX . SQLitePlatformOSX ;
19- #else
20- using SQLitePlatformTest = SQLite . Net . Platform . Generic . SQLitePlatformGeneric ;
21- #endif
22-
237namespace SQLite . Net . Tests
248{
259 [ TestFixture ]
Original file line number Diff line number Diff line change 33using SQLite . Net . Attributes ;
44using NUnit . Framework ;
55
6- #if __WIN32__
7- using SQLitePlatformTest = SQLite . Net . Platform . Win32 . SQLitePlatformWin32 ;
8- #elif WINDOWS_PHONE
9- using SQLitePlatformTest = SQLite . Net . Platform . WindowsPhone8 . SQLitePlatformWP8 ;
10- #elif __WINRT__
11- using SQLitePlatformTest = SQLite . Net . Platform . WinRT . SQLitePlatformWinRT ;
12- #elif __IOS__
13- using SQLitePlatformTest = SQLite . Net . Platform . XamarinIOS . SQLitePlatformIOS ;
14- #elif __ANDROID__
15- using SQLitePlatformTest = SQLite . Net . Platform . XamarinAndroid . SQLitePlatformAndroid ;
16- #elif __OSX__
17- using SQLitePlatformTest = SQLite . Net . Platform . OSX . SQLitePlatformOSX ;
18- #else
19- using SQLitePlatformTest = SQLite . Net . Platform . Generic . SQLitePlatformGeneric ;
20- #endif
21-
22-
236namespace SQLite . Net . Tests
247{
258 [ TestFixture ]
You can’t perform that action at this time.
0 commit comments