From: Mark R. <ma...@la...> - 2015-09-14 10:19:03
|
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 environment is Ubuntu12.04 and mono 4.2 > > > $ mono --version > > Mono JIT compiler version 4.2.0 (Stable 4.2.0.179/a224653 > <http://4.2.0.179/a224653> Sat Aug 29 00:01:20 JST 2015) > > Copyright (C) 2002-2014 Novell, Inc, Xamarin Inc and Contributors. > www.mono-project.com <http://www.mono-project.com> > > TLS: __thread > > SIGSEGV: altstack > > Notifications: epoll > > Architecture: amd64 > > Disabled: none > > Misc: softdebug > > LLVM: supported, not enabled. > > GC: sgen > > > $ mono /usr/local/lib/mono/4.5/nunit-console.exe > NETProvider/src/FirebirdSql.Data.UnitTests/bin/Debug/FirebirdSql.Data.UnitTests.dll > --run=SrpClient > > > NUnit version 2.4.8 > > Copyright (C) 2002-2007 Charlie Poole. > > Copyright (C) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. > Vorontsov. > > Copyright (C) 2000-2002 Philip Craig. > > All Rights Reserved. > > > Runtime Environment - > > OS Version: Unix 3.13.0.63 > > CLR Version: 4.0.30319.17020 ( 4.2.0 (Stable 4.2.0.179/a224653 > <http://4.2.0.179/a224653> Sat Aug 29 00:01:20 JST 2015) ) > > > Selected test: SrpClient > > > Tests run: 0, Failures: 0, Not run: 0, Time: 0.002 seconds The class SrpClient doesn't contain tests (and it is also not in the assembly FirebirdSql.Data.UnitTests). Maybe you meant --run=SrpTests or --run=FirebirdSql.Data.UnitTests.SrpTests ? -- Mark Rotteveel |