Re: [Firebird-net-provider] How to execute NUnit with Mono ?

2015-09-14 Thread Hajime Nakagami
Thanks Jiri and Mark. Modify not to derived from TestsBase. And with --run=FirebirdSql.Data.UnitTests.SrpTests option, I can run my test. Regards. 2015-09-14 19:18 GMT+09:00 Mark Rotteveel : > On 14-9-2015 12:02, Hajime Nakagami wrote: > > Hi, Jiri and all. > > > > > >

Re: [Firebird-net-provider] How to execute NUnit with Mono ?

2015-09-14 Thread Jiří Činčura
On Mon, Sep 14, 2015, at 12:41, Hajime Nakagami wrote: > I can run my test. BTW you can also run the NUnit GUI and select the test(s) you want to execute. I find it easier when doing interactive debugging. -- Mgr. Jiří Činčura Independent IT Specialist

[Firebird-net-provider] [FB-Tracker] Created: (DNET-630) Support for Firebird 3.0

2015-09-14 Thread Mark Junker (JIRA)
Support for Firebird 3.0 Key: DNET-630 URL: http://tracker.firebirdsql.org/browse/DNET-630 Project: .NET Data provider Issue Type: New Feature Components: ADO.NET Provider Affects Versions: vNext

[Firebird-net-provider] [FB-Tracker] Created: (DNET-631) Support for BOOLEAN in FB3

2015-09-14 Thread Jiri Cincura (JIRA)
Support for BOOLEAN in FB3 -- Key: DNET-631 URL: http://tracker.firebirdsql.org/browse/DNET-631 Project: .NET Data provider Issue Type: Sub-task Components: ADO.NET Provider, DDEX Provider, Entity Framework

Re: [Firebird-net-provider] [FB-Tracker] Created: (DNET-631) Support for BOOLEAN in FB3

2015-09-14 Thread Jiří Činčura
On Mon, Sep 14, 2015, at 17:17, Геннадий Забула wrote: > How should this be implemented? My guess is by typing the code. ;) > I could take a look at this in the week. Sure, why not. The BOOLEAN in provider will not take much effort - I was checking it last year, quickly. -- Mgr. Jiří Činčura

Re: [Firebird-net-provider] [FB-Tracker] Created: (DNET-631) Support for BOOLEAN in FB3

2015-09-14 Thread Геннадий Забула
How should this be implemented? I could take a look at this in the week. On 14 September 2015 at 17:06, Jiri Cincura (JIRA) wrote: > Support for BOOLEAN in FB3 > -- > > Key: DNET-631 > URL:

Re: [Firebird-net-provider] [FB-Tracker] Created: (DNET-631) Support for BOOLEAN in FB3

2015-09-14 Thread Mark Rotteveel
I have added a link to the initial implementation I did in Jaybird. It won't directly map to the C# implementation, but it might give you some indication of what needs to change where, and how it is encoded in the wire protocol. Mark On 14-9-2015 17:17, Геннадий Забула wrote: > How should

Re: [Firebird-net-provider] How to execute NUnit with Mono ?

2015-09-14 Thread Hajime Nakagami
2015-09-14 20:25 GMT+09:00 Jiří Činčura : > > BTW you can also run the NUnit GUI and select the test(s) you want to > execute. I find it easier when doing interactive debugging. > > Thanks --

[Firebird-net-provider] ADO.NET provider 4.8.0.0

2015-09-14 Thread Jiří Činčura
More info http://blog.cincura.net/233530-ado-net-provider-4-8-0-0-for-firebird-is-ready/ . -- Mgr. Jiří Činčura Independent IT Specialist -- ___ Firebird-net-provider mailing

[Firebird-net-provider] How to execute NUnit with Mono ?

2015-09-14 Thread Hajime Nakagami
Hi, Jiri and all. I am writing NUnit test (at first time) now. https://github.com/nakagami/FirebirdSql.Data.FirebirdClient/compare/srp...nakagami:srp_tests It seems compile success. But something wrong to run that test. My environment is Ubuntu12.04 and mono 4.2 $ mono --version Mono

Re: [Firebird-net-provider] How to execute NUnit with Mono ?

2015-09-14 Thread Jiří Činčura
On Mon, Sep 14, 2015, at 12:02, Hajime Nakagami wrote: > $ mono /usr/local/lib/mono/4.5/nunit-console.exe > NETProvider/src/FirebirdSql.Data.UnitTests/bin/Debug/FirebirdSql.Data.UnitTests.dll > --run=SrpClient Your test is called KeyMatchTest, not SrpClient. Also you don't need to derive from

Re: [Firebird-net-provider] How to execute NUnit with Mono ?

2015-09-14 Thread Mark Rotteveel
On 14-9-2015 12:02, Hajime Nakagami wrote: > Hi, Jiri and all. > > > I am writing NUnit test (at first time) now. > > > https://github.com/nakagami/FirebirdSql.Data.FirebirdClient/compare/srp...nakagami:srp_tests > > > It seems compile success. > > But something wrong to run that test. > > > My