nunit.framework.xml 560 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>nunit.framework</name>
  5. </assembly>
  6. <members>
  7. <member name="T:NUnit.Framework.TestDelegate">
  8. <summary>
  9. Delegate used by tests that execute code and
  10. capture any thrown exception.
  11. </summary>
  12. </member>
  13. <member name="T:NUnit.Framework.Assert">
  14. <summary>
  15. The Assert class contains a collection of static methods that
  16. implement the most common assertions used in NUnit.
  17. </summary>
  18. </member>
  19. <member name="M:NUnit.Framework.Assert.#ctor">
  20. <summary>
  21. We don't actually want any instances of this object, but some people
  22. like to inherit from it to add other static methods. Hence, the
  23. protected constructor disallows any instances of this object.
  24. </summary>
  25. </member>
  26. <member name="M:NUnit.Framework.Assert.Equals(System.Object,System.Object)">
  27. <summary>
  28. The Equals method throws an AssertionException. This is done
  29. to make sure there is no mistake by calling this function.
  30. </summary>
  31. <param name="a"></param>
  32. <param name="b"></param>
  33. </member>
  34. <member name="M:NUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
  35. <summary>
  36. override the default ReferenceEquals to throw an AssertionException. This
  37. implementation makes sure there is no mistake in calling this function
  38. as part of Assert.
  39. </summary>
  40. <param name="a"></param>
  41. <param name="b"></param>
  42. </member>
  43. <member name="M:NUnit.Framework.Assert.Pass(System.String,System.Object[])">
  44. <summary>
  45. Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
  46. that are passed in. This allows a test to be cut short, with a result
  47. of success returned to NUnit.
  48. </summary>
  49. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  50. <param name="args">Arguments to be used in formatting the message</param>
  51. </member>
  52. <member name="M:NUnit.Framework.Assert.Pass(System.String)">
  53. <summary>
  54. Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
  55. that are passed in. This allows a test to be cut short, with a result
  56. of success returned to NUnit.
  57. </summary>
  58. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  59. </member>
  60. <member name="M:NUnit.Framework.Assert.Pass">
  61. <summary>
  62. Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
  63. that are passed in. This allows a test to be cut short, with a result
  64. of success returned to NUnit.
  65. </summary>
  66. </member>
  67. <member name="M:NUnit.Framework.Assert.Fail(System.String,System.Object[])">
  68. <summary>
  69. Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message and arguments
  70. that are passed in. This is used by the other Assert functions.
  71. </summary>
  72. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  73. <param name="args">Arguments to be used in formatting the message</param>
  74. </member>
  75. <member name="M:NUnit.Framework.Assert.Fail(System.String)">
  76. <summary>
  77. Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message that is
  78. passed in. This is used by the other Assert functions.
  79. </summary>
  80. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  81. </member>
  82. <member name="M:NUnit.Framework.Assert.Fail">
  83. <summary>
  84. Throws an <see cref="T:NUnit.Framework.AssertionException"/>.
  85. This is used by the other Assert functions.
  86. </summary>
  87. </member>
  88. <member name="M:NUnit.Framework.Assert.Ignore(System.String,System.Object[])">
  89. <summary>
  90. Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message and arguments
  91. that are passed in. This causes the test to be reported as ignored.
  92. </summary>
  93. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  94. <param name="args">Arguments to be used in formatting the message</param>
  95. </member>
  96. <member name="M:NUnit.Framework.Assert.Ignore(System.String)">
  97. <summary>
  98. Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message that is
  99. passed in. This causes the test to be reported as ignored.
  100. </summary>
  101. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  102. </member>
  103. <member name="M:NUnit.Framework.Assert.Ignore">
  104. <summary>
  105. Throws an <see cref="T:NUnit.Framework.IgnoreException"/>.
  106. This causes the test to be reported as ignored.
  107. </summary>
  108. </member>
  109. <member name="M:NUnit.Framework.Assert.Inconclusive(System.String,System.Object[])">
  110. <summary>
  111. Throws an <see cref="T:NUnit.Framework.InconclusiveException"/> with the message and arguments
  112. that are passed in. This causes the test to be reported as inconclusive.
  113. </summary>
  114. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.InconclusiveException"/> with.</param>
  115. <param name="args">Arguments to be used in formatting the message</param>
  116. </member>
  117. <member name="M:NUnit.Framework.Assert.Inconclusive(System.String)">
  118. <summary>
  119. Throws an <see cref="T:NUnit.Framework.InconclusiveException"/> with the message that is
  120. passed in. This causes the test to be reported as inconclusive.
  121. </summary>
  122. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.InconclusiveException"/> with.</param>
  123. </member>
  124. <member name="M:NUnit.Framework.Assert.Inconclusive">
  125. <summary>
  126. Throws an <see cref="T:NUnit.Framework.InconclusiveException"/>.
  127. This causes the test to be reported as Inconclusive.
  128. </summary>
  129. </member>
  130. <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
  131. <summary>
  132. Apply a constraint to an actual value, succeeding if the constraint
  133. is satisfied and throwing an assertion exception on failure.
  134. </summary>
  135. <param name="actual">The actual value to test</param>
  136. <param name="expression">A Constraint to be applied</param>
  137. </member>
  138. <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  139. <summary>
  140. Apply a constraint to an actual value, succeeding if the constraint
  141. is satisfied and throwing an assertion exception on failure.
  142. </summary>
  143. <param name="actual">The actual value to test</param>
  144. <param name="expression">A Constraint to be applied</param>
  145. <param name="message">The message that will be displayed on failure</param>
  146. </member>
  147. <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  148. <summary>
  149. Apply a constraint to an actual value, succeeding if the constraint
  150. is satisfied and throwing an assertion exception on failure.
  151. </summary>
  152. <param name="actual">The actual value to test</param>
  153. <param name="expression">A Constraint expression to be applied</param>
  154. <param name="message">The message that will be displayed on failure</param>
  155. <param name="args">Arguments to be used in formatting the message</param>
  156. </member>
  157. <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])">
  158. <summary>
  159. Asserts that a condition is true. If the condition is false the method throws
  160. an <see cref="T:NUnit.Framework.AssertionException"/>.
  161. </summary>
  162. <param name="condition">The evaluated condition</param>
  163. <param name="message">The message to display if the condition is false</param>
  164. <param name="args">Arguments to be used in formatting the message</param>
  165. </member>
  166. <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String)">
  167. <summary>
  168. Asserts that a condition is true. If the condition is false the method throws
  169. an <see cref="T:NUnit.Framework.AssertionException"/>.
  170. </summary>
  171. <param name="condition">The evaluated condition</param>
  172. <param name="message">The message to display if the condition is false</param>
  173. </member>
  174. <member name="M:NUnit.Framework.Assert.That(System.Boolean)">
  175. <summary>
  176. Asserts that a condition is true. If the condition is false the method throws
  177. an <see cref="T:NUnit.Framework.AssertionException"/>.
  178. </summary>
  179. <param name="condition">The evaluated condition</param>
  180. </member>
  181. <member name="M:NUnit.Framework.Assert.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint)">
  182. <summary>
  183. Apply a constraint to an actual value, succeeding if the constraint
  184. is satisfied and throwing an assertion exception on failure.
  185. </summary>
  186. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  187. <param name="expr">A Constraint expression to be applied</param>
  188. </member>
  189. <member name="M:NUnit.Framework.Assert.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  190. <summary>
  191. Apply a constraint to an actual value, succeeding if the constraint
  192. is satisfied and throwing an assertion exception on failure.
  193. </summary>
  194. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  195. <param name="expr">A Constraint expression to be applied</param>
  196. <param name="message">The message that will be displayed on failure</param>
  197. </member>
  198. <member name="M:NUnit.Framework.Assert.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  199. <summary>
  200. Apply a constraint to an actual value, succeeding if the constraint
  201. is satisfied and throwing an assertion exception on failure.
  202. </summary>
  203. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  204. <param name="expr">A Constraint expression to be applied</param>
  205. <param name="message">The message that will be displayed on failure</param>
  206. <param name="args">Arguments to be used in formatting the message</param>
  207. </member>
  208. <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
  209. <summary>
  210. Apply a constraint to a referenced value, succeeding if the constraint
  211. is satisfied and throwing an assertion exception on failure.
  212. </summary>
  213. <param name="actual">The actual value to test</param>
  214. <param name="expression">A Constraint to be applied</param>
  215. </member>
  216. <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  217. <summary>
  218. Apply a constraint to a referenced value, succeeding if the constraint
  219. is satisfied and throwing an assertion exception on failure.
  220. </summary>
  221. <param name="actual">The actual value to test</param>
  222. <param name="expression">A Constraint to be applied</param>
  223. <param name="message">The message that will be displayed on failure</param>
  224. </member>
  225. <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  226. <summary>
  227. Apply a constraint to a referenced value, succeeding if the constraint
  228. is satisfied and throwing an assertion exception on failure.
  229. </summary>
  230. <param name="actual">The actual value to test</param>
  231. <param name="expression">A Constraint to be applied</param>
  232. <param name="message">The message that will be displayed on failure</param>
  233. <param name="args">Arguments to be used in formatting the message</param>
  234. </member>
  235. <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
  236. <summary>
  237. Asserts that the code represented by a delegate throws an exception
  238. that satisfies the constraint provided.
  239. </summary>
  240. <param name="code">A TestDelegate to be executed</param>
  241. <param name="constraint">A ThrowsConstraint used in the test</param>
  242. </member>
  243. <member name="M:NUnit.Framework.Assert.ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
  244. <summary>
  245. Apply a constraint to an actual value, succeeding if the constraint
  246. is satisfied and throwing an assertion exception on failure.
  247. Used as a synonym for That in rare cases where a private setter
  248. causes a Visual Basic compilation error.
  249. </summary>
  250. <param name="actual">The actual value to test</param>
  251. <param name="expression">A Constraint to be applied</param>
  252. </member>
  253. <member name="M:NUnit.Framework.Assert.ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  254. <summary>
  255. Apply a constraint to an actual value, succeeding if the constraint
  256. is satisfied and throwing an assertion exception on failure.
  257. Used as a synonym for That in rare cases where a private setter
  258. causes a Visual Basic compilation error.
  259. </summary>
  260. <param name="actual">The actual value to test</param>
  261. <param name="expression">A Constraint to be applied</param>
  262. <param name="message">The message that will be displayed on failure</param>
  263. </member>
  264. <member name="M:NUnit.Framework.Assert.ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  265. <summary>
  266. Apply a constraint to an actual value, succeeding if the constraint
  267. is satisfied and throwing an assertion exception on failure.
  268. Used as a synonym for That in rare cases where a private setter
  269. causes a Visual Basic compilation error.
  270. </summary>
  271. <remarks>
  272. This method is provided for use by VB developers needing to test
  273. the value of properties with private setters.
  274. </remarks>
  275. <param name="actual">The actual value to test</param>
  276. <param name="expression">A Constraint expression to be applied</param>
  277. <param name="message">The message that will be displayed on failure</param>
  278. <param name="args">Arguments to be used in formatting the message</param>
  279. </member>
  280. <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String,System.Object[])">
  281. <summary>
  282. Verifies that a delegate throws a particular exception when called.
  283. </summary>
  284. <param name="expression">A constraint to be satisfied by the exception</param>
  285. <param name="code">A TestDelegate</param>
  286. <param name="message">The message that will be displayed on failure</param>
  287. <param name="args">Arguments to be used in formatting the message</param>
  288. </member>
  289. <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String)">
  290. <summary>
  291. Verifies that a delegate throws a particular exception when called.
  292. </summary>
  293. <param name="expression">A constraint to be satisfied by the exception</param>
  294. <param name="code">A TestDelegate</param>
  295. <param name="message">The message that will be displayed on failure</param>
  296. </member>
  297. <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate)">
  298. <summary>
  299. Verifies that a delegate throws a particular exception when called.
  300. </summary>
  301. <param name="expression">A constraint to be satisfied by the exception</param>
  302. <param name="code">A TestDelegate</param>
  303. </member>
  304. <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])">
  305. <summary>
  306. Verifies that a delegate throws a particular exception when called.
  307. </summary>
  308. <param name="expectedExceptionType">The exception Type expected</param>
  309. <param name="code">A TestDelegate</param>
  310. <param name="message">The message that will be displayed on failure</param>
  311. <param name="args">Arguments to be used in formatting the message</param>
  312. </member>
  313. <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String)">
  314. <summary>
  315. Verifies that a delegate throws a particular exception when called.
  316. </summary>
  317. <param name="expectedExceptionType">The exception Type expected</param>
  318. <param name="code">A TestDelegate</param>
  319. <param name="message">The message that will be displayed on failure</param>
  320. </member>
  321. <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate)">
  322. <summary>
  323. Verifies that a delegate throws a particular exception when called.
  324. </summary>
  325. <param name="expectedExceptionType">The exception Type expected</param>
  326. <param name="code">A TestDelegate</param>
  327. </member>
  328. <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String,System.Object[])">
  329. <summary>
  330. Verifies that a delegate throws a particular exception when called.
  331. </summary>
  332. <typeparam name="T">Type of the expected exception</typeparam>
  333. <param name="code">A TestDelegate</param>
  334. <param name="message">The message that will be displayed on failure</param>
  335. <param name="args">Arguments to be used in formatting the message</param>
  336. </member>
  337. <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String)">
  338. <summary>
  339. Verifies that a delegate throws a particular exception when called.
  340. </summary>
  341. <typeparam name="T">Type of the expected exception</typeparam>
  342. <param name="code">A TestDelegate</param>
  343. <param name="message">The message that will be displayed on failure</param>
  344. </member>
  345. <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate)">
  346. <summary>
  347. Verifies that a delegate throws a particular exception when called.
  348. </summary>
  349. <typeparam name="T">Type of the expected exception</typeparam>
  350. <param name="code">A TestDelegate</param>
  351. </member>
  352. <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String,System.Object[])">
  353. <summary>
  354. Verifies that a delegate throws an exception when called
  355. and returns it.
  356. </summary>
  357. <param name="code">A TestDelegate</param>
  358. <param name="message">The message that will be displayed on failure</param>
  359. <param name="args">Arguments to be used in formatting the message</param>
  360. </member>
  361. <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String)">
  362. <summary>
  363. Verifies that a delegate throws an exception when called
  364. and returns it.
  365. </summary>
  366. <param name="code">A TestDelegate</param>
  367. <param name="message">The message that will be displayed on failure</param>
  368. </member>
  369. <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate)">
  370. <summary>
  371. Verifies that a delegate throws an exception when called
  372. and returns it.
  373. </summary>
  374. <param name="code">A TestDelegate</param>
  375. </member>
  376. <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])">
  377. <summary>
  378. Verifies that a delegate throws an exception of a certain Type
  379. or one derived from it when called and returns it.
  380. </summary>
  381. <param name="expectedExceptionType">The expected Exception Type</param>
  382. <param name="code">A TestDelegate</param>
  383. <param name="message">The message that will be displayed on failure</param>
  384. <param name="args">Arguments to be used in formatting the message</param>
  385. </member>
  386. <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String)">
  387. <summary>
  388. Verifies that a delegate throws an exception of a certain Type
  389. or one derived from it when called and returns it.
  390. </summary>
  391. <param name="expectedExceptionType">The expected Exception Type</param>
  392. <param name="code">A TestDelegate</param>
  393. <param name="message">The message that will be displayed on failure</param>
  394. </member>
  395. <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate)">
  396. <summary>
  397. Verifies that a delegate throws an exception of a certain Type
  398. or one derived from it when called and returns it.
  399. </summary>
  400. <param name="expectedExceptionType">The expected Exception Type</param>
  401. <param name="code">A TestDelegate</param>
  402. </member>
  403. <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String,System.Object[])">
  404. <summary>
  405. Verifies that a delegate throws an exception of a certain Type
  406. or one derived from it when called and returns it.
  407. </summary>
  408. <typeparam name="T">The expected Exception Type</typeparam>
  409. <param name="code">A TestDelegate</param>
  410. <param name="message">The message that will be displayed on failure</param>
  411. <param name="args">Arguments to be used in formatting the message</param>
  412. </member>
  413. <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String)">
  414. <summary>
  415. Verifies that a delegate throws an exception of a certain Type
  416. or one derived from it when called and returns it.
  417. </summary>
  418. <typeparam name="T">The expected Exception Type</typeparam>
  419. <param name="code">A TestDelegate</param>
  420. <param name="message">The message that will be displayed on failure</param>
  421. </member>
  422. <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate)">
  423. <summary>
  424. Verifies that a delegate throws an exception of a certain Type
  425. or one derived from it when called and returns it.
  426. </summary>
  427. <typeparam name="T">The expected Exception Type</typeparam>
  428. <param name="code">A TestDelegate</param>
  429. </member>
  430. <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String,System.Object[])">
  431. <summary>
  432. Verifies that a delegate does not throw an exception
  433. </summary>
  434. <param name="code">A TestDelegate</param>
  435. <param name="message">The message that will be displayed on failure</param>
  436. <param name="args">Arguments to be used in formatting the message</param>
  437. </member>
  438. <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String)">
  439. <summary>
  440. Verifies that a delegate does not throw an exception.
  441. </summary>
  442. <param name="code">A TestDelegate</param>
  443. <param name="message">The message that will be displayed on failure</param>
  444. </member>
  445. <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate)">
  446. <summary>
  447. Verifies that a delegate does not throw an exception.
  448. </summary>
  449. <param name="code">A TestDelegate</param>
  450. </member>
  451. <member name="M:NUnit.Framework.Assert.True(System.Boolean,System.String,System.Object[])">
  452. <summary>
  453. Asserts that a condition is true. If the condition is false the method throws
  454. an <see cref="T:NUnit.Framework.AssertionException"/>.
  455. </summary>
  456. <param name="condition">The evaluated condition</param>
  457. <param name="message">The message to display in case of failure</param>
  458. <param name="args">Array of objects to be used in formatting the message</param>
  459. </member>
  460. <member name="M:NUnit.Framework.Assert.True(System.Boolean,System.String)">
  461. <summary>
  462. Asserts that a condition is true. If the condition is false the method throws
  463. an <see cref="T:NUnit.Framework.AssertionException"/>.
  464. </summary>
  465. <param name="condition">The evaluated condition</param>
  466. <param name="message">The message to display in case of failure</param>
  467. </member>
  468. <member name="M:NUnit.Framework.Assert.True(System.Boolean)">
  469. <summary>
  470. Asserts that a condition is true. If the condition is false the method throws
  471. an <see cref="T:NUnit.Framework.AssertionException"/>.
  472. </summary>
  473. <param name="condition">The evaluated condition</param>
  474. </member>
  475. <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
  476. <summary>
  477. Asserts that a condition is true. If the condition is false the method throws
  478. an <see cref="T:NUnit.Framework.AssertionException"/>.
  479. </summary>
  480. <param name="condition">The evaluated condition</param>
  481. <param name="message">The message to display in case of failure</param>
  482. <param name="args">Array of objects to be used in formatting the message</param>
  483. </member>
  484. <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
  485. <summary>
  486. Asserts that a condition is true. If the condition is false the method throws
  487. an <see cref="T:NUnit.Framework.AssertionException"/>.
  488. </summary>
  489. <param name="condition">The evaluated condition</param>
  490. <param name="message">The message to display in case of failure</param>
  491. </member>
  492. <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean)">
  493. <summary>
  494. Asserts that a condition is true. If the condition is false the method throws
  495. an <see cref="T:NUnit.Framework.AssertionException"/>.
  496. </summary>
  497. <param name="condition">The evaluated condition</param>
  498. </member>
  499. <member name="M:NUnit.Framework.Assert.False(System.Boolean,System.String,System.Object[])">
  500. <summary>
  501. Asserts that a condition is false. If the condition is true the method throws
  502. an <see cref="T:NUnit.Framework.AssertionException"/>.
  503. </summary>
  504. <param name="condition">The evaluated condition</param>
  505. <param name="message">The message to display in case of failure</param>
  506. <param name="args">Array of objects to be used in formatting the message</param>
  507. </member>
  508. <member name="M:NUnit.Framework.Assert.False(System.Boolean,System.String)">
  509. <summary>
  510. Asserts that a condition is false. If the condition is true the method throws
  511. an <see cref="T:NUnit.Framework.AssertionException"/>.
  512. </summary>
  513. <param name="condition">The evaluated condition</param>
  514. <param name="message">The message to display in case of failure</param>
  515. </member>
  516. <member name="M:NUnit.Framework.Assert.False(System.Boolean)">
  517. <summary>
  518. Asserts that a condition is false. If the condition is true the method throws
  519. an <see cref="T:NUnit.Framework.AssertionException"/>.
  520. </summary>
  521. <param name="condition">The evaluated condition</param>
  522. </member>
  523. <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
  524. <summary>
  525. Asserts that a condition is false. If the condition is true the method throws
  526. an <see cref="T:NUnit.Framework.AssertionException"/>.
  527. </summary>
  528. <param name="condition">The evaluated condition</param>
  529. <param name="message">The message to display in case of failure</param>
  530. <param name="args">Array of objects to be used in formatting the message</param>
  531. </member>
  532. <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
  533. <summary>
  534. Asserts that a condition is false. If the condition is true the method throws
  535. an <see cref="T:NUnit.Framework.AssertionException"/>.
  536. </summary>
  537. <param name="condition">The evaluated condition</param>
  538. <param name="message">The message to display in case of failure</param>
  539. </member>
  540. <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean)">
  541. <summary>
  542. Asserts that a condition is false. If the condition is true the method throws
  543. an <see cref="T:NUnit.Framework.AssertionException"/>.
  544. </summary>
  545. <param name="condition">The evaluated condition</param>
  546. </member>
  547. <member name="M:NUnit.Framework.Assert.NotNull(System.Object,System.String,System.Object[])">
  548. <summary>
  549. Verifies that the object that is passed in is not equal to <code>null</code>
  550. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  551. is thrown.
  552. </summary>
  553. <param name="anObject">The object that is to be tested</param>
  554. <param name="message">The message to display in case of failure</param>
  555. <param name="args">Array of objects to be used in formatting the message</param>
  556. </member>
  557. <member name="M:NUnit.Framework.Assert.NotNull(System.Object,System.String)">
  558. <summary>
  559. Verifies that the object that is passed in is not equal to <code>null</code>
  560. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  561. is thrown.
  562. </summary>
  563. <param name="anObject">The object that is to be tested</param>
  564. <param name="message">The message to display in case of failure</param>
  565. </member>
  566. <member name="M:NUnit.Framework.Assert.NotNull(System.Object)">
  567. <summary>
  568. Verifies that the object that is passed in is not equal to <code>null</code>
  569. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  570. is thrown.
  571. </summary>
  572. <param name="anObject">The object that is to be tested</param>
  573. </member>
  574. <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
  575. <summary>
  576. Verifies that the object that is passed in is not equal to <code>null</code>
  577. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  578. is thrown.
  579. </summary>
  580. <param name="anObject">The object that is to be tested</param>
  581. <param name="message">The message to display in case of failure</param>
  582. <param name="args">Array of objects to be used in formatting the message</param>
  583. </member>
  584. <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
  585. <summary>
  586. Verifies that the object that is passed in is not equal to <code>null</code>
  587. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  588. is thrown.
  589. </summary>
  590. <param name="anObject">The object that is to be tested</param>
  591. <param name="message">The message to display in case of failure</param>
  592. </member>
  593. <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object)">
  594. <summary>
  595. Verifies that the object that is passed in is not equal to <code>null</code>
  596. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  597. is thrown.
  598. </summary>
  599. <param name="anObject">The object that is to be tested</param>
  600. </member>
  601. <member name="M:NUnit.Framework.Assert.Null(System.Object,System.String,System.Object[])">
  602. <summary>
  603. Verifies that the object that is passed in is equal to <code>null</code>
  604. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  605. is thrown.
  606. </summary>
  607. <param name="anObject">The object that is to be tested</param>
  608. <param name="message">The message to display in case of failure</param>
  609. <param name="args">Array of objects to be used in formatting the message</param>
  610. </member>
  611. <member name="M:NUnit.Framework.Assert.Null(System.Object,System.String)">
  612. <summary>
  613. Verifies that the object that is passed in is equal to <code>null</code>
  614. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  615. is thrown.
  616. </summary>
  617. <param name="anObject">The object that is to be tested</param>
  618. <param name="message">The message to display in case of failure</param>
  619. </member>
  620. <member name="M:NUnit.Framework.Assert.Null(System.Object)">
  621. <summary>
  622. Verifies that the object that is passed in is equal to <code>null</code>
  623. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  624. is thrown.
  625. </summary>
  626. <param name="anObject">The object that is to be tested</param>
  627. </member>
  628. <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
  629. <summary>
  630. Verifies that the object that is passed in is equal to <code>null</code>
  631. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  632. is thrown.
  633. </summary>
  634. <param name="anObject">The object that is to be tested</param>
  635. <param name="message">The message to display in case of failure</param>
  636. <param name="args">Array of objects to be used in formatting the message</param>
  637. </member>
  638. <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String)">
  639. <summary>
  640. Verifies that the object that is passed in is equal to <code>null</code>
  641. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  642. is thrown.
  643. </summary>
  644. <param name="anObject">The object that is to be tested</param>
  645. <param name="message">The message to display in case of failure</param>
  646. </member>
  647. <member name="M:NUnit.Framework.Assert.IsNull(System.Object)">
  648. <summary>
  649. Verifies that the object that is passed in is equal to <code>null</code>
  650. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  651. is thrown.
  652. </summary>
  653. <param name="anObject">The object that is to be tested</param>
  654. </member>
  655. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
  656. <summary>
  657. Verifies that two ints are equal. If they are not, then an
  658. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  659. </summary>
  660. <param name="expected">The expected value</param>
  661. <param name="actual">The actual value</param>
  662. <param name="message">The message to display in case of failure</param>
  663. <param name="args">Array of objects to be used in formatting the message</param>
  664. </member>
  665. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
  666. <summary>
  667. Verifies that two ints are equal. If they are not, then an
  668. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  669. </summary>
  670. <param name="expected">The expected value</param>
  671. <param name="actual">The actual value</param>
  672. <param name="message">The message to display in case of failure</param>
  673. </member>
  674. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
  675. <summary>
  676. Verifies that two ints are equal. If they are not, then an
  677. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  678. </summary>
  679. <param name="expected">The expected value</param>
  680. <param name="actual">The actual value</param>
  681. </member>
  682. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String,System.Object[])">
  683. <summary>
  684. Verifies that two longs are equal. If they are not, then an
  685. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  686. </summary>
  687. <param name="expected">The expected value</param>
  688. <param name="actual">The actual value</param>
  689. <param name="message">The message to display in case of failure</param>
  690. <param name="args">Array of objects to be used in formatting the message</param>
  691. </member>
  692. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String)">
  693. <summary>
  694. Verifies that two longs are equal. If they are not, then an
  695. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  696. </summary>
  697. <param name="expected">The expected value</param>
  698. <param name="actual">The actual value</param>
  699. <param name="message">The message to display in case of failure</param>
  700. </member>
  701. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64)">
  702. <summary>
  703. Verifies that two longs are equal. If they are not, then an
  704. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  705. </summary>
  706. <param name="expected">The expected value</param>
  707. <param name="actual">The actual value</param>
  708. </member>
  709. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  710. <summary>
  711. Verifies that two unsigned ints are equal. If they are not, then an
  712. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  713. </summary>
  714. <param name="expected">The expected value</param>
  715. <param name="actual">The actual value</param>
  716. <param name="message">The message to display in case of failure</param>
  717. <param name="args">Array of objects to be used in formatting the message</param>
  718. </member>
  719. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String)">
  720. <summary>
  721. Verifies that two unsigned ints are equal. If they are not, then an
  722. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  723. </summary>
  724. <param name="expected">The expected value</param>
  725. <param name="actual">The actual value</param>
  726. <param name="message">The message to display in case of failure</param>
  727. </member>
  728. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32)">
  729. <summary>
  730. Verifies that two unsigned ints are equal. If they are not, then an
  731. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  732. </summary>
  733. <param name="expected">The expected value</param>
  734. <param name="actual">The actual value</param>
  735. </member>
  736. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  737. <summary>
  738. Verifies that two unsigned longs are equal. If they are not, then an
  739. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  740. </summary>
  741. <param name="expected">The expected value</param>
  742. <param name="actual">The actual value</param>
  743. <param name="message">The message to display in case of failure</param>
  744. <param name="args">Array of objects to be used in formatting the message</param>
  745. </member>
  746. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String)">
  747. <summary>
  748. Verifies that two unsigned longs are equal. If they are not, then an
  749. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  750. </summary>
  751. <param name="expected">The expected value</param>
  752. <param name="actual">The actual value</param>
  753. <param name="message">The message to display in case of failure</param>
  754. </member>
  755. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64)">
  756. <summary>
  757. Verifies that two unsigned longs are equal. If they are not, then an
  758. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  759. </summary>
  760. <param name="expected">The expected value</param>
  761. <param name="actual">The actual value</param>
  762. </member>
  763. <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  764. <summary>
  765. Verifies that two decimals are equal. If they are not, then an
  766. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  767. </summary>
  768. <param name="expected">The expected value</param>
  769. <param name="actual">The actual value</param>
  770. <param name="message">The message to display in case of failure</param>
  771. <param name="args">Array of objects to be used in formatting the message</param>
  772. </member>
  773. <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
  774. <summary>
  775. Verifies that two decimals are equal. If they are not, then an
  776. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  777. </summary>
  778. <param name="expected">The expected value</param>
  779. <param name="actual">The actual value</param>
  780. <param name="message">The message to display in case of failure</param>
  781. </member>
  782. <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
  783. <summary>
  784. Verifies that two decimals are equal. If they are not, then an
  785. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  786. </summary>
  787. <param name="expected">The expected value</param>
  788. <param name="actual">The actual value</param>
  789. </member>
  790. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
  791. <summary>
  792. Verifies that two doubles are equal considering a delta. If the
  793. expected value is infinity then the delta value is ignored. If
  794. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  795. thrown.
  796. </summary>
  797. <param name="expected">The expected value</param>
  798. <param name="actual">The actual value</param>
  799. <param name="delta">The maximum acceptable difference between the
  800. the expected and the actual</param>
  801. <param name="message">The message to display in case of failure</param>
  802. <param name="args">Array of objects to be used in formatting the message</param>
  803. </member>
  804. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
  805. <summary>
  806. Verifies that two doubles are equal considering a delta. If the
  807. expected value is infinity then the delta value is ignored. If
  808. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  809. thrown.
  810. </summary>
  811. <param name="expected">The expected value</param>
  812. <param name="actual">The actual value</param>
  813. <param name="delta">The maximum acceptable difference between the
  814. the expected and the actual</param>
  815. <param name="message">The message to display in case of failure</param>
  816. </member>
  817. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
  818. <summary>
  819. Verifies that two doubles are equal considering a delta. If the
  820. expected value is infinity then the delta value is ignored. If
  821. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  822. thrown.
  823. </summary>
  824. <param name="expected">The expected value</param>
  825. <param name="actual">The actual value</param>
  826. <param name="delta">The maximum acceptable difference between the
  827. the expected and the actual</param>
  828. </member>
  829. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String,System.Object[])">
  830. <summary>
  831. Verifies that two doubles are equal considering a delta. If the
  832. expected value is infinity then the delta value is ignored. If
  833. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  834. thrown.
  835. </summary>
  836. <param name="expected">The expected value</param>
  837. <param name="actual">The actual value</param>
  838. <param name="delta">The maximum acceptable difference between the
  839. the expected and the actual</param>
  840. <param name="message">The message to display in case of failure</param>
  841. <param name="args">Array of objects to be used in formatting the message</param>
  842. </member>
  843. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String)">
  844. <summary>
  845. Verifies that two doubles are equal considering a delta. If the
  846. expected value is infinity then the delta value is ignored. If
  847. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  848. thrown.
  849. </summary>
  850. <param name="expected">The expected value</param>
  851. <param name="actual">The actual value</param>
  852. <param name="delta">The maximum acceptable difference between the
  853. the expected and the actual</param>
  854. <param name="message">The message to display in case of failure</param>
  855. </member>
  856. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double)">
  857. <summary>
  858. Verifies that two doubles are equal considering a delta. If the
  859. expected value is infinity then the delta value is ignored. If
  860. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  861. thrown.
  862. </summary>
  863. <param name="expected">The expected value</param>
  864. <param name="actual">The actual value</param>
  865. <param name="delta">The maximum acceptable difference between the
  866. the expected and the actual</param>
  867. </member>
  868. <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
  869. <summary>
  870. Verifies that two objects are equal. Two objects are considered
  871. equal if both are null, or if both have the same value. NUnit
  872. has special semantics for some object types.
  873. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  874. </summary>
  875. <param name="expected">The value that is expected</param>
  876. <param name="actual">The actual value</param>
  877. <param name="message">The message to display in case of failure</param>
  878. <param name="args">Array of objects to be used in formatting the message</param>
  879. </member>
  880. <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
  881. <summary>
  882. Verifies that two objects are equal. Two objects are considered
  883. equal if both are null, or if both have the same value. NUnit
  884. has special semantics for some object types.
  885. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  886. </summary>
  887. <param name="expected">The value that is expected</param>
  888. <param name="actual">The actual value</param>
  889. <param name="message">The message to display in case of failure</param>
  890. </member>
  891. <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
  892. <summary>
  893. Verifies that two objects are equal. Two objects are considered
  894. equal if both are null, or if both have the same value. NUnit
  895. has special semantics for some object types.
  896. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  897. </summary>
  898. <param name="expected">The value that is expected</param>
  899. <param name="actual">The actual value</param>
  900. </member>
  901. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
  902. <summary>
  903. Verifies that two ints are not equal. If they are equal, then an
  904. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  905. </summary>
  906. <param name="expected">The expected value</param>
  907. <param name="actual">The actual value</param>
  908. <param name="message">The message to display in case of failure</param>
  909. <param name="args">Array of objects to be used in formatting the message</param>
  910. </member>
  911. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
  912. <summary>
  913. Verifies that two ints are not equal. If they are equal, then an
  914. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  915. </summary>
  916. <param name="expected">The expected value</param>
  917. <param name="actual">The actual value</param>
  918. <param name="message">The message to display in case of failure</param>
  919. </member>
  920. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
  921. <summary>
  922. Verifies that two ints are not equal. If they are equal, then an
  923. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  924. </summary>
  925. <param name="expected">The expected value</param>
  926. <param name="actual">The actual value</param>
  927. </member>
  928. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String,System.Object[])">
  929. <summary>
  930. Verifies that two longs are not equal. If they are equal, then an
  931. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  932. </summary>
  933. <param name="expected">The expected value</param>
  934. <param name="actual">The actual value</param>
  935. <param name="message">The message to display in case of failure</param>
  936. <param name="args">Array of objects to be used in formatting the message</param>
  937. </member>
  938. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String)">
  939. <summary>
  940. Verifies that two longs are not equal. If they are equal, then an
  941. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  942. </summary>
  943. <param name="expected">The expected value</param>
  944. <param name="actual">The actual value</param>
  945. <param name="message">The message to display in case of failure</param>
  946. </member>
  947. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64)">
  948. <summary>
  949. Verifies that two longs are not equal. If they are equal, then an
  950. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  951. </summary>
  952. <param name="expected">The expected value</param>
  953. <param name="actual">The actual value</param>
  954. </member>
  955. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  956. <summary>
  957. Verifies that two unsigned ints are not equal. If they are equal, then an
  958. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  959. </summary>
  960. <param name="expected">The expected value</param>
  961. <param name="actual">The actual value</param>
  962. <param name="message">The message to display in case of failure</param>
  963. <param name="args">Array of objects to be used in formatting the message</param>
  964. </member>
  965. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
  966. <summary>
  967. Verifies that two unsigned ints are not equal. If they are equal, then an
  968. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  969. </summary>
  970. <param name="expected">The expected value</param>
  971. <param name="actual">The actual value</param>
  972. <param name="message">The message to display in case of failure</param>
  973. </member>
  974. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
  975. <summary>
  976. Verifies that two unsigned ints are not equal. If they are equal, then an
  977. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  978. </summary>
  979. <param name="expected">The expected value</param>
  980. <param name="actual">The actual value</param>
  981. </member>
  982. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  983. <summary>
  984. Verifies that two unsigned longs are not equal. If they are equal, then an
  985. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  986. </summary>
  987. <param name="expected">The expected value</param>
  988. <param name="actual">The actual value</param>
  989. <param name="message">The message to display in case of failure</param>
  990. <param name="args">Array of objects to be used in formatting the message</param>
  991. </member>
  992. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String)">
  993. <summary>
  994. Verifies that two unsigned longs are not equal. If they are equal, then an
  995. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  996. </summary>
  997. <param name="expected">The expected value</param>
  998. <param name="actual">The actual value</param>
  999. <param name="message">The message to display in case of failure</param>
  1000. </member>
  1001. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64)">
  1002. <summary>
  1003. Verifies that two unsigned longs are not equal. If they are equal, then an
  1004. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1005. </summary>
  1006. <param name="expected">The expected value</param>
  1007. <param name="actual">The actual value</param>
  1008. </member>
  1009. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  1010. <summary>
  1011. Verifies that two decimals are not equal. If they are equal, then an
  1012. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1013. </summary>
  1014. <param name="expected">The expected value</param>
  1015. <param name="actual">The actual value</param>
  1016. <param name="message">The message to display in case of failure</param>
  1017. <param name="args">Array of objects to be used in formatting the message</param>
  1018. </member>
  1019. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
  1020. <summary>
  1021. Verifies that two decimals are not equal. If they are equal, then an
  1022. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1023. </summary>
  1024. <param name="expected">The expected value</param>
  1025. <param name="actual">The actual value</param>
  1026. <param name="message">The message to display in case of failure</param>
  1027. </member>
  1028. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
  1029. <summary>
  1030. Verifies that two decimals are not equal. If they are equal, then an
  1031. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1032. </summary>
  1033. <param name="expected">The expected value</param>
  1034. <param name="actual">The actual value</param>
  1035. </member>
  1036. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
  1037. <summary>
  1038. Verifies that two floats are not equal. If they are equal, then an
  1039. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1040. </summary>
  1041. <param name="expected">The expected value</param>
  1042. <param name="actual">The actual value</param>
  1043. <param name="message">The message to display in case of failure</param>
  1044. <param name="args">Array of objects to be used in formatting the message</param>
  1045. </member>
  1046. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
  1047. <summary>
  1048. Verifies that two floats are not equal. If they are equal, then an
  1049. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1050. </summary>
  1051. <param name="expected">The expected value</param>
  1052. <param name="actual">The actual value</param>
  1053. <param name="message">The message to display in case of failure</param>
  1054. </member>
  1055. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
  1056. <summary>
  1057. Verifies that two floats are not equal. If they are equal, then an
  1058. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1059. </summary>
  1060. <param name="expected">The expected value</param>
  1061. <param name="actual">The actual value</param>
  1062. </member>
  1063. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
  1064. <summary>
  1065. Verifies that two doubles are not equal. If they are equal, then an
  1066. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1067. </summary>
  1068. <param name="expected">The expected value</param>
  1069. <param name="actual">The actual value</param>
  1070. <param name="message">The message to display in case of failure</param>
  1071. <param name="args">Array of objects to be used in formatting the message</param>
  1072. </member>
  1073. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
  1074. <summary>
  1075. Verifies that two doubles are not equal. If they are equal, then an
  1076. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1077. </summary>
  1078. <param name="expected">The expected value</param>
  1079. <param name="actual">The actual value</param>
  1080. <param name="message">The message to display in case of failure</param>
  1081. </member>
  1082. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
  1083. <summary>
  1084. Verifies that two doubles are not equal. If they are equal, then an
  1085. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1086. </summary>
  1087. <param name="expected">The expected value</param>
  1088. <param name="actual">The actual value</param>
  1089. </member>
  1090. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
  1091. <summary>
  1092. Verifies that two objects are not equal. Two objects are considered
  1093. equal if both are null, or if both have the same value. NUnit
  1094. has special semantics for some object types.
  1095. If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1096. </summary>
  1097. <param name="expected">The value that is expected</param>
  1098. <param name="actual">The actual value</param>
  1099. <param name="message">The message to display in case of failure</param>
  1100. <param name="args">Array of objects to be used in formatting the message</param>
  1101. </member>
  1102. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
  1103. <summary>
  1104. Verifies that two objects are not equal. Two objects are considered
  1105. equal if both are null, or if both have the same value. NUnit
  1106. has special semantics for some object types.
  1107. If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1108. </summary>
  1109. <param name="expected">The value that is expected</param>
  1110. <param name="actual">The actual value</param>
  1111. <param name="message">The message to display in case of failure</param>
  1112. </member>
  1113. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
  1114. <summary>
  1115. Verifies that two objects are not equal. Two objects are considered
  1116. equal if both are null, or if both have the same value. NUnit
  1117. has special semantics for some object types.
  1118. If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1119. </summary>
  1120. <param name="expected">The value that is expected</param>
  1121. <param name="actual">The actual value</param>
  1122. </member>
  1123. <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
  1124. <summary>
  1125. Asserts that two objects refer to the same object. If they
  1126. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1127. </summary>
  1128. <param name="expected">The expected object</param>
  1129. <param name="actual">The actual object</param>
  1130. <param name="message">The message to display in case of failure</param>
  1131. <param name="args">Array of objects to be used in formatting the message</param>
  1132. </member>
  1133. <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
  1134. <summary>
  1135. Asserts that two objects refer to the same object. If they
  1136. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1137. </summary>
  1138. <param name="expected">The expected object</param>
  1139. <param name="actual">The actual object</param>
  1140. <param name="message">The message to display in case of failure</param>
  1141. </member>
  1142. <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object)">
  1143. <summary>
  1144. Asserts that two objects refer to the same object. If they
  1145. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1146. </summary>
  1147. <param name="expected">The expected object</param>
  1148. <param name="actual">The actual object</param>
  1149. </member>
  1150. <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String,System.Object[])">
  1151. <summary>
  1152. Asserts that two objects do not refer to the same object. If they
  1153. are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1154. </summary>
  1155. <param name="expected">The expected object</param>
  1156. <param name="actual">The actual object</param>
  1157. <param name="message">The message to display in case of failure</param>
  1158. <param name="args">Array of objects to be used in formatting the message</param>
  1159. </member>
  1160. <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String)">
  1161. <summary>
  1162. Asserts that two objects do not refer to the same object. If they
  1163. are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1164. </summary>
  1165. <param name="expected">The expected object</param>
  1166. <param name="actual">The actual object</param>
  1167. <param name="message">The message to display in case of failure</param>
  1168. </member>
  1169. <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object)">
  1170. <summary>
  1171. Asserts that two objects do not refer to the same object. If they
  1172. are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1173. </summary>
  1174. <param name="expected">The expected object</param>
  1175. <param name="actual">The actual object</param>
  1176. </member>
  1177. <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
  1178. <summary>
  1179. Verifies that the double that is passed in is an <code>NaN</code> value.
  1180. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1181. is thrown.
  1182. </summary>
  1183. <param name="aDouble">The value that is to be tested</param>
  1184. <param name="message">The message to display in case of failure</param>
  1185. <param name="args">Array of objects to be used in formatting the message</param>
  1186. </member>
  1187. <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String)">
  1188. <summary>
  1189. Verifies that the double that is passed in is an <code>NaN</code> value.
  1190. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1191. is thrown.
  1192. </summary>
  1193. <param name="aDouble">The value that is to be tested</param>
  1194. <param name="message">The message to display in case of failure</param>
  1195. </member>
  1196. <member name="M:NUnit.Framework.Assert.IsNaN(System.Double)">
  1197. <summary>
  1198. Verifies that the double that is passed in is an <code>NaN</code> value.
  1199. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1200. is thrown.
  1201. </summary>
  1202. <param name="aDouble">The value that is to be tested</param>
  1203. </member>
  1204. <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String,System.Object[])">
  1205. <summary>
  1206. Verifies that the double that is passed in is an <code>NaN</code> value.
  1207. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1208. is thrown.
  1209. </summary>
  1210. <param name="aDouble">The value that is to be tested</param>
  1211. <param name="message">The message to display in case of failure</param>
  1212. <param name="args">Array of objects to be used in formatting the message</param>
  1213. </member>
  1214. <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String)">
  1215. <summary>
  1216. Verifies that the double that is passed in is an <code>NaN</code> value.
  1217. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1218. is thrown.
  1219. </summary>
  1220. <param name="aDouble">The value that is to be tested</param>
  1221. <param name="message">The message to display in case of failure</param>
  1222. </member>
  1223. <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double})">
  1224. <summary>
  1225. Verifies that the double that is passed in is an <code>NaN</code> value.
  1226. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1227. is thrown.
  1228. </summary>
  1229. <param name="aDouble">The value that is to be tested</param>
  1230. </member>
  1231. <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
  1232. <summary>
  1233. Assert that a string is empty - that is equal to string.Empty
  1234. </summary>
  1235. <param name="aString">The string to be tested</param>
  1236. <param name="message">The message to display in case of failure</param>
  1237. <param name="args">Array of objects to be used in formatting the message</param>
  1238. </member>
  1239. <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String)">
  1240. <summary>
  1241. Assert that a string is empty - that is equal to string.Empty
  1242. </summary>
  1243. <param name="aString">The string to be tested</param>
  1244. <param name="message">The message to display in case of failure</param>
  1245. </member>
  1246. <member name="M:NUnit.Framework.Assert.IsEmpty(System.String)">
  1247. <summary>
  1248. Assert that a string is empty - that is equal to string.Empty
  1249. </summary>
  1250. <param name="aString">The string to be tested</param>
  1251. </member>
  1252. <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
  1253. <summary>
  1254. Assert that an array, list or other collection is empty
  1255. </summary>
  1256. <param name="collection">An array, list or other collection implementing ICollection</param>
  1257. <param name="message">The message to display in case of failure</param>
  1258. <param name="args">Array of objects to be used in formatting the message</param>
  1259. </member>
  1260. <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.IEnumerable,System.String)">
  1261. <summary>
  1262. Assert that an array, list or other collection is empty
  1263. </summary>
  1264. <param name="collection">An array, list or other collection implementing ICollection</param>
  1265. <param name="message">The message to display in case of failure</param>
  1266. </member>
  1267. <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.IEnumerable)">
  1268. <summary>
  1269. Assert that an array, list or other collection is empty
  1270. </summary>
  1271. <param name="collection">An array, list or other collection implementing ICollection</param>
  1272. </member>
  1273. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
  1274. <summary>
  1275. Assert that a string is not empty - that is not equal to string.Empty
  1276. </summary>
  1277. <param name="aString">The string to be tested</param>
  1278. <param name="message">The message to display in case of failure</param>
  1279. <param name="args">Array of objects to be used in formatting the message</param>
  1280. </member>
  1281. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
  1282. <summary>
  1283. Assert that a string is not empty - that is not equal to string.Empty
  1284. </summary>
  1285. <param name="aString">The string to be tested</param>
  1286. <param name="message">The message to display in case of failure</param>
  1287. </member>
  1288. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String)">
  1289. <summary>
  1290. Assert that a string is not empty - that is not equal to string.Empty
  1291. </summary>
  1292. <param name="aString">The string to be tested</param>
  1293. </member>
  1294. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
  1295. <summary>
  1296. Assert that an array, list or other collection is not empty
  1297. </summary>
  1298. <param name="collection">An array, list or other collection implementing ICollection</param>
  1299. <param name="message">The message to display in case of failure</param>
  1300. <param name="args">Array of objects to be used in formatting the message</param>
  1301. </member>
  1302. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.IEnumerable,System.String)">
  1303. <summary>
  1304. Assert that an array, list or other collection is not empty
  1305. </summary>
  1306. <param name="collection">An array, list or other collection implementing ICollection</param>
  1307. <param name="message">The message to display in case of failure</param>
  1308. </member>
  1309. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.IEnumerable)">
  1310. <summary>
  1311. Assert that an array, list or other collection is not empty
  1312. </summary>
  1313. <param name="collection">An array, list or other collection implementing ICollection</param>
  1314. </member>
  1315. <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String,System.Object[])">
  1316. <summary>
  1317. Assert that a string is either null or equal to string.Empty
  1318. </summary>
  1319. <param name="aString">The string to be tested</param>
  1320. <param name="message">The message to display in case of failure</param>
  1321. <param name="args">Array of objects to be used in formatting the message</param>
  1322. </member>
  1323. <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String)">
  1324. <summary>
  1325. Assert that a string is either null or equal to string.Empty
  1326. </summary>
  1327. <param name="aString">The string to be tested</param>
  1328. <param name="message">The message to display in case of failure</param>
  1329. </member>
  1330. <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String)">
  1331. <summary>
  1332. Assert that a string is either null or equal to string.Empty
  1333. </summary>
  1334. <param name="aString">The string to be tested</param>
  1335. </member>
  1336. <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String,System.Object[])">
  1337. <summary>
  1338. Assert that a string is not null or empty
  1339. </summary>
  1340. <param name="aString">The string to be tested</param>
  1341. <param name="message">The message to display in case of failure</param>
  1342. <param name="args">Array of objects to be used in formatting the message</param>
  1343. </member>
  1344. <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String)">
  1345. <summary>
  1346. Assert that a string is not null or empty
  1347. </summary>
  1348. <param name="aString">The string to be tested</param>
  1349. <param name="message">The message to display in case of failure</param>
  1350. </member>
  1351. <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String)">
  1352. <summary>
  1353. Assert that a string is not null or empty
  1354. </summary>
  1355. <param name="aString">The string to be tested</param>
  1356. </member>
  1357. <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
  1358. <summary>
  1359. Asserts that an object may be assigned a value of a given Type.
  1360. </summary>
  1361. <param name="expected">The expected Type.</param>
  1362. <param name="actual">The object under examination</param>
  1363. <param name="message">The message to display in case of failure</param>
  1364. <param name="args">Array of objects to be used in formatting the message</param>
  1365. </member>
  1366. <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
  1367. <summary>
  1368. Asserts that an object may be assigned a value of a given Type.
  1369. </summary>
  1370. <param name="expected">The expected Type.</param>
  1371. <param name="actual">The object under examination</param>
  1372. <param name="message">The message to display in case of failure</param>
  1373. </member>
  1374. <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
  1375. <summary>
  1376. Asserts that an object may be assigned a value of a given Type.
  1377. </summary>
  1378. <param name="expected">The expected Type.</param>
  1379. <param name="actual">The object under examination</param>
  1380. </member>
  1381. <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String,System.Object[])">
  1382. <summary>
  1383. Asserts that an object may be assigned a value of a given Type.
  1384. </summary>
  1385. <typeparam name="T">The expected Type.</typeparam>
  1386. <param name="actual">The object under examination</param>
  1387. <param name="message">The message to display in case of failure</param>
  1388. <param name="args">Array of objects to be used in formatting the message</param>
  1389. </member>
  1390. <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String)">
  1391. <summary>
  1392. Asserts that an object may be assigned a value of a given Type.
  1393. </summary>
  1394. <typeparam name="T">The expected Type.</typeparam>
  1395. <param name="actual">The object under examination</param>
  1396. <param name="message">The message to display in case of failure</param>
  1397. </member>
  1398. <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object)">
  1399. <summary>
  1400. Asserts that an object may be assigned a value of a given Type.
  1401. </summary>
  1402. <typeparam name="T">The expected Type.</typeparam>
  1403. <param name="actual">The object under examination</param>
  1404. </member>
  1405. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
  1406. <summary>
  1407. Asserts that an object may not be assigned a value of a given Type.
  1408. </summary>
  1409. <param name="expected">The expected Type.</param>
  1410. <param name="actual">The object under examination</param>
  1411. <param name="message">The message to display in case of failure</param>
  1412. <param name="args">Array of objects to be used in formatting the message</param>
  1413. </member>
  1414. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
  1415. <summary>
  1416. Asserts that an object may not be assigned a value of a given Type.
  1417. </summary>
  1418. <param name="expected">The expected Type.</param>
  1419. <param name="actual">The object under examination</param>
  1420. <param name="message">The message to display in case of failure</param>
  1421. </member>
  1422. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
  1423. <summary>
  1424. Asserts that an object may not be assigned a value of a given Type.
  1425. </summary>
  1426. <param name="expected">The expected Type.</param>
  1427. <param name="actual">The object under examination</param>
  1428. </member>
  1429. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String,System.Object[])">
  1430. <summary>
  1431. Asserts that an object may not be assigned a value of a given Type.
  1432. </summary>
  1433. <typeparam name="T">The expected Type.</typeparam>
  1434. <param name="actual">The object under examination</param>
  1435. <param name="message">The message to display in case of failure</param>
  1436. <param name="args">Array of objects to be used in formatting the message</param>
  1437. </member>
  1438. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String)">
  1439. <summary>
  1440. Asserts that an object may not be assigned a value of a given Type.
  1441. </summary>
  1442. <typeparam name="T">The expected Type.</typeparam>
  1443. <param name="actual">The object under examination</param>
  1444. <param name="message">The message to display in case of failure</param>
  1445. </member>
  1446. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object)">
  1447. <summary>
  1448. Asserts that an object may not be assigned a value of a given Type.
  1449. </summary>
  1450. <typeparam name="T">The expected Type.</typeparam>
  1451. <param name="actual">The object under examination</param>
  1452. </member>
  1453. <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String,System.Object[])">
  1454. <summary>
  1455. Asserts that an object is an instance of a given type.
  1456. </summary>
  1457. <param name="expected">The expected Type</param>
  1458. <param name="actual">The object being examined</param>
  1459. <param name="message">The message to display in case of failure</param>
  1460. <param name="args">Array of objects to be used in formatting the message</param>
  1461. </member>
  1462. <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String)">
  1463. <summary>
  1464. Asserts that an object is an instance of a given type.
  1465. </summary>
  1466. <param name="expected">The expected Type</param>
  1467. <param name="actual">The object being examined</param>
  1468. <param name="message">The message to display in case of failure</param>
  1469. </member>
  1470. <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object)">
  1471. <summary>
  1472. Asserts that an object is an instance of a given type.
  1473. </summary>
  1474. <param name="expected">The expected Type</param>
  1475. <param name="actual">The object being examined</param>
  1476. </member>
  1477. <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
  1478. <summary>
  1479. Asserts that an object is an instance of a given type.
  1480. </summary>
  1481. <param name="expected">The expected Type</param>
  1482. <param name="actual">The object being examined</param>
  1483. <param name="message">The message to display in case of failure</param>
  1484. <param name="args">Array of objects to be used in formatting the message</param>
  1485. </member>
  1486. <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
  1487. <summary>
  1488. Asserts that an object is an instance of a given type.
  1489. </summary>
  1490. <param name="expected">The expected Type</param>
  1491. <param name="actual">The object being examined</param>
  1492. <param name="message">The message to display in case of failure</param>
  1493. </member>
  1494. <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
  1495. <summary>
  1496. Asserts that an object is an instance of a given type.
  1497. </summary>
  1498. <param name="expected">The expected Type</param>
  1499. <param name="actual">The object being examined</param>
  1500. </member>
  1501. <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String,System.Object[])">
  1502. <summary>
  1503. Asserts that an object is an instance of a given type.
  1504. </summary>
  1505. <typeparam name="T">The expected Type</typeparam>
  1506. <param name="actual">The object being examined</param>
  1507. <param name="message">The message to display in case of failure</param>
  1508. <param name="args">Array of objects to be used in formatting the message</param>
  1509. </member>
  1510. <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String)">
  1511. <summary>
  1512. Asserts that an object is an instance of a given type.
  1513. </summary>
  1514. <typeparam name="T">The expected Type</typeparam>
  1515. <param name="actual">The object being examined</param>
  1516. <param name="message">The message to display in case of failure</param>
  1517. </member>
  1518. <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object)">
  1519. <summary>
  1520. Asserts that an object is an instance of a given type.
  1521. </summary>
  1522. <typeparam name="T">The expected Type</typeparam>
  1523. <param name="actual">The object being examined</param>
  1524. </member>
  1525. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String,System.Object[])">
  1526. <summary>
  1527. Asserts that an object is not an instance of a given type.
  1528. </summary>
  1529. <param name="expected">The expected Type</param>
  1530. <param name="actual">The object being examined</param>
  1531. <param name="message">The message to display in case of failure</param>
  1532. <param name="args">Array of objects to be used in formatting the message</param>
  1533. </member>
  1534. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String)">
  1535. <summary>
  1536. Asserts that an object is not an instance of a given type.
  1537. </summary>
  1538. <param name="expected">The expected Type</param>
  1539. <param name="actual">The object being examined</param>
  1540. <param name="message">The message to display in case of failure</param>
  1541. </member>
  1542. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object)">
  1543. <summary>
  1544. Asserts that an object is not an instance of a given type.
  1545. </summary>
  1546. <param name="expected">The expected Type</param>
  1547. <param name="actual">The object being examined</param>
  1548. </member>
  1549. <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
  1550. <summary>
  1551. Asserts that an object is not an instance of a given type.
  1552. </summary>
  1553. <param name="expected">The expected Type</param>
  1554. <param name="actual">The object being examined</param>
  1555. <param name="message">The message to display in case of failure</param>
  1556. <param name="args">Array of objects to be used in formatting the message</param>
  1557. </member>
  1558. <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
  1559. <summary>
  1560. Asserts that an object is not an instance of a given type.
  1561. </summary>
  1562. <param name="expected">The expected Type</param>
  1563. <param name="actual">The object being examined</param>
  1564. <param name="message">The message to display in case of failure</param>
  1565. </member>
  1566. <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
  1567. <summary>
  1568. Asserts that an object is not an instance of a given type.
  1569. </summary>
  1570. <param name="expected">The expected Type</param>
  1571. <param name="actual">The object being examined</param>
  1572. </member>
  1573. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String,System.Object[])">
  1574. <summary>
  1575. Asserts that an object is not an instance of a given type.
  1576. </summary>
  1577. <typeparam name="T">The expected Type</typeparam>
  1578. <param name="actual">The object being examined</param>
  1579. <param name="message">The message to display in case of failure</param>
  1580. <param name="args">Array of objects to be used in formatting the message</param>
  1581. </member>
  1582. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String)">
  1583. <summary>
  1584. Asserts that an object is not an instance of a given type.
  1585. </summary>
  1586. <typeparam name="T">The expected Type</typeparam>
  1587. <param name="actual">The object being examined</param>
  1588. <param name="message">The message to display in case of failure</param>
  1589. </member>
  1590. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object)">
  1591. <summary>
  1592. Asserts that an object is not an instance of a given type.
  1593. </summary>
  1594. <typeparam name="T">The expected Type</typeparam>
  1595. <param name="actual">The object being examined</param>
  1596. </member>
  1597. <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
  1598. <summary>
  1599. Verifies that the first value is greater than the second
  1600. value. If it is not, then an
  1601. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1602. </summary>
  1603. <param name="arg1">The first value, expected to be greater</param>
  1604. <param name="arg2">The second value, expected to be less</param>
  1605. <param name="message">The message to display in case of failure</param>
  1606. <param name="args">Array of objects to be used in formatting the message</param>
  1607. </member>
  1608. <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
  1609. <summary>
  1610. Verifies that the first value is greater than the second
  1611. value. If it is not, then an
  1612. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1613. </summary>
  1614. <param name="arg1">The first value, expected to be greater</param>
  1615. <param name="arg2">The second value, expected to be less</param>
  1616. <param name="message">The message to display in case of failure</param>
  1617. </member>
  1618. <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
  1619. <summary>
  1620. Verifies that the first value is greater than the second
  1621. value. If it is not, then an
  1622. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1623. </summary>
  1624. <param name="arg1">The first value, expected to be greater</param>
  1625. <param name="arg2">The second value, expected to be less</param>
  1626. </member>
  1627. <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
  1628. <summary>
  1629. Verifies that the first value is greater than the second
  1630. value. If it is not, then an
  1631. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1632. </summary>
  1633. <param name="arg1">The first value, expected to be greater</param>
  1634. <param name="arg2">The second value, expected to be less</param>
  1635. <param name="message">The message to display in case of failure</param>
  1636. <param name="args">Array of objects to be used in formatting the message</param>
  1637. </member>
  1638. <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
  1639. <summary>
  1640. Verifies that the first value is greater than the second
  1641. value. If it is not, then an
  1642. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1643. </summary>
  1644. <param name="arg1">The first value, expected to be greater</param>
  1645. <param name="arg2">The second value, expected to be less</param>
  1646. <param name="message">The message to display in case of failure</param>
  1647. </member>
  1648. <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
  1649. <summary>
  1650. Verifies that the first value is greater than the second
  1651. value. If it is not, then an
  1652. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1653. </summary>
  1654. <param name="arg1">The first value, expected to be greater</param>
  1655. <param name="arg2">The second value, expected to be less</param>
  1656. </member>
  1657. <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
  1658. <summary>
  1659. Verifies that the first value is greater than the second
  1660. value. If it is not, then an
  1661. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1662. </summary>
  1663. <param name="arg1">The first value, expected to be greater</param>
  1664. <param name="arg2">The second value, expected to be less</param>
  1665. <param name="message">The message to display in case of failure</param>
  1666. <param name="args">Array of objects to be used in formatting the message</param>
  1667. </member>
  1668. <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
  1669. <summary>
  1670. Verifies that the first value is greater than the second
  1671. value. If it is not, then an
  1672. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1673. </summary>
  1674. <param name="arg1">The first value, expected to be greater</param>
  1675. <param name="arg2">The second value, expected to be less</param>
  1676. <param name="message">The message to display in case of failure</param>
  1677. </member>
  1678. <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
  1679. <summary>
  1680. Verifies that the first value is greater than the second
  1681. value. If it is not, then an
  1682. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1683. </summary>
  1684. <param name="arg1">The first value, expected to be greater</param>
  1685. <param name="arg2">The second value, expected to be less</param>
  1686. </member>
  1687. <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String,System.Object[])">
  1688. <summary>
  1689. Verifies that the first value is greater than the second
  1690. value. If it is not, then an
  1691. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1692. </summary>
  1693. <param name="arg1">The first value, expected to be greater</param>
  1694. <param name="arg2">The second value, expected to be less</param>
  1695. <param name="message">The message to display in case of failure</param>
  1696. <param name="args">Array of objects to be used in formatting the message</param>
  1697. </member>
  1698. <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String)">
  1699. <summary>
  1700. Verifies that the first value is greater than the second
  1701. value. If it is not, then an
  1702. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1703. </summary>
  1704. <param name="arg1">The first value, expected to be greater</param>
  1705. <param name="arg2">The second value, expected to be less</param>
  1706. <param name="message">The message to display in case of failure</param>
  1707. </member>
  1708. <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64)">
  1709. <summary>
  1710. Verifies that the first value is greater than the second
  1711. value. If it is not, then an
  1712. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1713. </summary>
  1714. <param name="arg1">The first value, expected to be greater</param>
  1715. <param name="arg2">The second value, expected to be less</param>
  1716. </member>
  1717. <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
  1718. <summary>
  1719. Verifies that the first value is greater than the second
  1720. value. If it is not, then an
  1721. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1722. </summary>
  1723. <param name="arg1">The first value, expected to be greater</param>
  1724. <param name="arg2">The second value, expected to be less</param>
  1725. <param name="message">The message to display in case of failure</param>
  1726. <param name="args">Array of objects to be used in formatting the message</param>
  1727. </member>
  1728. <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
  1729. <summary>
  1730. Verifies that the first value is greater than the second
  1731. value. If it is not, then an
  1732. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1733. </summary>
  1734. <param name="arg1">The first value, expected to be greater</param>
  1735. <param name="arg2">The second value, expected to be less</param>
  1736. <param name="message">The message to display in case of failure</param>
  1737. </member>
  1738. <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
  1739. <summary>
  1740. Verifies that the first value is greater than the second
  1741. value. If it is not, then an
  1742. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1743. </summary>
  1744. <param name="arg1">The first value, expected to be greater</param>
  1745. <param name="arg2">The second value, expected to be less</param>
  1746. </member>
  1747. <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
  1748. <summary>
  1749. Verifies that the first value is greater than the second
  1750. value. If it is not, then an
  1751. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1752. </summary>
  1753. <param name="arg1">The first value, expected to be greater</param>
  1754. <param name="arg2">The second value, expected to be less</param>
  1755. <param name="message">The message to display in case of failure</param>
  1756. <param name="args">Array of objects to be used in formatting the message</param>
  1757. </member>
  1758. <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
  1759. <summary>
  1760. Verifies that the first value is greater than the second
  1761. value. If it is not, then an
  1762. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1763. </summary>
  1764. <param name="arg1">The first value, expected to be greater</param>
  1765. <param name="arg2">The second value, expected to be less</param>
  1766. <param name="message">The message to display in case of failure</param>
  1767. </member>
  1768. <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double)">
  1769. <summary>
  1770. Verifies that the first value is greater than the second
  1771. value. If it is not, then an
  1772. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1773. </summary>
  1774. <param name="arg1">The first value, expected to be greater</param>
  1775. <param name="arg2">The second value, expected to be less</param>
  1776. </member>
  1777. <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
  1778. <summary>
  1779. Verifies that the first value is greater than the second
  1780. value. If it is not, then an
  1781. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1782. </summary>
  1783. <param name="arg1">The first value, expected to be greater</param>
  1784. <param name="arg2">The second value, expected to be less</param>
  1785. <param name="message">The message to display in case of failure</param>
  1786. <param name="args">Array of objects to be used in formatting the message</param>
  1787. </member>
  1788. <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
  1789. <summary>
  1790. Verifies that the first value is greater than the second
  1791. value. If it is not, then an
  1792. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1793. </summary>
  1794. <param name="arg1">The first value, expected to be greater</param>
  1795. <param name="arg2">The second value, expected to be less</param>
  1796. <param name="message">The message to display in case of failure</param>
  1797. </member>
  1798. <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single)">
  1799. <summary>
  1800. Verifies that the first value is greater than the second
  1801. value. If it is not, then an
  1802. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1803. </summary>
  1804. <param name="arg1">The first value, expected to be greater</param>
  1805. <param name="arg2">The second value, expected to be less</param>
  1806. </member>
  1807. <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
  1808. <summary>
  1809. Verifies that the first value is greater than the second
  1810. value. If it is not, then an
  1811. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1812. </summary>
  1813. <param name="arg1">The first value, expected to be greater</param>
  1814. <param name="arg2">The second value, expected to be less</param>
  1815. <param name="message">The message to display in case of failure</param>
  1816. <param name="args">Array of objects to be used in formatting the message</param>
  1817. </member>
  1818. <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
  1819. <summary>
  1820. Verifies that the first value is greater than the second
  1821. value. If it is not, then an
  1822. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1823. </summary>
  1824. <param name="arg1">The first value, expected to be greater</param>
  1825. <param name="arg2">The second value, expected to be less</param>
  1826. <param name="message">The message to display in case of failure</param>
  1827. </member>
  1828. <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
  1829. <summary>
  1830. Verifies that the first value is greater than the second
  1831. value. If it is not, then an
  1832. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1833. </summary>
  1834. <param name="arg1">The first value, expected to be greater</param>
  1835. <param name="arg2">The second value, expected to be less</param>
  1836. </member>
  1837. <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
  1838. <summary>
  1839. Verifies that the first value is less than the second
  1840. value. If it is not, then an
  1841. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1842. </summary>
  1843. <param name="arg1">The first value, expected to be less</param>
  1844. <param name="arg2">The second value, expected to be greater</param>
  1845. <param name="message">The message to display in case of failure</param>
  1846. <param name="args">Array of objects to be used in formatting the message</param>
  1847. </member>
  1848. <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
  1849. <summary>
  1850. Verifies that the first value is less than the second
  1851. value. If it is not, then an
  1852. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1853. </summary>
  1854. <param name="arg1">The first value, expected to be less</param>
  1855. <param name="arg2">The second value, expected to be greater</param>
  1856. <param name="message">The message to display in case of failure</param>
  1857. </member>
  1858. <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32)">
  1859. <summary>
  1860. Verifies that the first value is less than the second
  1861. value. If it is not, then an
  1862. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1863. </summary>
  1864. <param name="arg1">The first value, expected to be less</param>
  1865. <param name="arg2">The second value, expected to be greater</param>
  1866. </member>
  1867. <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
  1868. <summary>
  1869. Verifies that the first value is less than the second
  1870. value. If it is not, then an
  1871. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1872. </summary>
  1873. <param name="arg1">The first value, expected to be less</param>
  1874. <param name="arg2">The second value, expected to be greater</param>
  1875. <param name="message">The message to display in case of failure</param>
  1876. <param name="args">Array of objects to be used in formatting the message</param>
  1877. </member>
  1878. <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
  1879. <summary>
  1880. Verifies that the first value is less than the second
  1881. value. If it is not, then an
  1882. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1883. </summary>
  1884. <param name="arg1">The first value, expected to be less</param>
  1885. <param name="arg2">The second value, expected to be greater</param>
  1886. <param name="message">The message to display in case of failure</param>
  1887. </member>
  1888. <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
  1889. <summary>
  1890. Verifies that the first value is less than the second
  1891. value. If it is not, then an
  1892. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1893. </summary>
  1894. <param name="arg1">The first value, expected to be less</param>
  1895. <param name="arg2">The second value, expected to be greater</param>
  1896. </member>
  1897. <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
  1898. <summary>
  1899. Verifies that the first value is less than the second
  1900. value. If it is not, then an
  1901. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1902. </summary>
  1903. <param name="arg1">The first value, expected to be less</param>
  1904. <param name="arg2">The second value, expected to be greater</param>
  1905. <param name="message">The message to display in case of failure</param>
  1906. <param name="args">Array of objects to be used in formatting the message</param>
  1907. </member>
  1908. <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
  1909. <summary>
  1910. Verifies that the first value is less than the second
  1911. value. If it is not, then an
  1912. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1913. </summary>
  1914. <param name="arg1">The first value, expected to be less</param>
  1915. <param name="arg2">The second value, expected to be greater</param>
  1916. <param name="message">The message to display in case of failure</param>
  1917. </member>
  1918. <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64)">
  1919. <summary>
  1920. Verifies that the first value is less than the second
  1921. value. If it is not, then an
  1922. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1923. </summary>
  1924. <param name="arg1">The first value, expected to be less</param>
  1925. <param name="arg2">The second value, expected to be greater</param>
  1926. </member>
  1927. <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String,System.Object[])">
  1928. <summary>
  1929. Verifies that the first value is less than the second
  1930. value. If it is not, then an
  1931. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1932. </summary>
  1933. <param name="arg1">The first value, expected to be less</param>
  1934. <param name="arg2">The second value, expected to be greater</param>
  1935. <param name="message">The message to display in case of failure</param>
  1936. <param name="args">Array of objects to be used in formatting the message</param>
  1937. </member>
  1938. <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String)">
  1939. <summary>
  1940. Verifies that the first value is less than the second
  1941. value. If it is not, then an
  1942. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1943. </summary>
  1944. <param name="arg1">The first value, expected to be less</param>
  1945. <param name="arg2">The second value, expected to be greater</param>
  1946. <param name="message">The message to display in case of failure</param>
  1947. </member>
  1948. <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64)">
  1949. <summary>
  1950. Verifies that the first value is less than the second
  1951. value. If it is not, then an
  1952. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1953. </summary>
  1954. <param name="arg1">The first value, expected to be less</param>
  1955. <param name="arg2">The second value, expected to be greater</param>
  1956. </member>
  1957. <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
  1958. <summary>
  1959. Verifies that the first value is less than the second
  1960. value. If it is not, then an
  1961. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1962. </summary>
  1963. <param name="arg1">The first value, expected to be less</param>
  1964. <param name="arg2">The second value, expected to be greater</param>
  1965. <param name="message">The message to display in case of failure</param>
  1966. <param name="args">Array of objects to be used in formatting the message</param>
  1967. </member>
  1968. <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
  1969. <summary>
  1970. Verifies that the first value is less than the second
  1971. value. If it is not, then an
  1972. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1973. </summary>
  1974. <param name="arg1">The first value, expected to be less</param>
  1975. <param name="arg2">The second value, expected to be greater</param>
  1976. <param name="message">The message to display in case of failure</param>
  1977. </member>
  1978. <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
  1979. <summary>
  1980. Verifies that the first value is less than the second
  1981. value. If it is not, then an
  1982. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1983. </summary>
  1984. <param name="arg1">The first value, expected to be less</param>
  1985. <param name="arg2">The second value, expected to be greater</param>
  1986. </member>
  1987. <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
  1988. <summary>
  1989. Verifies that the first value is less than the second
  1990. value. If it is not, then an
  1991. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1992. </summary>
  1993. <param name="arg1">The first value, expected to be less</param>
  1994. <param name="arg2">The second value, expected to be greater</param>
  1995. <param name="message">The message to display in case of failure</param>
  1996. <param name="args">Array of objects to be used in formatting the message</param>
  1997. </member>
  1998. <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
  1999. <summary>
  2000. Verifies that the first value is less than the second
  2001. value. If it is not, then an
  2002. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2003. </summary>
  2004. <param name="arg1">The first value, expected to be less</param>
  2005. <param name="arg2">The second value, expected to be greater</param>
  2006. <param name="message">The message to display in case of failure</param>
  2007. </member>
  2008. <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double)">
  2009. <summary>
  2010. Verifies that the first value is less than the second
  2011. value. If it is not, then an
  2012. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2013. </summary>
  2014. <param name="arg1">The first value, expected to be less</param>
  2015. <param name="arg2">The second value, expected to be greater</param>
  2016. </member>
  2017. <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
  2018. <summary>
  2019. Verifies that the first value is less than the second
  2020. value. If it is not, then an
  2021. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2022. </summary>
  2023. <param name="arg1">The first value, expected to be less</param>
  2024. <param name="arg2">The second value, expected to be greater</param>
  2025. <param name="message">The message to display in case of failure</param>
  2026. <param name="args">Array of objects to be used in formatting the message</param>
  2027. </member>
  2028. <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
  2029. <summary>
  2030. Verifies that the first value is less than the second
  2031. value. If it is not, then an
  2032. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2033. </summary>
  2034. <param name="arg1">The first value, expected to be less</param>
  2035. <param name="arg2">The second value, expected to be greater</param>
  2036. <param name="message">The message to display in case of failure</param>
  2037. </member>
  2038. <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single)">
  2039. <summary>
  2040. Verifies that the first value is less than the second
  2041. value. If it is not, then an
  2042. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2043. </summary>
  2044. <param name="arg1">The first value, expected to be less</param>
  2045. <param name="arg2">The second value, expected to be greater</param>
  2046. </member>
  2047. <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
  2048. <summary>
  2049. Verifies that the first value is less than the second
  2050. value. If it is not, then an
  2051. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2052. </summary>
  2053. <param name="arg1">The first value, expected to be less</param>
  2054. <param name="arg2">The second value, expected to be greater</param>
  2055. <param name="message">The message to display in case of failure</param>
  2056. <param name="args">Array of objects to be used in formatting the message</param>
  2057. </member>
  2058. <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
  2059. <summary>
  2060. Verifies that the first value is less than the second
  2061. value. If it is not, then an
  2062. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2063. </summary>
  2064. <param name="arg1">The first value, expected to be less</param>
  2065. <param name="arg2">The second value, expected to be greater</param>
  2066. <param name="message">The message to display in case of failure</param>
  2067. </member>
  2068. <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
  2069. <summary>
  2070. Verifies that the first value is less than the second
  2071. value. If it is not, then an
  2072. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2073. </summary>
  2074. <param name="arg1">The first value, expected to be less</param>
  2075. <param name="arg2">The second value, expected to be greater</param>
  2076. </member>
  2077. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
  2078. <summary>
  2079. Verifies that the first value is greater than or equal tothe second
  2080. value. If it is not, then an
  2081. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2082. </summary>
  2083. <param name="arg1">The first value, expected to be greater</param>
  2084. <param name="arg2">The second value, expected to be less</param>
  2085. <param name="message">The message to display in case of failure</param>
  2086. <param name="args">Array of objects to be used in formatting the message</param>
  2087. </member>
  2088. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String)">
  2089. <summary>
  2090. Verifies that the first value is greater than or equal tothe second
  2091. value. If it is not, then an
  2092. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2093. </summary>
  2094. <param name="arg1">The first value, expected to be greater</param>
  2095. <param name="arg2">The second value, expected to be less</param>
  2096. <param name="message">The message to display in case of failure</param>
  2097. </member>
  2098. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32)">
  2099. <summary>
  2100. Verifies that the first value is greater than or equal tothe second
  2101. value. If it is not, then an
  2102. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2103. </summary>
  2104. <param name="arg1">The first value, expected to be greater</param>
  2105. <param name="arg2">The second value, expected to be less</param>
  2106. </member>
  2107. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  2108. <summary>
  2109. Verifies that the first value is greater than or equal tothe second
  2110. value. If it is not, then an
  2111. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2112. </summary>
  2113. <param name="arg1">The first value, expected to be greater</param>
  2114. <param name="arg2">The second value, expected to be less</param>
  2115. <param name="message">The message to display in case of failure</param>
  2116. <param name="args">Array of objects to be used in formatting the message</param>
  2117. </member>
  2118. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String)">
  2119. <summary>
  2120. Verifies that the first value is greater than or equal tothe second
  2121. value. If it is not, then an
  2122. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2123. </summary>
  2124. <param name="arg1">The first value, expected to be greater</param>
  2125. <param name="arg2">The second value, expected to be less</param>
  2126. <param name="message">The message to display in case of failure</param>
  2127. </member>
  2128. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32)">
  2129. <summary>
  2130. Verifies that the first value is greater than or equal tothe second
  2131. value. If it is not, then an
  2132. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2133. </summary>
  2134. <param name="arg1">The first value, expected to be greater</param>
  2135. <param name="arg2">The second value, expected to be less</param>
  2136. </member>
  2137. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
  2138. <summary>
  2139. Verifies that the first value is greater than or equal tothe second
  2140. value. If it is not, then an
  2141. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2142. </summary>
  2143. <param name="arg1">The first value, expected to be greater</param>
  2144. <param name="arg2">The second value, expected to be less</param>
  2145. <param name="message">The message to display in case of failure</param>
  2146. <param name="args">Array of objects to be used in formatting the message</param>
  2147. </member>
  2148. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String)">
  2149. <summary>
  2150. Verifies that the first value is greater than or equal tothe second
  2151. value. If it is not, then an
  2152. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2153. </summary>
  2154. <param name="arg1">The first value, expected to be greater</param>
  2155. <param name="arg2">The second value, expected to be less</param>
  2156. <param name="message">The message to display in case of failure</param>
  2157. </member>
  2158. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64)">
  2159. <summary>
  2160. Verifies that the first value is greater than or equal tothe second
  2161. value. If it is not, then an
  2162. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2163. </summary>
  2164. <param name="arg1">The first value, expected to be greater</param>
  2165. <param name="arg2">The second value, expected to be less</param>
  2166. </member>
  2167. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  2168. <summary>
  2169. Verifies that the first value is greater than or equal tothe second
  2170. value. If it is not, then an
  2171. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2172. </summary>
  2173. <param name="arg1">The first value, expected to be greater</param>
  2174. <param name="arg2">The second value, expected to be less</param>
  2175. <param name="message">The message to display in case of failure</param>
  2176. <param name="args">Array of objects to be used in formatting the message</param>
  2177. </member>
  2178. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String)">
  2179. <summary>
  2180. Verifies that the first value is greater than or equal tothe second
  2181. value. If it is not, then an
  2182. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2183. </summary>
  2184. <param name="arg1">The first value, expected to be greater</param>
  2185. <param name="arg2">The second value, expected to be less</param>
  2186. <param name="message">The message to display in case of failure</param>
  2187. </member>
  2188. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64)">
  2189. <summary>
  2190. Verifies that the first value is greater than or equal tothe second
  2191. value. If it is not, then an
  2192. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2193. </summary>
  2194. <param name="arg1">The first value, expected to be greater</param>
  2195. <param name="arg2">The second value, expected to be less</param>
  2196. </member>
  2197. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  2198. <summary>
  2199. Verifies that the first value is greater than or equal tothe second
  2200. value. If it is not, then an
  2201. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2202. </summary>
  2203. <param name="arg1">The first value, expected to be greater</param>
  2204. <param name="arg2">The second value, expected to be less</param>
  2205. <param name="message">The message to display in case of failure</param>
  2206. <param name="args">Array of objects to be used in formatting the message</param>
  2207. </member>
  2208. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String)">
  2209. <summary>
  2210. Verifies that the first value is greater than or equal tothe second
  2211. value. If it is not, then an
  2212. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2213. </summary>
  2214. <param name="arg1">The first value, expected to be greater</param>
  2215. <param name="arg2">The second value, expected to be less</param>
  2216. <param name="message">The message to display in case of failure</param>
  2217. </member>
  2218. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal)">
  2219. <summary>
  2220. Verifies that the first value is greater than or equal tothe second
  2221. value. If it is not, then an
  2222. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2223. </summary>
  2224. <param name="arg1">The first value, expected to be greater</param>
  2225. <param name="arg2">The second value, expected to be less</param>
  2226. </member>
  2227. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String,System.Object[])">
  2228. <summary>
  2229. Verifies that the first value is greater than or equal tothe second
  2230. value. If it is not, then an
  2231. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2232. </summary>
  2233. <param name="arg1">The first value, expected to be greater</param>
  2234. <param name="arg2">The second value, expected to be less</param>
  2235. <param name="message">The message to display in case of failure</param>
  2236. <param name="args">Array of objects to be used in formatting the message</param>
  2237. </member>
  2238. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String)">
  2239. <summary>
  2240. Verifies that the first value is greater than or equal tothe second
  2241. value. If it is not, then an
  2242. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2243. </summary>
  2244. <param name="arg1">The first value, expected to be greater</param>
  2245. <param name="arg2">The second value, expected to be less</param>
  2246. <param name="message">The message to display in case of failure</param>
  2247. </member>
  2248. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double)">
  2249. <summary>
  2250. Verifies that the first value is greater than or equal tothe second
  2251. value. If it is not, then an
  2252. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2253. </summary>
  2254. <param name="arg1">The first value, expected to be greater</param>
  2255. <param name="arg2">The second value, expected to be less</param>
  2256. </member>
  2257. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String,System.Object[])">
  2258. <summary>
  2259. Verifies that the first value is greater than or equal tothe second
  2260. value. If it is not, then an
  2261. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2262. </summary>
  2263. <param name="arg1">The first value, expected to be greater</param>
  2264. <param name="arg2">The second value, expected to be less</param>
  2265. <param name="message">The message to display in case of failure</param>
  2266. <param name="args">Array of objects to be used in formatting the message</param>
  2267. </member>
  2268. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String)">
  2269. <summary>
  2270. Verifies that the first value is greater than or equal tothe second
  2271. value. If it is not, then an
  2272. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2273. </summary>
  2274. <param name="arg1">The first value, expected to be greater</param>
  2275. <param name="arg2">The second value, expected to be less</param>
  2276. <param name="message">The message to display in case of failure</param>
  2277. </member>
  2278. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single)">
  2279. <summary>
  2280. Verifies that the first value is greater than or equal tothe second
  2281. value. If it is not, then an
  2282. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2283. </summary>
  2284. <param name="arg1">The first value, expected to be greater</param>
  2285. <param name="arg2">The second value, expected to be less</param>
  2286. </member>
  2287. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
  2288. <summary>
  2289. Verifies that the first value is greater than or equal tothe second
  2290. value. If it is not, then an
  2291. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2292. </summary>
  2293. <param name="arg1">The first value, expected to be greater</param>
  2294. <param name="arg2">The second value, expected to be less</param>
  2295. <param name="message">The message to display in case of failure</param>
  2296. <param name="args">Array of objects to be used in formatting the message</param>
  2297. </member>
  2298. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String)">
  2299. <summary>
  2300. Verifies that the first value is greater than or equal tothe second
  2301. value. If it is not, then an
  2302. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2303. </summary>
  2304. <param name="arg1">The first value, expected to be greater</param>
  2305. <param name="arg2">The second value, expected to be less</param>
  2306. <param name="message">The message to display in case of failure</param>
  2307. </member>
  2308. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable)">
  2309. <summary>
  2310. Verifies that the first value is greater than or equal tothe second
  2311. value. If it is not, then an
  2312. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2313. </summary>
  2314. <param name="arg1">The first value, expected to be greater</param>
  2315. <param name="arg2">The second value, expected to be less</param>
  2316. </member>
  2317. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
  2318. <summary>
  2319. Verifies that the first value is less than or equal to the second
  2320. value. If it is not, then an
  2321. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2322. </summary>
  2323. <param name="arg1">The first value, expected to be less</param>
  2324. <param name="arg2">The second value, expected to be greater</param>
  2325. <param name="message">The message to display in case of failure</param>
  2326. <param name="args">Array of objects to be used in formatting the message</param>
  2327. </member>
  2328. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String)">
  2329. <summary>
  2330. Verifies that the first value is less than or equal to the second
  2331. value. If it is not, then an
  2332. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2333. </summary>
  2334. <param name="arg1">The first value, expected to be less</param>
  2335. <param name="arg2">The second value, expected to be greater</param>
  2336. <param name="message">The message to display in case of failure</param>
  2337. </member>
  2338. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32)">
  2339. <summary>
  2340. Verifies that the first value is less than or equal to the second
  2341. value. If it is not, then an
  2342. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2343. </summary>
  2344. <param name="arg1">The first value, expected to be less</param>
  2345. <param name="arg2">The second value, expected to be greater</param>
  2346. </member>
  2347. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  2348. <summary>
  2349. Verifies that the first value is less than or equal to the second
  2350. value. If it is not, then an
  2351. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2352. </summary>
  2353. <param name="arg1">The first value, expected to be less</param>
  2354. <param name="arg2">The second value, expected to be greater</param>
  2355. <param name="message">The message to display in case of failure</param>
  2356. <param name="args">Array of objects to be used in formatting the message</param>
  2357. </member>
  2358. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String)">
  2359. <summary>
  2360. Verifies that the first value is less than or equal to the second
  2361. value. If it is not, then an
  2362. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2363. </summary>
  2364. <param name="arg1">The first value, expected to be less</param>
  2365. <param name="arg2">The second value, expected to be greater</param>
  2366. <param name="message">The message to display in case of failure</param>
  2367. </member>
  2368. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32)">
  2369. <summary>
  2370. Verifies that the first value is less than or equal to the second
  2371. value. If it is not, then an
  2372. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2373. </summary>
  2374. <param name="arg1">The first value, expected to be less</param>
  2375. <param name="arg2">The second value, expected to be greater</param>
  2376. </member>
  2377. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
  2378. <summary>
  2379. Verifies that the first value is less than or equal to the second
  2380. value. If it is not, then an
  2381. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2382. </summary>
  2383. <param name="arg1">The first value, expected to be less</param>
  2384. <param name="arg2">The second value, expected to be greater</param>
  2385. <param name="message">The message to display in case of failure</param>
  2386. <param name="args">Array of objects to be used in formatting the message</param>
  2387. </member>
  2388. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String)">
  2389. <summary>
  2390. Verifies that the first value is less than or equal to the second
  2391. value. If it is not, then an
  2392. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2393. </summary>
  2394. <param name="arg1">The first value, expected to be less</param>
  2395. <param name="arg2">The second value, expected to be greater</param>
  2396. <param name="message">The message to display in case of failure</param>
  2397. </member>
  2398. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64)">
  2399. <summary>
  2400. Verifies that the first value is less than or equal to the second
  2401. value. If it is not, then an
  2402. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2403. </summary>
  2404. <param name="arg1">The first value, expected to be less</param>
  2405. <param name="arg2">The second value, expected to be greater</param>
  2406. </member>
  2407. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  2408. <summary>
  2409. Verifies that the first value is less than or equal to the second
  2410. value. If it is not, then an
  2411. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2412. </summary>
  2413. <param name="arg1">The first value, expected to be less</param>
  2414. <param name="arg2">The second value, expected to be greater</param>
  2415. <param name="message">The message to display in case of failure</param>
  2416. <param name="args">Array of objects to be used in formatting the message</param>
  2417. </member>
  2418. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String)">
  2419. <summary>
  2420. Verifies that the first value is less than or equal to the second
  2421. value. If it is not, then an
  2422. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2423. </summary>
  2424. <param name="arg1">The first value, expected to be less</param>
  2425. <param name="arg2">The second value, expected to be greater</param>
  2426. <param name="message">The message to display in case of failure</param>
  2427. </member>
  2428. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64)">
  2429. <summary>
  2430. Verifies that the first value is less than or equal to the second
  2431. value. If it is not, then an
  2432. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2433. </summary>
  2434. <param name="arg1">The first value, expected to be less</param>
  2435. <param name="arg2">The second value, expected to be greater</param>
  2436. </member>
  2437. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  2438. <summary>
  2439. Verifies that the first value is less than or equal to the second
  2440. value. If it is not, then an
  2441. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2442. </summary>
  2443. <param name="arg1">The first value, expected to be less</param>
  2444. <param name="arg2">The second value, expected to be greater</param>
  2445. <param name="message">The message to display in case of failure</param>
  2446. <param name="args">Array of objects to be used in formatting the message</param>
  2447. </member>
  2448. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String)">
  2449. <summary>
  2450. Verifies that the first value is less than or equal to the second
  2451. value. If it is not, then an
  2452. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2453. </summary>
  2454. <param name="arg1">The first value, expected to be less</param>
  2455. <param name="arg2">The second value, expected to be greater</param>
  2456. <param name="message">The message to display in case of failure</param>
  2457. </member>
  2458. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal)">
  2459. <summary>
  2460. Verifies that the first value is less than or equal to the second
  2461. value. If it is not, then an
  2462. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2463. </summary>
  2464. <param name="arg1">The first value, expected to be less</param>
  2465. <param name="arg2">The second value, expected to be greater</param>
  2466. </member>
  2467. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String,System.Object[])">
  2468. <summary>
  2469. Verifies that the first value is less than or equal to the second
  2470. value. If it is not, then an
  2471. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2472. </summary>
  2473. <param name="arg1">The first value, expected to be less</param>
  2474. <param name="arg2">The second value, expected to be greater</param>
  2475. <param name="message">The message to display in case of failure</param>
  2476. <param name="args">Array of objects to be used in formatting the message</param>
  2477. </member>
  2478. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String)">
  2479. <summary>
  2480. Verifies that the first value is less than or equal to the second
  2481. value. If it is not, then an
  2482. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2483. </summary>
  2484. <param name="arg1">The first value, expected to be less</param>
  2485. <param name="arg2">The second value, expected to be greater</param>
  2486. <param name="message">The message to display in case of failure</param>
  2487. </member>
  2488. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double)">
  2489. <summary>
  2490. Verifies that the first value is less than or equal to the second
  2491. value. If it is not, then an
  2492. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2493. </summary>
  2494. <param name="arg1">The first value, expected to be less</param>
  2495. <param name="arg2">The second value, expected to be greater</param>
  2496. </member>
  2497. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String,System.Object[])">
  2498. <summary>
  2499. Verifies that the first value is less than or equal to the second
  2500. value. If it is not, then an
  2501. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2502. </summary>
  2503. <param name="arg1">The first value, expected to be less</param>
  2504. <param name="arg2">The second value, expected to be greater</param>
  2505. <param name="message">The message to display in case of failure</param>
  2506. <param name="args">Array of objects to be used in formatting the message</param>
  2507. </member>
  2508. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String)">
  2509. <summary>
  2510. Verifies that the first value is less than or equal to the second
  2511. value. If it is not, then an
  2512. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2513. </summary>
  2514. <param name="arg1">The first value, expected to be less</param>
  2515. <param name="arg2">The second value, expected to be greater</param>
  2516. <param name="message">The message to display in case of failure</param>
  2517. </member>
  2518. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single)">
  2519. <summary>
  2520. Verifies that the first value is less than or equal to the second
  2521. value. If it is not, then an
  2522. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2523. </summary>
  2524. <param name="arg1">The first value, expected to be less</param>
  2525. <param name="arg2">The second value, expected to be greater</param>
  2526. </member>
  2527. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
  2528. <summary>
  2529. Verifies that the first value is less than or equal to the second
  2530. value. If it is not, then an
  2531. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2532. </summary>
  2533. <param name="arg1">The first value, expected to be less</param>
  2534. <param name="arg2">The second value, expected to be greater</param>
  2535. <param name="message">The message to display in case of failure</param>
  2536. <param name="args">Array of objects to be used in formatting the message</param>
  2537. </member>
  2538. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String)">
  2539. <summary>
  2540. Verifies that the first value is less than or equal to the second
  2541. value. If it is not, then an
  2542. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2543. </summary>
  2544. <param name="arg1">The first value, expected to be less</param>
  2545. <param name="arg2">The second value, expected to be greater</param>
  2546. <param name="message">The message to display in case of failure</param>
  2547. </member>
  2548. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable)">
  2549. <summary>
  2550. Verifies that the first value is less than or equal to the second
  2551. value. If it is not, then an
  2552. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2553. </summary>
  2554. <param name="arg1">The first value, expected to be less</param>
  2555. <param name="arg2">The second value, expected to be greater</param>
  2556. </member>
  2557. <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String,System.Object[])">
  2558. <summary>
  2559. Asserts that an object is contained in a list.
  2560. </summary>
  2561. <param name="expected">The expected object</param>
  2562. <param name="actual">The list to be examined</param>
  2563. <param name="message">The message to display in case of failure</param>
  2564. <param name="args">Array of objects to be used in formatting the message</param>
  2565. </member>
  2566. <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String)">
  2567. <summary>
  2568. Asserts that an object is contained in a list.
  2569. </summary>
  2570. <param name="expected">The expected object</param>
  2571. <param name="actual">The list to be examined</param>
  2572. <param name="message">The message to display in case of failure</param>
  2573. </member>
  2574. <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection)">
  2575. <summary>
  2576. Asserts that an object is contained in a list.
  2577. </summary>
  2578. <param name="expected">The expected object</param>
  2579. <param name="actual">The list to be examined</param>
  2580. </member>
  2581. <member name="M:NUnit.Framework.Assert.AssertDoublesAreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
  2582. <summary>
  2583. Helper for Assert.AreEqual(double expected, double actual, ...)
  2584. allowing code generation to work consistently.
  2585. </summary>
  2586. <param name="expected">The expected value</param>
  2587. <param name="actual">The actual value</param>
  2588. <param name="delta">The maximum acceptable difference between the
  2589. the expected and the actual</param>
  2590. <param name="message">The message to display in case of failure</param>
  2591. <param name="args">Array of objects to be used in formatting the message</param>
  2592. </member>
  2593. <member name="P:NUnit.Framework.Assert.Counter">
  2594. <summary>
  2595. Gets the number of assertions executed so far and
  2596. resets the counter to zero.
  2597. </summary>
  2598. </member>
  2599. <member name="T:NUnit.Framework.AssertionHelper">
  2600. <summary>
  2601. AssertionHelper is an optional base class for user tests,
  2602. allowing the use of shorter names for constraints and
  2603. asserts and avoiding conflict with the definition of
  2604. <see cref="T:NUnit.Framework.Is"/>, from which it inherits much of its
  2605. behavior, in certain mock object frameworks.
  2606. </summary>
  2607. </member>
  2608. <member name="T:NUnit.Framework.Constraints.ConstraintFactory">
  2609. <summary>
  2610. Helper class with properties and methods that supply
  2611. a number of constraints used in Asserts.
  2612. </summary>
  2613. </member>
  2614. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Exactly(System.Int32)">
  2615. <summary>
  2616. Returns a ConstraintExpression, which will apply
  2617. the following constraint to all members of a collection,
  2618. succeeding only if a specified number of them succeed.
  2619. </summary>
  2620. </member>
  2621. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Property(System.String)">
  2622. <summary>
  2623. Returns a new PropertyConstraintExpression, which will either
  2624. test for the existence of the named property on the object
  2625. being tested or apply any following constraint to that property.
  2626. </summary>
  2627. </member>
  2628. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Attribute(System.Type)">
  2629. <summary>
  2630. Returns a new AttributeConstraint checking for the
  2631. presence of a particular attribute on an object.
  2632. </summary>
  2633. </member>
  2634. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Attribute``1">
  2635. <summary>
  2636. Returns a new AttributeConstraint checking for the
  2637. presence of a particular attribute on an object.
  2638. </summary>
  2639. </member>
  2640. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EqualTo(System.Object)">
  2641. <summary>
  2642. Returns a constraint that tests two items for equality
  2643. </summary>
  2644. </member>
  2645. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SameAs(System.Object)">
  2646. <summary>
  2647. Returns a constraint that tests that two references are the same object
  2648. </summary>
  2649. </member>
  2650. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThan(System.Object)">
  2651. <summary>
  2652. Returns a constraint that tests whether the
  2653. actual value is greater than the suppled argument
  2654. </summary>
  2655. </member>
  2656. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThanOrEqualTo(System.Object)">
  2657. <summary>
  2658. Returns a constraint that tests whether the
  2659. actual value is greater than or equal to the suppled argument
  2660. </summary>
  2661. </member>
  2662. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AtLeast(System.Object)">
  2663. <summary>
  2664. Returns a constraint that tests whether the
  2665. actual value is greater than or equal to the suppled argument
  2666. </summary>
  2667. </member>
  2668. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.LessThan(System.Object)">
  2669. <summary>
  2670. Returns a constraint that tests whether the
  2671. actual value is less than the suppled argument
  2672. </summary>
  2673. </member>
  2674. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.LessThanOrEqualTo(System.Object)">
  2675. <summary>
  2676. Returns a constraint that tests whether the
  2677. actual value is less than or equal to the suppled argument
  2678. </summary>
  2679. </member>
  2680. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AtMost(System.Object)">
  2681. <summary>
  2682. Returns a constraint that tests whether the
  2683. actual value is less than or equal to the suppled argument
  2684. </summary>
  2685. </member>
  2686. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf(System.Type)">
  2687. <summary>
  2688. Returns a constraint that tests whether the actual
  2689. value is of the exact type supplied as an argument.
  2690. </summary>
  2691. </member>
  2692. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf``1">
  2693. <summary>
  2694. Returns a constraint that tests whether the actual
  2695. value is of the exact type supplied as an argument.
  2696. </summary>
  2697. </member>
  2698. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf(System.Type)">
  2699. <summary>
  2700. Returns a constraint that tests whether the actual value
  2701. is of the type supplied as an argument or a derived type.
  2702. </summary>
  2703. </member>
  2704. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf``1">
  2705. <summary>
  2706. Returns a constraint that tests whether the actual value
  2707. is of the type supplied as an argument or a derived type.
  2708. </summary>
  2709. </member>
  2710. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType(System.Type)">
  2711. <summary>
  2712. Returns a constraint that tests whether the actual value
  2713. is of the type supplied as an argument or a derived type.
  2714. </summary>
  2715. </member>
  2716. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType``1">
  2717. <summary>
  2718. Returns a constraint that tests whether the actual value
  2719. is of the type supplied as an argument or a derived type.
  2720. </summary>
  2721. </member>
  2722. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom(System.Type)">
  2723. <summary>
  2724. Returns a constraint that tests whether the actual value
  2725. is assignable from the type supplied as an argument.
  2726. </summary>
  2727. </member>
  2728. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom``1">
  2729. <summary>
  2730. Returns a constraint that tests whether the actual value
  2731. is assignable from the type supplied as an argument.
  2732. </summary>
  2733. </member>
  2734. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo(System.Type)">
  2735. <summary>
  2736. Returns a constraint that tests whether the actual value
  2737. is assignable from the type supplied as an argument.
  2738. </summary>
  2739. </member>
  2740. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo``1">
  2741. <summary>
  2742. Returns a constraint that tests whether the actual value
  2743. is assignable from the type supplied as an argument.
  2744. </summary>
  2745. </member>
  2746. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EquivalentTo(System.Collections.IEnumerable)">
  2747. <summary>
  2748. Returns a constraint that tests whether the actual value
  2749. is a collection containing the same elements as the
  2750. collection supplied as an argument.
  2751. </summary>
  2752. </member>
  2753. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SubsetOf(System.Collections.IEnumerable)">
  2754. <summary>
  2755. Returns a constraint that tests whether the actual value
  2756. is a subset of the collection supplied as an argument.
  2757. </summary>
  2758. </member>
  2759. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Member(System.Object)">
  2760. <summary>
  2761. Returns a new CollectionContainsConstraint checking for the
  2762. presence of a particular object in the collection.
  2763. </summary>
  2764. </member>
  2765. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.Object)">
  2766. <summary>
  2767. Returns a new CollectionContainsConstraint checking for the
  2768. presence of a particular object in the collection.
  2769. </summary>
  2770. </member>
  2771. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.String)">
  2772. <summary>
  2773. Returns a new ContainsConstraint. This constraint
  2774. will, in turn, make use of the appropriate second-level
  2775. constraint, depending on the type of the actual argument.
  2776. This overload is only used if the item sought is a string,
  2777. since any other type implies that we are looking for a
  2778. collection member.
  2779. </summary>
  2780. </member>
  2781. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringContaining(System.String)">
  2782. <summary>
  2783. Returns a constraint that succeeds if the actual
  2784. value contains the substring supplied as an argument.
  2785. </summary>
  2786. </member>
  2787. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.ContainsSubstring(System.String)">
  2788. <summary>
  2789. Returns a constraint that succeeds if the actual
  2790. value contains the substring supplied as an argument.
  2791. </summary>
  2792. </member>
  2793. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotContain(System.String)">
  2794. <summary>
  2795. Returns a constraint that fails if the actual
  2796. value contains the substring supplied as an argument.
  2797. </summary>
  2798. </member>
  2799. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StartsWith(System.String)">
  2800. <summary>
  2801. Returns a constraint that succeeds if the actual
  2802. value starts with the substring supplied as an argument.
  2803. </summary>
  2804. </member>
  2805. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringStarting(System.String)">
  2806. <summary>
  2807. Returns a constraint that succeeds if the actual
  2808. value starts with the substring supplied as an argument.
  2809. </summary>
  2810. </member>
  2811. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotStartWith(System.String)">
  2812. <summary>
  2813. Returns a constraint that fails if the actual
  2814. value starts with the substring supplied as an argument.
  2815. </summary>
  2816. </member>
  2817. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EndsWith(System.String)">
  2818. <summary>
  2819. Returns a constraint that succeeds if the actual
  2820. value ends with the substring supplied as an argument.
  2821. </summary>
  2822. </member>
  2823. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringEnding(System.String)">
  2824. <summary>
  2825. Returns a constraint that succeeds if the actual
  2826. value ends with the substring supplied as an argument.
  2827. </summary>
  2828. </member>
  2829. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotEndWith(System.String)">
  2830. <summary>
  2831. Returns a constraint that fails if the actual
  2832. value ends with the substring supplied as an argument.
  2833. </summary>
  2834. </member>
  2835. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Matches(System.String)">
  2836. <summary>
  2837. Returns a constraint that succeeds if the actual
  2838. value matches the regular expression supplied as an argument.
  2839. </summary>
  2840. </member>
  2841. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringMatching(System.String)">
  2842. <summary>
  2843. Returns a constraint that succeeds if the actual
  2844. value matches the regular expression supplied as an argument.
  2845. </summary>
  2846. </member>
  2847. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotMatch(System.String)">
  2848. <summary>
  2849. Returns a constraint that fails if the actual
  2850. value matches the pattern supplied as an argument.
  2851. </summary>
  2852. </member>
  2853. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SamePath(System.String)">
  2854. <summary>
  2855. Returns a constraint that tests whether the path provided
  2856. is the same as an expected path after canonicalization.
  2857. </summary>
  2858. </member>
  2859. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SubPath(System.String)">
  2860. <summary>
  2861. Returns a constraint that tests whether the path provided
  2862. is the same path or under an expected path after canonicalization.
  2863. </summary>
  2864. </member>
  2865. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SamePathOrUnder(System.String)">
  2866. <summary>
  2867. Returns a constraint that tests whether the path provided
  2868. is the same path or under an expected path after canonicalization.
  2869. </summary>
  2870. </member>
  2871. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InRange``1(``0,``0)">
  2872. <summary>
  2873. Returns a constraint that tests whether the actual value falls
  2874. within a specified range.
  2875. </summary>
  2876. </member>
  2877. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Not">
  2878. <summary>
  2879. Returns a ConstraintExpression that negates any
  2880. following constraint.
  2881. </summary>
  2882. </member>
  2883. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.No">
  2884. <summary>
  2885. Returns a ConstraintExpression that negates any
  2886. following constraint.
  2887. </summary>
  2888. </member>
  2889. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.All">
  2890. <summary>
  2891. Returns a ConstraintExpression, which will apply
  2892. the following constraint to all members of a collection,
  2893. succeeding if all of them succeed.
  2894. </summary>
  2895. </member>
  2896. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Some">
  2897. <summary>
  2898. Returns a ConstraintExpression, which will apply
  2899. the following constraint to all members of a collection,
  2900. succeeding if at least one of them succeeds.
  2901. </summary>
  2902. </member>
  2903. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.None">
  2904. <summary>
  2905. Returns a ConstraintExpression, which will apply
  2906. the following constraint to all members of a collection,
  2907. succeeding if all of them fail.
  2908. </summary>
  2909. </member>
  2910. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Length">
  2911. <summary>
  2912. Returns a new ConstraintExpression, which will apply the following
  2913. constraint to the Length property of the object being tested.
  2914. </summary>
  2915. </member>
  2916. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Count">
  2917. <summary>
  2918. Returns a new ConstraintExpression, which will apply the following
  2919. constraint to the Count property of the object being tested.
  2920. </summary>
  2921. </member>
  2922. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Message">
  2923. <summary>
  2924. Returns a new ConstraintExpression, which will apply the following
  2925. constraint to the Message property of the object being tested.
  2926. </summary>
  2927. </member>
  2928. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.InnerException">
  2929. <summary>
  2930. Returns a new ConstraintExpression, which will apply the following
  2931. constraint to the InnerException property of the object being tested.
  2932. </summary>
  2933. </member>
  2934. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Null">
  2935. <summary>
  2936. Returns a constraint that tests for null
  2937. </summary>
  2938. </member>
  2939. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.True">
  2940. <summary>
  2941. Returns a constraint that tests for True
  2942. </summary>
  2943. </member>
  2944. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.False">
  2945. <summary>
  2946. Returns a constraint that tests for False
  2947. </summary>
  2948. </member>
  2949. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Positive">
  2950. <summary>
  2951. Returns a constraint that tests for a positive value
  2952. </summary>
  2953. </member>
  2954. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Negative">
  2955. <summary>
  2956. Returns a constraint that tests for a negative value
  2957. </summary>
  2958. </member>
  2959. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.NaN">
  2960. <summary>
  2961. Returns a constraint that tests for NaN
  2962. </summary>
  2963. </member>
  2964. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Empty">
  2965. <summary>
  2966. Returns a constraint that tests for empty
  2967. </summary>
  2968. </member>
  2969. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Unique">
  2970. <summary>
  2971. Returns a constraint that tests whether a collection
  2972. contains all unique items.
  2973. </summary>
  2974. </member>
  2975. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.BinarySerializable">
  2976. <summary>
  2977. Returns a constraint that tests whether an object graph is serializable in binary format.
  2978. </summary>
  2979. </member>
  2980. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.XmlSerializable">
  2981. <summary>
  2982. Returns a constraint that tests whether an object graph is serializable in xml format.
  2983. </summary>
  2984. </member>
  2985. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Ordered">
  2986. <summary>
  2987. Returns a constraint that tests whether a collection is ordered
  2988. </summary>
  2989. </member>
  2990. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
  2991. <summary>
  2992. Apply a constraint to an actual value, succeeding if the constraint
  2993. is satisfied and throwing an assertion exception on failure. Works
  2994. identically to Assert.That.
  2995. </summary>
  2996. <param name="actual">The actual value to test</param>
  2997. <param name="expression">A Constraint to be applied</param>
  2998. </member>
  2999. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  3000. <summary>
  3001. Apply a constraint to an actual value, succeeding if the constraint
  3002. is satisfied and throwing an assertion exception on failure. Works
  3003. identically to Assert.That.
  3004. </summary>
  3005. <param name="actual">The actual value to test</param>
  3006. <param name="expression">A Constraint to be applied</param>
  3007. <param name="message">The message to be displayed in case of failure</param>
  3008. </member>
  3009. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  3010. <summary>
  3011. Apply a constraint to an actual value, succeeding if the constraint
  3012. is satisfied and throwing an assertion exception on failure. Works
  3013. identically to Assert.That.
  3014. </summary>
  3015. <param name="actual">The actual value to test</param>
  3016. <param name="expression">A Constraint to be applied</param>
  3017. <param name="message">The message to be displayed in case of failure</param>
  3018. <param name="args">Arguments to use in formatting the message</param>
  3019. </member>
  3020. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String,System.Object[])">
  3021. <summary>
  3022. Asserts that a condition is true. If the condition is false the method throws
  3023. an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to
  3024. <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])"/>.
  3025. </summary>
  3026. <param name="condition">The evaluated condition</param>
  3027. <param name="message">The message to display if the condition is false</param>
  3028. <param name="args">Arguments to be used in formatting the message</param>
  3029. </member>
  3030. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String)">
  3031. <summary>
  3032. Asserts that a condition is true. If the condition is false the method throws
  3033. an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to
  3034. <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String)"/>.
  3035. </summary>
  3036. <param name="condition">The evaluated condition</param>
  3037. <param name="message">The message to display if the condition is false</param>
  3038. </member>
  3039. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean)">
  3040. <summary>
  3041. Asserts that a condition is true. If the condition is false the method throws
  3042. an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to <see cref="M:NUnit.Framework.Assert.That(System.Boolean)"/>.
  3043. </summary>
  3044. <param name="condition">The evaluated condition</param>
  3045. </member>
  3046. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint)">
  3047. <summary>
  3048. Apply a constraint to an actual value, succeeding if the constraint
  3049. is satisfied and throwing an assertion exception on failure.
  3050. </summary>
  3051. <param name="expr">A Constraint expression to be applied</param>
  3052. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  3053. </member>
  3054. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  3055. <summary>
  3056. Apply a constraint to an actual value, succeeding if the constraint
  3057. is satisfied and throwing an assertion exception on failure.
  3058. </summary>
  3059. <param name="expr">A Constraint expression to be applied</param>
  3060. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  3061. <param name="message">The message that will be displayed on failure</param>
  3062. </member>
  3063. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  3064. <summary>
  3065. Apply a constraint to an actual value, succeeding if the constraint
  3066. is satisfied and throwing an assertion exception on failure.
  3067. </summary>
  3068. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  3069. <param name="expr">A Constraint expression to be applied</param>
  3070. <param name="message">The message that will be displayed on failure</param>
  3071. <param name="args">Arguments to be used in formatting the message</param>
  3072. </member>
  3073. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
  3074. <summary>
  3075. Apply a constraint to a referenced value, succeeding if the constraint
  3076. is satisfied and throwing an assertion exception on failure.
  3077. </summary>
  3078. <param name="actual">The actual value to test</param>
  3079. <param name="expression">A Constraint to be applied</param>
  3080. </member>
  3081. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  3082. <summary>
  3083. Apply a constraint to a referenced value, succeeding if the constraint
  3084. is satisfied and throwing an assertion exception on failure.
  3085. </summary>
  3086. <param name="actual">The actual value to test</param>
  3087. <param name="expression">A Constraint to be applied</param>
  3088. <param name="message">The message that will be displayed on failure</param>
  3089. </member>
  3090. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  3091. <summary>
  3092. Apply a constraint to a referenced value, succeeding if the constraint
  3093. is satisfied and throwing an assertion exception on failure.
  3094. </summary>
  3095. <param name="actual">The actual value to test</param>
  3096. <param name="expression">A Constraint to be applied</param>
  3097. <param name="message">The message that will be displayed on failure</param>
  3098. <param name="args">Arguments to be used in formatting the message</param>
  3099. </member>
  3100. <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
  3101. <summary>
  3102. Asserts that the code represented by a delegate throws an exception
  3103. that satisfies the constraint provided.
  3104. </summary>
  3105. <param name="code">A TestDelegate to be executed</param>
  3106. <param name="constraint">A ThrowsConstraint used in the test</param>
  3107. </member>
  3108. <member name="M:NUnit.Framework.AssertionHelper.Map(System.Collections.ICollection)">
  3109. <summary>
  3110. Returns a ListMapper based on a collection.
  3111. </summary>
  3112. <param name="original">The original collection</param>
  3113. <returns></returns>
  3114. </member>
  3115. <member name="T:NUnit.Framework.Assume">
  3116. <summary>
  3117. Provides static methods to express the assumptions
  3118. that must be met for a test to give a meaningful
  3119. result. If an assumption is not met, the test
  3120. should produce an inconclusive result.
  3121. </summary>
  3122. </member>
  3123. <member name="M:NUnit.Framework.Assume.Equals(System.Object,System.Object)">
  3124. <summary>
  3125. The Equals method throws an AssertionException. This is done
  3126. to make sure there is no mistake by calling this function.
  3127. </summary>
  3128. <param name="a"></param>
  3129. <param name="b"></param>
  3130. </member>
  3131. <member name="M:NUnit.Framework.Assume.ReferenceEquals(System.Object,System.Object)">
  3132. <summary>
  3133. override the default ReferenceEquals to throw an AssertionException. This
  3134. implementation makes sure there is no mistake in calling this function
  3135. as part of Assert.
  3136. </summary>
  3137. <param name="a"></param>
  3138. <param name="b"></param>
  3139. </member>
  3140. <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
  3141. <summary>
  3142. Apply a constraint to an actual value, succeeding if the constraint
  3143. is satisfied and throwing an InconclusiveException on failure.
  3144. </summary>
  3145. <param name="expression">A Constraint expression to be applied</param>
  3146. <param name="actual">The actual value to test</param>
  3147. </member>
  3148. <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  3149. <summary>
  3150. Apply a constraint to an actual value, succeeding if the constraint
  3151. is satisfied and throwing an InconclusiveException on failure.
  3152. </summary>
  3153. <param name="expression">A Constraint expression to be applied</param>
  3154. <param name="actual">The actual value to test</param>
  3155. <param name="message">The message that will be displayed on failure</param>
  3156. </member>
  3157. <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  3158. <summary>
  3159. Apply a constraint to an actual value, succeeding if the constraint
  3160. is satisfied and throwing an InconclusiveException on failure.
  3161. </summary>
  3162. <param name="expression">A Constraint expression to be applied</param>
  3163. <param name="actual">The actual value to test</param>
  3164. <param name="message">The message that will be displayed on failure</param>
  3165. <param name="args">Arguments to be used in formatting the message</param>
  3166. </member>
  3167. <member name="M:NUnit.Framework.Assume.That(System.Boolean,System.String,System.Object[])">
  3168. <summary>
  3169. Asserts that a condition is true. If the condition is false the method throws
  3170. an <see cref="T:NUnit.Framework.InconclusiveException"/>.
  3171. </summary>
  3172. <param name="condition">The evaluated condition</param>
  3173. <param name="message">The message to display if the condition is false</param>
  3174. <param name="args">Arguments to be used in formatting the message</param>
  3175. </member>
  3176. <member name="M:NUnit.Framework.Assume.That(System.Boolean,System.String)">
  3177. <summary>
  3178. Asserts that a condition is true. If the condition is false the method throws
  3179. an <see cref="T:NUnit.Framework.InconclusiveException"/>.
  3180. </summary>
  3181. <param name="condition">The evaluated condition</param>
  3182. <param name="message">The message to display if the condition is false</param>
  3183. </member>
  3184. <member name="M:NUnit.Framework.Assume.That(System.Boolean)">
  3185. <summary>
  3186. Asserts that a condition is true. If the condition is false the
  3187. method throws an <see cref="T:NUnit.Framework.InconclusiveException"/>.
  3188. </summary>
  3189. <param name="condition">The evaluated condition</param>
  3190. </member>
  3191. <member name="M:NUnit.Framework.Assume.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint)">
  3192. <summary>
  3193. Apply a constraint to an actual value, succeeding if the constraint
  3194. is satisfied and throwing an InconclusiveException on failure.
  3195. </summary>
  3196. <param name="expr">A Constraint expression to be applied</param>
  3197. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  3198. </member>
  3199. <member name="M:NUnit.Framework.Assume.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  3200. <summary>
  3201. Apply a constraint to an actual value, succeeding if the constraint
  3202. is satisfied and throwing an InconclusiveException on failure.
  3203. </summary>
  3204. <param name="expr">A Constraint expression to be applied</param>
  3205. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  3206. <param name="message">The message that will be displayed on failure</param>
  3207. </member>
  3208. <member name="M:NUnit.Framework.Assume.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  3209. <summary>
  3210. Apply a constraint to an actual value, succeeding if the constraint
  3211. is satisfied and throwing an InconclusiveException on failure.
  3212. </summary>
  3213. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  3214. <param name="expr">A Constraint expression to be applied</param>
  3215. <param name="message">The message that will be displayed on failure</param>
  3216. <param name="args">Arguments to be used in formatting the message</param>
  3217. </member>
  3218. <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
  3219. <summary>
  3220. Apply a constraint to a referenced value, succeeding if the constraint
  3221. is satisfied and throwing an InconclusiveException on failure.
  3222. </summary>
  3223. <param name="expression">A Constraint expression to be applied</param>
  3224. <param name="actual">The actual value to test</param>
  3225. </member>
  3226. <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  3227. <summary>
  3228. Apply a constraint to a referenced value, succeeding if the constraint
  3229. is satisfied and throwing an InconclusiveException on failure.
  3230. </summary>
  3231. <param name="expression">A Constraint expression to be applied</param>
  3232. <param name="actual">The actual value to test</param>
  3233. <param name="message">The message that will be displayed on failure</param>
  3234. </member>
  3235. <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  3236. <summary>
  3237. Apply a constraint to a referenced value, succeeding if the constraint
  3238. is satisfied and throwing an InconclusiveException on failure.
  3239. </summary>
  3240. <param name="expression">A Constraint expression to be applied</param>
  3241. <param name="actual">The actual value to test</param>
  3242. <param name="message">The message that will be displayed on failure</param>
  3243. <param name="args">Arguments to be used in formatting the message</param>
  3244. </member>
  3245. <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
  3246. <summary>
  3247. Asserts that the code represented by a delegate throws an exception
  3248. that satisfies the constraint provided.
  3249. </summary>
  3250. <param name="code">A TestDelegate to be executed</param>
  3251. <param name="constraint">A ThrowsConstraint used in the test</param>
  3252. </member>
  3253. <member name="T:NUnit.Framework.ActionTargets">
  3254. <summary>
  3255. The different targets a test action attribute can be applied to
  3256. </summary>
  3257. </member>
  3258. <member name="F:NUnit.Framework.ActionTargets.Default">
  3259. <summary>
  3260. Default target, which is determined by where the action attribute is attached
  3261. </summary>
  3262. </member>
  3263. <member name="F:NUnit.Framework.ActionTargets.Test">
  3264. <summary>
  3265. Target a individual test case
  3266. </summary>
  3267. </member>
  3268. <member name="F:NUnit.Framework.ActionTargets.Suite">
  3269. <summary>
  3270. Target a suite of test cases
  3271. </summary>
  3272. </member>
  3273. <member name="M:NUnit.Framework.AsyncInvocationRegion.WaitForPendingOperationsToComplete(System.Object)">
  3274. <summary>
  3275. Waits for pending asynchronous operations to complete, if appropriate,
  3276. and returns a proper result of the invocation by unwrapping task results
  3277. </summary>
  3278. <param name="invocationResult">The raw result of the method invocation</param>
  3279. <returns>The unwrapped result, if necessary</returns>
  3280. </member>
  3281. <member name="T:NUnit.Framework.CategoryAttribute">
  3282. <summary>
  3283. Attribute used to apply a category to a test
  3284. </summary>
  3285. </member>
  3286. <member name="F:NUnit.Framework.CategoryAttribute.categoryName">
  3287. <summary>
  3288. The name of the category
  3289. </summary>
  3290. </member>
  3291. <member name="M:NUnit.Framework.CategoryAttribute.#ctor(System.String)">
  3292. <summary>
  3293. Construct attribute for a given category based on
  3294. a name. The name may not contain the characters ',',
  3295. '+', '-' or '!'. However, this is not checked in the
  3296. constructor since it would cause an error to arise at
  3297. as the test was loaded without giving a clear indication
  3298. of where the problem is located. The error is handled
  3299. in NUnitFramework.cs by marking the test as not
  3300. runnable.
  3301. </summary>
  3302. <param name="name">The name of the category</param>
  3303. </member>
  3304. <member name="M:NUnit.Framework.CategoryAttribute.#ctor">
  3305. <summary>
  3306. Protected constructor uses the Type name as the name
  3307. of the category.
  3308. </summary>
  3309. </member>
  3310. <member name="P:NUnit.Framework.CategoryAttribute.Name">
  3311. <summary>
  3312. The name of the category
  3313. </summary>
  3314. </member>
  3315. <member name="T:NUnit.Framework.DatapointAttribute">
  3316. <summary>
  3317. Used to mark a field for use as a datapoint when executing a theory
  3318. within the same fixture that requires an argument of the field's Type.
  3319. </summary>
  3320. </member>
  3321. <member name="T:NUnit.Framework.DatapointsAttribute">
  3322. <summary>
  3323. Used to mark an array as containing a set of datapoints to be used
  3324. executing a theory within the same fixture that requires an argument
  3325. of the Type of the array elements.
  3326. </summary>
  3327. </member>
  3328. <member name="T:NUnit.Framework.DescriptionAttribute">
  3329. <summary>
  3330. Attribute used to provide descriptive text about a
  3331. test case or fixture.
  3332. </summary>
  3333. </member>
  3334. <member name="M:NUnit.Framework.DescriptionAttribute.#ctor(System.String)">
  3335. <summary>
  3336. Construct the attribute
  3337. </summary>
  3338. <param name="description">Text describing the test</param>
  3339. </member>
  3340. <member name="P:NUnit.Framework.DescriptionAttribute.Description">
  3341. <summary>
  3342. Gets the test description
  3343. </summary>
  3344. </member>
  3345. <member name="T:NUnit.Framework.MessageMatch">
  3346. <summary>
  3347. Enumeration indicating how the expected message parameter is to be used
  3348. </summary>
  3349. </member>
  3350. <member name="F:NUnit.Framework.MessageMatch.Exact">
  3351. Expect an exact match
  3352. </member>
  3353. <member name="F:NUnit.Framework.MessageMatch.Contains">
  3354. Expect a message containing the parameter string
  3355. </member>
  3356. <member name="F:NUnit.Framework.MessageMatch.Regex">
  3357. Match the regular expression provided as a parameter
  3358. </member>
  3359. <member name="F:NUnit.Framework.MessageMatch.StartsWith">
  3360. Expect a message that starts with the parameter string
  3361. </member>
  3362. <member name="T:NUnit.Framework.ExpectedExceptionAttribute">
  3363. <summary>
  3364. ExpectedExceptionAttribute
  3365. </summary>
  3366. </member>
  3367. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor">
  3368. <summary>
  3369. Constructor for a non-specific exception
  3370. </summary>
  3371. </member>
  3372. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type)">
  3373. <summary>
  3374. Constructor for a given type of exception
  3375. </summary>
  3376. <param name="exceptionType">The type of the expected exception</param>
  3377. </member>
  3378. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.String)">
  3379. <summary>
  3380. Constructor for a given exception name
  3381. </summary>
  3382. <param name="exceptionName">The full name of the expected exception</param>
  3383. </member>
  3384. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedException">
  3385. <summary>
  3386. Gets or sets the expected exception type
  3387. </summary>
  3388. </member>
  3389. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedExceptionName">
  3390. <summary>
  3391. Gets or sets the full Type name of the expected exception
  3392. </summary>
  3393. </member>
  3394. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
  3395. <summary>
  3396. Gets or sets the expected message text
  3397. </summary>
  3398. </member>
  3399. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.UserMessage">
  3400. <summary>
  3401. Gets or sets the user message displayed in case of failure
  3402. </summary>
  3403. </member>
  3404. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.MatchType">
  3405. <summary>
  3406. Gets or sets the type of match to be performed on the expected message
  3407. </summary>
  3408. </member>
  3409. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.Handler">
  3410. <summary>
  3411. Gets the name of a method to be used as an exception handler
  3412. </summary>
  3413. </member>
  3414. <member name="T:NUnit.Framework.ExplicitAttribute">
  3415. <summary>
  3416. ExplicitAttribute marks a test or test fixture so that it will
  3417. only be run if explicitly executed from the gui or command line
  3418. or if it is included by use of a filter. The test will not be
  3419. run simply because an enclosing suite is run.
  3420. </summary>
  3421. </member>
  3422. <member name="M:NUnit.Framework.ExplicitAttribute.#ctor">
  3423. <summary>
  3424. Default constructor
  3425. </summary>
  3426. </member>
  3427. <member name="M:NUnit.Framework.ExplicitAttribute.#ctor(System.String)">
  3428. <summary>
  3429. Constructor with a reason
  3430. </summary>
  3431. <param name="reason">The reason test is marked explicit</param>
  3432. </member>
  3433. <member name="P:NUnit.Framework.ExplicitAttribute.Reason">
  3434. <summary>
  3435. The reason test is marked explicit
  3436. </summary>
  3437. </member>
  3438. <member name="T:NUnit.Framework.IgnoreAttribute">
  3439. <summary>
  3440. Attribute used to mark a test that is to be ignored.
  3441. Ignored tests result in a warning message when the
  3442. tests are run.
  3443. </summary>
  3444. </member>
  3445. <member name="M:NUnit.Framework.IgnoreAttribute.#ctor">
  3446. <summary>
  3447. Constructs the attribute without giving a reason
  3448. for ignoring the test.
  3449. </summary>
  3450. </member>
  3451. <member name="M:NUnit.Framework.IgnoreAttribute.#ctor(System.String)">
  3452. <summary>
  3453. Constructs the attribute giving a reason for ignoring the test
  3454. </summary>
  3455. <param name="reason">The reason for ignoring the test</param>
  3456. </member>
  3457. <member name="P:NUnit.Framework.IgnoreAttribute.Reason">
  3458. <summary>
  3459. The reason for ignoring a test
  3460. </summary>
  3461. </member>
  3462. <member name="T:NUnit.Framework.IncludeExcludeAttribute">
  3463. <summary>
  3464. Abstract base for Attributes that are used to include tests
  3465. in the test run based on environmental settings.
  3466. </summary>
  3467. </member>
  3468. <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor">
  3469. <summary>
  3470. Constructor with no included items specified, for use
  3471. with named property syntax.
  3472. </summary>
  3473. </member>
  3474. <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor(System.String)">
  3475. <summary>
  3476. Constructor taking one or more included items
  3477. </summary>
  3478. <param name="include">Comma-delimited list of included items</param>
  3479. </member>
  3480. <member name="P:NUnit.Framework.IncludeExcludeAttribute.Include">
  3481. <summary>
  3482. Name of the item that is needed in order for
  3483. a test to run. Multiple itemss may be given,
  3484. separated by a comma.
  3485. </summary>
  3486. </member>
  3487. <member name="P:NUnit.Framework.IncludeExcludeAttribute.Exclude">
  3488. <summary>
  3489. Name of the item to be excluded. Multiple items
  3490. may be given, separated by a comma.
  3491. </summary>
  3492. </member>
  3493. <member name="P:NUnit.Framework.IncludeExcludeAttribute.Reason">
  3494. <summary>
  3495. The reason for including or excluding the test
  3496. </summary>
  3497. </member>
  3498. <member name="T:NUnit.Framework.PlatformAttribute">
  3499. <summary>
  3500. PlatformAttribute is used to mark a test fixture or an
  3501. individual method as applying to a particular platform only.
  3502. </summary>
  3503. </member>
  3504. <member name="M:NUnit.Framework.PlatformAttribute.#ctor">
  3505. <summary>
  3506. Constructor with no platforms specified, for use
  3507. with named property syntax.
  3508. </summary>
  3509. </member>
  3510. <member name="M:NUnit.Framework.PlatformAttribute.#ctor(System.String)">
  3511. <summary>
  3512. Constructor taking one or more platforms
  3513. </summary>
  3514. <param name="platforms">Comma-deliminted list of platforms</param>
  3515. </member>
  3516. <member name="T:NUnit.Framework.CultureAttribute">
  3517. <summary>
  3518. CultureAttribute is used to mark a test fixture or an
  3519. individual method as applying to a particular Culture only.
  3520. </summary>
  3521. </member>
  3522. <member name="M:NUnit.Framework.CultureAttribute.#ctor">
  3523. <summary>
  3524. Constructor with no cultures specified, for use
  3525. with named property syntax.
  3526. </summary>
  3527. </member>
  3528. <member name="M:NUnit.Framework.CultureAttribute.#ctor(System.String)">
  3529. <summary>
  3530. Constructor taking one or more cultures
  3531. </summary>
  3532. <param name="cultures">Comma-deliminted list of cultures</param>
  3533. </member>
  3534. <member name="T:NUnit.Framework.CombinatorialAttribute">
  3535. <summary>
  3536. Marks a test to use a combinatorial join of any argument data
  3537. provided. NUnit will create a test case for every combination of
  3538. the arguments provided. This can result in a large number of test
  3539. cases and so should be used judiciously. This is the default join
  3540. type, so the attribute need not be used except as documentation.
  3541. </summary>
  3542. </member>
  3543. <member name="T:NUnit.Framework.PropertyAttribute">
  3544. <summary>
  3545. PropertyAttribute is used to attach information to a test as a name/value pair..
  3546. </summary>
  3547. </member>
  3548. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.String)">
  3549. <summary>
  3550. Construct a PropertyAttribute with a name and string value
  3551. </summary>
  3552. <param name="propertyName">The name of the property</param>
  3553. <param name="propertyValue">The property value</param>
  3554. </member>
  3555. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Int32)">
  3556. <summary>
  3557. Construct a PropertyAttribute with a name and int value
  3558. </summary>
  3559. <param name="propertyName">The name of the property</param>
  3560. <param name="propertyValue">The property value</param>
  3561. </member>
  3562. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Double)">
  3563. <summary>
  3564. Construct a PropertyAttribute with a name and double value
  3565. </summary>
  3566. <param name="propertyName">The name of the property</param>
  3567. <param name="propertyValue">The property value</param>
  3568. </member>
  3569. <member name="M:NUnit.Framework.PropertyAttribute.#ctor">
  3570. <summary>
  3571. Constructor for derived classes that set the
  3572. property dictionary directly.
  3573. </summary>
  3574. </member>
  3575. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.Object)">
  3576. <summary>
  3577. Constructor for use by derived classes that use the
  3578. name of the type as the property name. Derived classes
  3579. must ensure that the Type of the property value is
  3580. a standard type supported by the BCL. Any custom
  3581. types will cause a serialization Exception when
  3582. in the client.
  3583. </summary>
  3584. </member>
  3585. <member name="P:NUnit.Framework.PropertyAttribute.Properties">
  3586. <summary>
  3587. Gets the property dictionary for this attribute
  3588. </summary>
  3589. </member>
  3590. <member name="M:NUnit.Framework.CombinatorialAttribute.#ctor">
  3591. <summary>
  3592. Default constructor
  3593. </summary>
  3594. </member>
  3595. <member name="T:NUnit.Framework.PairwiseAttribute">
  3596. <summary>
  3597. Marks a test to use pairwise join of any argument data provided.
  3598. NUnit will attempt too excercise every pair of argument values at
  3599. least once, using as small a number of test cases as it can. With
  3600. only two arguments, this is the same as a combinatorial join.
  3601. </summary>
  3602. </member>
  3603. <member name="M:NUnit.Framework.PairwiseAttribute.#ctor">
  3604. <summary>
  3605. Default constructor
  3606. </summary>
  3607. </member>
  3608. <member name="T:NUnit.Framework.SequentialAttribute">
  3609. <summary>
  3610. Marks a test to use a sequential join of any argument data
  3611. provided. NUnit will use arguements for each parameter in
  3612. sequence, generating test cases up to the largest number
  3613. of argument values provided and using null for any arguments
  3614. for which it runs out of values. Normally, this should be
  3615. used with the same number of arguments for each parameter.
  3616. </summary>
  3617. </member>
  3618. <member name="M:NUnit.Framework.SequentialAttribute.#ctor">
  3619. <summary>
  3620. Default constructor
  3621. </summary>
  3622. </member>
  3623. <member name="T:NUnit.Framework.MaxTimeAttribute">
  3624. <summary>
  3625. Summary description for MaxTimeAttribute.
  3626. </summary>
  3627. </member>
  3628. <member name="M:NUnit.Framework.MaxTimeAttribute.#ctor(System.Int32)">
  3629. <summary>
  3630. Construct a MaxTimeAttribute, given a time in milliseconds.
  3631. </summary>
  3632. <param name="milliseconds">The maximum elapsed time in milliseconds</param>
  3633. </member>
  3634. <member name="T:NUnit.Framework.RandomAttribute">
  3635. <summary>
  3636. RandomAttribute is used to supply a set of random values
  3637. to a single parameter of a parameterized test.
  3638. </summary>
  3639. </member>
  3640. <member name="T:NUnit.Framework.ValuesAttribute">
  3641. <summary>
  3642. ValuesAttribute is used to provide literal arguments for
  3643. an individual parameter of a test.
  3644. </summary>
  3645. </member>
  3646. <member name="T:NUnit.Framework.ParameterDataAttribute">
  3647. <summary>
  3648. Abstract base class for attributes that apply to parameters
  3649. and supply data for the parameter.
  3650. </summary>
  3651. </member>
  3652. <member name="M:NUnit.Framework.ParameterDataAttribute.GetData(System.Reflection.ParameterInfo)">
  3653. <summary>
  3654. Gets the data to be provided to the specified parameter
  3655. </summary>
  3656. </member>
  3657. <member name="F:NUnit.Framework.ValuesAttribute.data">
  3658. <summary>
  3659. The collection of data to be returned. Must
  3660. be set by any derived attribute classes.
  3661. We use an object[] so that the individual
  3662. elements may have their type changed in GetData
  3663. if necessary.
  3664. </summary>
  3665. </member>
  3666. <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object)">
  3667. <summary>
  3668. Construct with one argument
  3669. </summary>
  3670. <param name="arg1"></param>
  3671. </member>
  3672. <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object)">
  3673. <summary>
  3674. Construct with two arguments
  3675. </summary>
  3676. <param name="arg1"></param>
  3677. <param name="arg2"></param>
  3678. </member>
  3679. <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object,System.Object)">
  3680. <summary>
  3681. Construct with three arguments
  3682. </summary>
  3683. <param name="arg1"></param>
  3684. <param name="arg2"></param>
  3685. <param name="arg3"></param>
  3686. </member>
  3687. <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object[])">
  3688. <summary>
  3689. Construct with an array of arguments
  3690. </summary>
  3691. <param name="args"></param>
  3692. </member>
  3693. <member name="M:NUnit.Framework.ValuesAttribute.GetData(System.Reflection.ParameterInfo)">
  3694. <summary>
  3695. Get the collection of values to be used as arguments
  3696. </summary>
  3697. </member>
  3698. <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32)">
  3699. <summary>
  3700. Construct a set of doubles from 0.0 to 1.0,
  3701. specifying only the count.
  3702. </summary>
  3703. <param name="count"></param>
  3704. </member>
  3705. <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Double,System.Double,System.Int32)">
  3706. <summary>
  3707. Construct a set of doubles from min to max
  3708. </summary>
  3709. <param name="min"></param>
  3710. <param name="max"></param>
  3711. <param name="count"></param>
  3712. </member>
  3713. <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
  3714. <summary>
  3715. Construct a set of ints from min to max
  3716. </summary>
  3717. <param name="min"></param>
  3718. <param name="max"></param>
  3719. <param name="count"></param>
  3720. </member>
  3721. <member name="M:NUnit.Framework.RandomAttribute.GetData(System.Reflection.ParameterInfo)">
  3722. <summary>
  3723. Get the collection of values to be used as arguments
  3724. </summary>
  3725. </member>
  3726. <member name="T:NUnit.Framework.RangeAttribute">
  3727. <summary>
  3728. RangeAttribute is used to supply a range of values to an
  3729. individual parameter of a parameterized test.
  3730. </summary>
  3731. </member>
  3732. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32)">
  3733. <summary>
  3734. Construct a range of ints using default step of 1
  3735. </summary>
  3736. <param name="from"></param>
  3737. <param name="to"></param>
  3738. </member>
  3739. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
  3740. <summary>
  3741. Construct a range of ints specifying the step size
  3742. </summary>
  3743. <param name="from"></param>
  3744. <param name="to"></param>
  3745. <param name="step"></param>
  3746. </member>
  3747. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int64,System.Int64,System.Int64)">
  3748. <summary>
  3749. Construct a range of longs
  3750. </summary>
  3751. <param name="from"></param>
  3752. <param name="to"></param>
  3753. <param name="step"></param>
  3754. </member>
  3755. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Double,System.Double,System.Double)">
  3756. <summary>
  3757. Construct a range of doubles
  3758. </summary>
  3759. <param name="from"></param>
  3760. <param name="to"></param>
  3761. <param name="step"></param>
  3762. </member>
  3763. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Single,System.Single,System.Single)">
  3764. <summary>
  3765. Construct a range of floats
  3766. </summary>
  3767. <param name="from"></param>
  3768. <param name="to"></param>
  3769. <param name="step"></param>
  3770. </member>
  3771. <member name="T:NUnit.Framework.RepeatAttribute">
  3772. <summary>
  3773. RepeatAttribute may be applied to test case in order
  3774. to run it multiple times.
  3775. </summary>
  3776. </member>
  3777. <member name="M:NUnit.Framework.RepeatAttribute.#ctor(System.Int32)">
  3778. <summary>
  3779. Construct a RepeatAttribute
  3780. </summary>
  3781. <param name="count">The number of times to run the test</param>
  3782. </member>
  3783. <member name="T:NUnit.Framework.RequiredAddinAttribute">
  3784. <summary>
  3785. RequiredAddinAttribute may be used to indicate the names of any addins
  3786. that must be present in order to run some or all of the tests in an
  3787. assembly. If the addin is not loaded, the entire assembly is marked
  3788. as NotRunnable.
  3789. </summary>
  3790. </member>
  3791. <member name="M:NUnit.Framework.RequiredAddinAttribute.#ctor(System.String)">
  3792. <summary>
  3793. Initializes a new instance of the <see cref="T:RequiredAddinAttribute"/> class.
  3794. </summary>
  3795. <param name="requiredAddin">The required addin.</param>
  3796. </member>
  3797. <member name="P:NUnit.Framework.RequiredAddinAttribute.RequiredAddin">
  3798. <summary>
  3799. Gets the name of required addin.
  3800. </summary>
  3801. <value>The required addin name.</value>
  3802. </member>
  3803. <member name="T:NUnit.Framework.SetCultureAttribute">
  3804. <summary>
  3805. Summary description for SetCultureAttribute.
  3806. </summary>
  3807. </member>
  3808. <member name="M:NUnit.Framework.SetCultureAttribute.#ctor(System.String)">
  3809. <summary>
  3810. Construct given the name of a culture
  3811. </summary>
  3812. <param name="culture"></param>
  3813. </member>
  3814. <member name="T:NUnit.Framework.SetUICultureAttribute">
  3815. <summary>
  3816. Summary description for SetUICultureAttribute.
  3817. </summary>
  3818. </member>
  3819. <member name="M:NUnit.Framework.SetUICultureAttribute.#ctor(System.String)">
  3820. <summary>
  3821. Construct given the name of a culture
  3822. </summary>
  3823. <param name="culture"></param>
  3824. </member>
  3825. <member name="T:NUnit.Framework.SetUpAttribute">
  3826. <summary>
  3827. SetUpAttribute is used in a TestFixture to identify a method
  3828. that is called immediately before each test is run. It is
  3829. also used in a SetUpFixture to identify the method that is
  3830. called once, before any of the subordinate tests are run.
  3831. </summary>
  3832. </member>
  3833. <member name="T:NUnit.Framework.SetUpFixtureAttribute">
  3834. <summary>
  3835. Attribute used to mark a class that contains one-time SetUp
  3836. and/or TearDown methods that apply to all the tests in a
  3837. namespace or an assembly.
  3838. </summary>
  3839. </member>
  3840. <member name="T:NUnit.Framework.SuiteAttribute">
  3841. <summary>
  3842. Attribute used to mark a static (shared in VB) property
  3843. that returns a list of tests.
  3844. </summary>
  3845. </member>
  3846. <member name="T:NUnit.Framework.TearDownAttribute">
  3847. <summary>
  3848. Attribute used in a TestFixture to identify a method that is
  3849. called immediately after each test is run. It is also used
  3850. in a SetUpFixture to identify the method that is called once,
  3851. after all subordinate tests have run. In either case, the method
  3852. is guaranteed to be called, even if an exception is thrown.
  3853. </summary>
  3854. </member>
  3855. <member name="T:NUnit.Framework.TestActionAttribute">
  3856. <summary>
  3857. Provide actions to execute before and after tests.
  3858. </summary>
  3859. </member>
  3860. <member name="T:NUnit.Framework.ITestAction">
  3861. <summary>
  3862. When implemented by an attribute, this interface implemented to provide actions to execute before and after tests.
  3863. </summary>
  3864. </member>
  3865. <member name="M:NUnit.Framework.ITestAction.BeforeTest(NUnit.Framework.TestDetails)">
  3866. <summary>
  3867. Executed before each test is run
  3868. </summary>
  3869. <param name="testDetails">Provides details about the test that is going to be run.</param>
  3870. </member>
  3871. <member name="M:NUnit.Framework.ITestAction.AfterTest(NUnit.Framework.TestDetails)">
  3872. <summary>
  3873. Executed after each test is run
  3874. </summary>
  3875. <param name="testDetails">Provides details about the test that has just been run.</param>
  3876. </member>
  3877. <member name="P:NUnit.Framework.ITestAction.Targets">
  3878. <summary>
  3879. Provides the target for the action attribute
  3880. </summary>
  3881. <returns>The target for the action attribute</returns>
  3882. </member>
  3883. <member name="M:NUnit.Framework.TestActionAttribute.BeforeTest(NUnit.Framework.TestDetails)">
  3884. <summary>
  3885. Method called before each test
  3886. </summary>
  3887. <param name="testDetails">Info about the test to be run</param>
  3888. </member>
  3889. <member name="M:NUnit.Framework.TestActionAttribute.AfterTest(NUnit.Framework.TestDetails)">
  3890. <summary>
  3891. Method called after each test
  3892. </summary>
  3893. <param name="testDetails">Info about the test that was just run</param>
  3894. </member>
  3895. <member name="P:NUnit.Framework.TestActionAttribute.Targets">
  3896. <summary>
  3897. Gets or sets the ActionTargets for this attribute
  3898. </summary>
  3899. </member>
  3900. <member name="T:NUnit.Framework.TestAttribute">
  3901. <summary>
  3902. Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
  3903. class makes the method callable from the NUnit test runner. There is a property
  3904. called Description which is optional which you can provide a more detailed test
  3905. description. This class cannot be inherited.
  3906. </summary>
  3907. <example>
  3908. [TestFixture]
  3909. public class Fixture
  3910. {
  3911. [Test]
  3912. public void MethodToTest()
  3913. {}
  3914. [Test(Description = "more detailed description")]
  3915. publc void TestDescriptionMethod()
  3916. {}
  3917. }
  3918. </example>
  3919. </member>
  3920. <member name="P:NUnit.Framework.TestAttribute.Description">
  3921. <summary>
  3922. Descriptive text for this test
  3923. </summary>
  3924. </member>
  3925. <member name="T:NUnit.Framework.TestCaseAttribute">
  3926. <summary>
  3927. TestCaseAttribute is used to mark parameterized test cases
  3928. and provide them with their arguments.
  3929. </summary>
  3930. </member>
  3931. <member name="T:NUnit.Framework.ITestCaseData">
  3932. <summary>
  3933. The ITestCaseData interface is implemented by a class
  3934. that is able to return complete testcases for use by
  3935. a parameterized test method.
  3936. NOTE: This interface is used in both the framework
  3937. and the core, even though that results in two different
  3938. types. However, sharing the source code guarantees that
  3939. the various implementations will be compatible and that
  3940. the core is able to reflect successfully over the
  3941. framework implementations of ITestCaseData.
  3942. </summary>
  3943. </member>
  3944. <member name="P:NUnit.Framework.ITestCaseData.Arguments">
  3945. <summary>
  3946. Gets the argument list to be provided to the test
  3947. </summary>
  3948. </member>
  3949. <member name="P:NUnit.Framework.ITestCaseData.Result">
  3950. <summary>
  3951. Gets the expected result
  3952. </summary>
  3953. </member>
  3954. <member name="P:NUnit.Framework.ITestCaseData.HasExpectedResult">
  3955. <summary>
  3956. Indicates whether a result has been specified.
  3957. This is necessary because the result may be
  3958. null, so it's value cannot be checked.
  3959. </summary>
  3960. </member>
  3961. <member name="P:NUnit.Framework.ITestCaseData.ExpectedException">
  3962. <summary>
  3963. Gets the expected exception Type
  3964. </summary>
  3965. </member>
  3966. <member name="P:NUnit.Framework.ITestCaseData.ExpectedExceptionName">
  3967. <summary>
  3968. Gets the FullName of the expected exception
  3969. </summary>
  3970. </member>
  3971. <member name="P:NUnit.Framework.ITestCaseData.TestName">
  3972. <summary>
  3973. Gets the name to be used for the test
  3974. </summary>
  3975. </member>
  3976. <member name="P:NUnit.Framework.ITestCaseData.Description">
  3977. <summary>
  3978. Gets the description of the test
  3979. </summary>
  3980. </member>
  3981. <member name="P:NUnit.Framework.ITestCaseData.Ignored">
  3982. <summary>
  3983. Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
  3984. </summary>
  3985. <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
  3986. </member>
  3987. <member name="P:NUnit.Framework.ITestCaseData.Explicit">
  3988. <summary>
  3989. Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is explicit.
  3990. </summary>
  3991. <value><c>true</c> if explicit; otherwise, <c>false</c>.</value>
  3992. </member>
  3993. <member name="P:NUnit.Framework.ITestCaseData.IgnoreReason">
  3994. <summary>
  3995. Gets the ignore reason.
  3996. </summary>
  3997. <value>The ignore reason.</value>
  3998. </member>
  3999. <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object[])">
  4000. <summary>
  4001. Construct a TestCaseAttribute with a list of arguments.
  4002. This constructor is not CLS-Compliant
  4003. </summary>
  4004. <param name="arguments"></param>
  4005. </member>
  4006. <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object)">
  4007. <summary>
  4008. Construct a TestCaseAttribute with a single argument
  4009. </summary>
  4010. <param name="arg"></param>
  4011. </member>
  4012. <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object)">
  4013. <summary>
  4014. Construct a TestCaseAttribute with a two arguments
  4015. </summary>
  4016. <param name="arg1"></param>
  4017. <param name="arg2"></param>
  4018. </member>
  4019. <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object,System.Object)">
  4020. <summary>
  4021. Construct a TestCaseAttribute with a three arguments
  4022. </summary>
  4023. <param name="arg1"></param>
  4024. <param name="arg2"></param>
  4025. <param name="arg3"></param>
  4026. </member>
  4027. <member name="P:NUnit.Framework.TestCaseAttribute.Arguments">
  4028. <summary>
  4029. Gets the list of arguments to a test case
  4030. </summary>
  4031. </member>
  4032. <member name="P:NUnit.Framework.TestCaseAttribute.Result">
  4033. <summary>
  4034. Gets or sets the expected result. Use
  4035. ExpectedResult by preference.
  4036. </summary>
  4037. <value>The result.</value>
  4038. </member>
  4039. <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedResult">
  4040. <summary>
  4041. Gets or sets the expected result.
  4042. </summary>
  4043. <value>The result.</value>
  4044. </member>
  4045. <member name="P:NUnit.Framework.TestCaseAttribute.HasExpectedResult">
  4046. <summary>
  4047. Gets a flag indicating whether an expected
  4048. result has been set.
  4049. </summary>
  4050. </member>
  4051. <member name="P:NUnit.Framework.TestCaseAttribute.Categories">
  4052. <summary>
  4053. Gets a list of categories associated with this test;
  4054. </summary>
  4055. </member>
  4056. <member name="P:NUnit.Framework.TestCaseAttribute.Category">
  4057. <summary>
  4058. Gets or sets the category associated with this test.
  4059. May be a single category or a comma-separated list.
  4060. </summary>
  4061. </member>
  4062. <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedException">
  4063. <summary>
  4064. Gets or sets the expected exception.
  4065. </summary>
  4066. <value>The expected exception.</value>
  4067. </member>
  4068. <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedExceptionName">
  4069. <summary>
  4070. Gets or sets the name the expected exception.
  4071. </summary>
  4072. <value>The expected name of the exception.</value>
  4073. </member>
  4074. <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedMessage">
  4075. <summary>
  4076. Gets or sets the expected message of the expected exception
  4077. </summary>
  4078. <value>The expected message of the exception.</value>
  4079. </member>
  4080. <member name="P:NUnit.Framework.TestCaseAttribute.MatchType">
  4081. <summary>
  4082. Gets or sets the type of match to be performed on the expected message
  4083. </summary>
  4084. </member>
  4085. <member name="P:NUnit.Framework.TestCaseAttribute.Description">
  4086. <summary>
  4087. Gets or sets the description.
  4088. </summary>
  4089. <value>The description.</value>
  4090. </member>
  4091. <member name="P:NUnit.Framework.TestCaseAttribute.TestName">
  4092. <summary>
  4093. Gets or sets the name of the test.
  4094. </summary>
  4095. <value>The name of the test.</value>
  4096. </member>
  4097. <member name="P:NUnit.Framework.TestCaseAttribute.Ignore">
  4098. <summary>
  4099. Gets or sets the ignored status of the test
  4100. </summary>
  4101. </member>
  4102. <member name="P:NUnit.Framework.TestCaseAttribute.Ignored">
  4103. <summary>
  4104. Gets or sets the ignored status of the test
  4105. </summary>
  4106. </member>
  4107. <member name="P:NUnit.Framework.TestCaseAttribute.Explicit">
  4108. <summary>
  4109. Gets or sets the explicit status of the test
  4110. </summary>
  4111. </member>
  4112. <member name="P:NUnit.Framework.TestCaseAttribute.Reason">
  4113. <summary>
  4114. Gets or sets the reason for not running the test
  4115. </summary>
  4116. </member>
  4117. <member name="P:NUnit.Framework.TestCaseAttribute.IgnoreReason">
  4118. <summary>
  4119. Gets or sets the reason for not running the test.
  4120. Set has the side effect of marking the test as ignored.
  4121. </summary>
  4122. <value>The ignore reason.</value>
  4123. </member>
  4124. <member name="T:NUnit.Framework.TestCaseSourceAttribute">
  4125. <summary>
  4126. FactoryAttribute indicates the source to be used to
  4127. provide test cases for a test method.
  4128. </summary>
  4129. </member>
  4130. <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.String)">
  4131. <summary>
  4132. Construct with the name of the data source, which must
  4133. be a property, field or method of the test class itself.
  4134. </summary>
  4135. <param name="sourceName">An array of the names of the factories that will provide data</param>
  4136. </member>
  4137. <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.Type)">
  4138. <summary>
  4139. Construct with a Type, which must implement IEnumerable
  4140. </summary>
  4141. <param name="sourceType">The Type that will provide data</param>
  4142. </member>
  4143. <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.Type,System.String)">
  4144. <summary>
  4145. Construct with a Type and name.
  4146. that don't support params arrays.
  4147. </summary>
  4148. <param name="sourceType">The Type that will provide data</param>
  4149. <param name="sourceName">The name of the method, property or field that will provide data</param>
  4150. </member>
  4151. <member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceName">
  4152. <summary>
  4153. The name of a the method, property or fiend to be used as a source
  4154. </summary>
  4155. </member>
  4156. <member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceType">
  4157. <summary>
  4158. A Type to be used as a source
  4159. </summary>
  4160. </member>
  4161. <member name="P:NUnit.Framework.TestCaseSourceAttribute.Category">
  4162. <summary>
  4163. Gets or sets the category associated with this test.
  4164. May be a single category or a comma-separated list.
  4165. </summary>
  4166. </member>
  4167. <member name="T:NUnit.Framework.TestFixtureAttribute">
  4168. <example>
  4169. [TestFixture]
  4170. public class ExampleClass
  4171. {}
  4172. </example>
  4173. </member>
  4174. <member name="M:NUnit.Framework.TestFixtureAttribute.#ctor">
  4175. <summary>
  4176. Default constructor
  4177. </summary>
  4178. </member>
  4179. <member name="M:NUnit.Framework.TestFixtureAttribute.#ctor(System.Object[])">
  4180. <summary>
  4181. Construct with a object[] representing a set of arguments.
  4182. In .NET 2.0, the arguments may later be separated into
  4183. type arguments and constructor arguments.
  4184. </summary>
  4185. <param name="arguments"></param>
  4186. </member>
  4187. <member name="P:NUnit.Framework.TestFixtureAttribute.Description">
  4188. <summary>
  4189. Descriptive text for this fixture
  4190. </summary>
  4191. </member>
  4192. <member name="P:NUnit.Framework.TestFixtureAttribute.Category">
  4193. <summary>
  4194. Gets and sets the category for this fixture.
  4195. May be a comma-separated list of categories.
  4196. </summary>
  4197. </member>
  4198. <member name="P:NUnit.Framework.TestFixtureAttribute.Categories">
  4199. <summary>
  4200. Gets a list of categories for this fixture
  4201. </summary>
  4202. </member>
  4203. <member name="P:NUnit.Framework.TestFixtureAttribute.Arguments">
  4204. <summary>
  4205. The arguments originally provided to the attribute
  4206. </summary>
  4207. </member>
  4208. <member name="P:NUnit.Framework.TestFixtureAttribute.Ignore">
  4209. <summary>
  4210. Gets or sets a value indicating whether this <see cref="T:NUnit.Framework.TestFixtureAttribute"/> should be ignored.
  4211. </summary>
  4212. <value><c>true</c> if ignore; otherwise, <c>false</c>.</value>
  4213. </member>
  4214. <member name="P:NUnit.Framework.TestFixtureAttribute.IgnoreReason">
  4215. <summary>
  4216. Gets or sets the ignore reason. May set Ignored as a side effect.
  4217. </summary>
  4218. <value>The ignore reason.</value>
  4219. </member>
  4220. <member name="P:NUnit.Framework.TestFixtureAttribute.TypeArgs">
  4221. <summary>
  4222. Get or set the type arguments. If not set
  4223. explicitly, any leading arguments that are
  4224. Types are taken as type arguments.
  4225. </summary>
  4226. </member>
  4227. <member name="T:NUnit.Framework.TestFixtureSetUpAttribute">
  4228. <summary>
  4229. Attribute used to identify a method that is
  4230. called before any tests in a fixture are run.
  4231. </summary>
  4232. </member>
  4233. <member name="T:NUnit.Framework.TestFixtureTearDownAttribute">
  4234. <summary>
  4235. Attribute used to identify a method that is called after
  4236. all the tests in a fixture have run. The method is
  4237. guaranteed to be called, even if an exception is thrown.
  4238. </summary>
  4239. </member>
  4240. <member name="T:NUnit.Framework.TheoryAttribute">
  4241. <summary>
  4242. Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
  4243. class makes the method callable from the NUnit test runner. There is a property
  4244. called Description which is optional which you can provide a more detailed test
  4245. description. This class cannot be inherited.
  4246. </summary>
  4247. <example>
  4248. [TestFixture]
  4249. public class Fixture
  4250. {
  4251. [Test]
  4252. public void MethodToTest()
  4253. {}
  4254. [Test(Description = "more detailed description")]
  4255. publc void TestDescriptionMethod()
  4256. {}
  4257. }
  4258. </example>
  4259. </member>
  4260. <member name="T:NUnit.Framework.TimeoutAttribute">
  4261. <summary>
  4262. Used on a method, marks the test with a timeout value in milliseconds.
  4263. The test will be run in a separate thread and is cancelled if the timeout
  4264. is exceeded. Used on a method or assembly, sets the default timeout
  4265. for all contained test methods.
  4266. </summary>
  4267. </member>
  4268. <member name="M:NUnit.Framework.TimeoutAttribute.#ctor(System.Int32)">
  4269. <summary>
  4270. Construct a TimeoutAttribute given a time in milliseconds
  4271. </summary>
  4272. <param name="timeout">The timeout value in milliseconds</param>
  4273. </member>
  4274. <member name="T:NUnit.Framework.RequiresSTAAttribute">
  4275. <summary>
  4276. Marks a test that must run in the STA, causing it
  4277. to run in a separate thread if necessary.
  4278. On methods, you may also use STAThreadAttribute
  4279. to serve the same purpose.
  4280. </summary>
  4281. </member>
  4282. <member name="M:NUnit.Framework.RequiresSTAAttribute.#ctor">
  4283. <summary>
  4284. Construct a RequiresSTAAttribute
  4285. </summary>
  4286. </member>
  4287. <member name="T:NUnit.Framework.RequiresMTAAttribute">
  4288. <summary>
  4289. Marks a test that must run in the MTA, causing it
  4290. to run in a separate thread if necessary.
  4291. On methods, you may also use MTAThreadAttribute
  4292. to serve the same purpose.
  4293. </summary>
  4294. </member>
  4295. <member name="M:NUnit.Framework.RequiresMTAAttribute.#ctor">
  4296. <summary>
  4297. Construct a RequiresMTAAttribute
  4298. </summary>
  4299. </member>
  4300. <member name="T:NUnit.Framework.RequiresThreadAttribute">
  4301. <summary>
  4302. Marks a test that must run on a separate thread.
  4303. </summary>
  4304. </member>
  4305. <member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor">
  4306. <summary>
  4307. Construct a RequiresThreadAttribute
  4308. </summary>
  4309. </member>
  4310. <member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor(System.Threading.ApartmentState)">
  4311. <summary>
  4312. Construct a RequiresThreadAttribute, specifying the apartment
  4313. </summary>
  4314. </member>
  4315. <member name="T:NUnit.Framework.ValueSourceAttribute">
  4316. <summary>
  4317. ValueSourceAttribute indicates the source to be used to
  4318. provide data for one parameter of a test method.
  4319. </summary>
  4320. </member>
  4321. <member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.String)">
  4322. <summary>
  4323. Construct with the name of the factory - for use with languages
  4324. that don't support params arrays.
  4325. </summary>
  4326. <param name="sourceName">The name of the data source to be used</param>
  4327. </member>
  4328. <member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.Type,System.String)">
  4329. <summary>
  4330. Construct with a Type and name - for use with languages
  4331. that don't support params arrays.
  4332. </summary>
  4333. <param name="sourceType">The Type that will provide data</param>
  4334. <param name="sourceName">The name of the method, property or field that will provide data</param>
  4335. </member>
  4336. <member name="P:NUnit.Framework.ValueSourceAttribute.SourceName">
  4337. <summary>
  4338. The name of a the method, property or fiend to be used as a source
  4339. </summary>
  4340. </member>
  4341. <member name="P:NUnit.Framework.ValueSourceAttribute.SourceType">
  4342. <summary>
  4343. A Type to be used as a source
  4344. </summary>
  4345. </member>
  4346. <member name="T:NUnit.Framework.CollectionAssert">
  4347. <summary>
  4348. A set of Assert methods operationg on one or more collections
  4349. </summary>
  4350. </member>
  4351. <member name="M:NUnit.Framework.CollectionAssert.Equals(System.Object,System.Object)">
  4352. <summary>
  4353. The Equals method throws an AssertionException. This is done
  4354. to make sure there is no mistake by calling this function.
  4355. </summary>
  4356. <param name="a"></param>
  4357. <param name="b"></param>
  4358. </member>
  4359. <member name="M:NUnit.Framework.CollectionAssert.ReferenceEquals(System.Object,System.Object)">
  4360. <summary>
  4361. override the default ReferenceEquals to throw an AssertionException. This
  4362. implementation makes sure there is no mistake in calling this function
  4363. as part of Assert.
  4364. </summary>
  4365. <param name="a"></param>
  4366. <param name="b"></param>
  4367. </member>
  4368. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type)">
  4369. <summary>
  4370. Asserts that all items contained in collection are of the type specified by expectedType.
  4371. </summary>
  4372. <param name="collection">IEnumerable containing objects to be considered</param>
  4373. <param name="expectedType">System.Type that all objects in collection must be instances of</param>
  4374. </member>
  4375. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String)">
  4376. <summary>
  4377. Asserts that all items contained in collection are of the type specified by expectedType.
  4378. </summary>
  4379. <param name="collection">IEnumerable containing objects to be considered</param>
  4380. <param name="expectedType">System.Type that all objects in collection must be instances of</param>
  4381. <param name="message">The message that will be displayed on failure</param>
  4382. </member>
  4383. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String,System.Object[])">
  4384. <summary>
  4385. Asserts that all items contained in collection are of the type specified by expectedType.
  4386. </summary>
  4387. <param name="collection">IEnumerable containing objects to be considered</param>
  4388. <param name="expectedType">System.Type that all objects in collection must be instances of</param>
  4389. <param name="message">The message that will be displayed on failure</param>
  4390. <param name="args">Arguments to be used in formatting the message</param>
  4391. </member>
  4392. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable)">
  4393. <summary>
  4394. Asserts that all items contained in collection are not equal to null.
  4395. </summary>
  4396. <param name="collection">IEnumerable containing objects to be considered</param>
  4397. </member>
  4398. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String)">
  4399. <summary>
  4400. Asserts that all items contained in collection are not equal to null.
  4401. </summary>
  4402. <param name="collection">IEnumerable containing objects to be considered</param>
  4403. <param name="message">The message that will be displayed on failure</param>
  4404. </member>
  4405. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String,System.Object[])">
  4406. <summary>
  4407. Asserts that all items contained in collection are not equal to null.
  4408. </summary>
  4409. <param name="collection">IEnumerable of objects to be considered</param>
  4410. <param name="message">The message that will be displayed on failure</param>
  4411. <param name="args">Arguments to be used in formatting the message</param>
  4412. </member>
  4413. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable)">
  4414. <summary>
  4415. Ensures that every object contained in collection exists within the collection
  4416. once and only once.
  4417. </summary>
  4418. <param name="collection">IEnumerable of objects to be considered</param>
  4419. </member>
  4420. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String)">
  4421. <summary>
  4422. Ensures that every object contained in collection exists within the collection
  4423. once and only once.
  4424. </summary>
  4425. <param name="collection">IEnumerable of objects to be considered</param>
  4426. <param name="message">The message that will be displayed on failure</param>
  4427. </member>
  4428. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String,System.Object[])">
  4429. <summary>
  4430. Ensures that every object contained in collection exists within the collection
  4431. once and only once.
  4432. </summary>
  4433. <param name="collection">IEnumerable of objects to be considered</param>
  4434. <param name="message">The message that will be displayed on failure</param>
  4435. <param name="args">Arguments to be used in formatting the message</param>
  4436. </member>
  4437. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  4438. <summary>
  4439. Asserts that expected and actual are exactly equal. The collections must have the same count,
  4440. and contain the exact same objects in the same order.
  4441. </summary>
  4442. <param name="expected">The first IEnumerable of objects to be considered</param>
  4443. <param name="actual">The second IEnumerable of objects to be considered</param>
  4444. </member>
  4445. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
  4446. <summary>
  4447. Asserts that expected and actual are exactly equal. The collections must have the same count,
  4448. and contain the exact same objects in the same order.
  4449. If comparer is not null then it will be used to compare the objects.
  4450. </summary>
  4451. <param name="expected">The first IEnumerable of objects to be considered</param>
  4452. <param name="actual">The second IEnumerable of objects to be considered</param>
  4453. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  4454. </member>
  4455. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  4456. <summary>
  4457. Asserts that expected and actual are exactly equal. The collections must have the same count,
  4458. and contain the exact same objects in the same order.
  4459. </summary>
  4460. <param name="expected">The first IEnumerable of objects to be considered</param>
  4461. <param name="actual">The second IEnumerable of objects to be considered</param>
  4462. <param name="message">The message that will be displayed on failure</param>
  4463. </member>
  4464. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
  4465. <summary>
  4466. Asserts that expected and actual are exactly equal. The collections must have the same count,
  4467. and contain the exact same objects in the same order.
  4468. If comparer is not null then it will be used to compare the objects.
  4469. </summary>
  4470. <param name="expected">The first IEnumerable of objects to be considered</param>
  4471. <param name="actual">The second IEnumerable of objects to be considered</param>
  4472. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  4473. <param name="message">The message that will be displayed on failure</param>
  4474. </member>
  4475. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  4476. <summary>
  4477. Asserts that expected and actual are exactly equal. The collections must have the same count,
  4478. and contain the exact same objects in the same order.
  4479. </summary>
  4480. <param name="expected">The first IEnumerable of objects to be considered</param>
  4481. <param name="actual">The second IEnumerable of objects to be considered</param>
  4482. <param name="message">The message that will be displayed on failure</param>
  4483. <param name="args">Arguments to be used in formatting the message</param>
  4484. </member>
  4485. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
  4486. <summary>
  4487. Asserts that expected and actual are exactly equal. The collections must have the same count,
  4488. and contain the exact same objects in the same order.
  4489. If comparer is not null then it will be used to compare the objects.
  4490. </summary>
  4491. <param name="expected">The first IEnumerable of objects to be considered</param>
  4492. <param name="actual">The second IEnumerable of objects to be considered</param>
  4493. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  4494. <param name="message">The message that will be displayed on failure</param>
  4495. <param name="args">Arguments to be used in formatting the message</param>
  4496. </member>
  4497. <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  4498. <summary>
  4499. Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
  4500. </summary>
  4501. <param name="expected">The first IEnumerable of objects to be considered</param>
  4502. <param name="actual">The second IEnumerable of objects to be considered</param>
  4503. </member>
  4504. <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  4505. <summary>
  4506. Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
  4507. </summary>
  4508. <param name="expected">The first IEnumerable of objects to be considered</param>
  4509. <param name="actual">The second IEnumerable of objects to be considered</param>
  4510. <param name="message">The message that will be displayed on failure</param>
  4511. </member>
  4512. <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  4513. <summary>
  4514. Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
  4515. </summary>
  4516. <param name="expected">The first IEnumerable of objects to be considered</param>
  4517. <param name="actual">The second IEnumerable of objects to be considered</param>
  4518. <param name="message">The message that will be displayed on failure</param>
  4519. <param name="args">Arguments to be used in formatting the message</param>
  4520. </member>
  4521. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  4522. <summary>
  4523. Asserts that expected and actual are not exactly equal.
  4524. </summary>
  4525. <param name="expected">The first IEnumerable of objects to be considered</param>
  4526. <param name="actual">The second IEnumerable of objects to be considered</param>
  4527. </member>
  4528. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
  4529. <summary>
  4530. Asserts that expected and actual are not exactly equal.
  4531. If comparer is not null then it will be used to compare the objects.
  4532. </summary>
  4533. <param name="expected">The first IEnumerable of objects to be considered</param>
  4534. <param name="actual">The second IEnumerable of objects to be considered</param>
  4535. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  4536. </member>
  4537. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  4538. <summary>
  4539. Asserts that expected and actual are not exactly equal.
  4540. </summary>
  4541. <param name="expected">The first IEnumerable of objects to be considered</param>
  4542. <param name="actual">The second IEnumerable of objects to be considered</param>
  4543. <param name="message">The message that will be displayed on failure</param>
  4544. </member>
  4545. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
  4546. <summary>
  4547. Asserts that expected and actual are not exactly equal.
  4548. If comparer is not null then it will be used to compare the objects.
  4549. </summary>
  4550. <param name="expected">The first IEnumerable of objects to be considered</param>
  4551. <param name="actual">The second IEnumerable of objects to be considered</param>
  4552. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  4553. <param name="message">The message that will be displayed on failure</param>
  4554. </member>
  4555. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  4556. <summary>
  4557. Asserts that expected and actual are not exactly equal.
  4558. </summary>
  4559. <param name="expected">The first IEnumerable of objects to be considered</param>
  4560. <param name="actual">The second IEnumerable of objects to be considered</param>
  4561. <param name="message">The message that will be displayed on failure</param>
  4562. <param name="args">Arguments to be used in formatting the message</param>
  4563. </member>
  4564. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
  4565. <summary>
  4566. Asserts that expected and actual are not exactly equal.
  4567. If comparer is not null then it will be used to compare the objects.
  4568. </summary>
  4569. <param name="expected">The first IEnumerable of objects to be considered</param>
  4570. <param name="actual">The second IEnumerable of objects to be considered</param>
  4571. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  4572. <param name="message">The message that will be displayed on failure</param>
  4573. <param name="args">Arguments to be used in formatting the message</param>
  4574. </member>
  4575. <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  4576. <summary>
  4577. Asserts that expected and actual are not equivalent.
  4578. </summary>
  4579. <param name="expected">The first IEnumerable of objects to be considered</param>
  4580. <param name="actual">The second IEnumerable of objects to be considered</param>
  4581. </member>
  4582. <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  4583. <summary>
  4584. Asserts that expected and actual are not equivalent.
  4585. </summary>
  4586. <param name="expected">The first IEnumerable of objects to be considered</param>
  4587. <param name="actual">The second IEnumerable of objects to be considered</param>
  4588. <param name="message">The message that will be displayed on failure</param>
  4589. </member>
  4590. <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  4591. <summary>
  4592. Asserts that expected and actual are not equivalent.
  4593. </summary>
  4594. <param name="expected">The first IEnumerable of objects to be considered</param>
  4595. <param name="actual">The second IEnumerable of objects to be considered</param>
  4596. <param name="message">The message that will be displayed on failure</param>
  4597. <param name="args">Arguments to be used in formatting the message</param>
  4598. </member>
  4599. <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object)">
  4600. <summary>
  4601. Asserts that collection contains actual as an item.
  4602. </summary>
  4603. <param name="collection">IEnumerable of objects to be considered</param>
  4604. <param name="actual">Object to be found within collection</param>
  4605. </member>
  4606. <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String)">
  4607. <summary>
  4608. Asserts that collection contains actual as an item.
  4609. </summary>
  4610. <param name="collection">IEnumerable of objects to be considered</param>
  4611. <param name="actual">Object to be found within collection</param>
  4612. <param name="message">The message that will be displayed on failure</param>
  4613. </member>
  4614. <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
  4615. <summary>
  4616. Asserts that collection contains actual as an item.
  4617. </summary>
  4618. <param name="collection">IEnumerable of objects to be considered</param>
  4619. <param name="actual">Object to be found within collection</param>
  4620. <param name="message">The message that will be displayed on failure</param>
  4621. <param name="args">Arguments to be used in formatting the message</param>
  4622. </member>
  4623. <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object)">
  4624. <summary>
  4625. Asserts that collection does not contain actual as an item.
  4626. </summary>
  4627. <param name="collection">IEnumerable of objects to be considered</param>
  4628. <param name="actual">Object that cannot exist within collection</param>
  4629. </member>
  4630. <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String)">
  4631. <summary>
  4632. Asserts that collection does not contain actual as an item.
  4633. </summary>
  4634. <param name="collection">IEnumerable of objects to be considered</param>
  4635. <param name="actual">Object that cannot exist within collection</param>
  4636. <param name="message">The message that will be displayed on failure</param>
  4637. </member>
  4638. <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
  4639. <summary>
  4640. Asserts that collection does not contain actual as an item.
  4641. </summary>
  4642. <param name="collection">IEnumerable of objects to be considered</param>
  4643. <param name="actual">Object that cannot exist within collection</param>
  4644. <param name="message">The message that will be displayed on failure</param>
  4645. <param name="args">Arguments to be used in formatting the message</param>
  4646. </member>
  4647. <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  4648. <summary>
  4649. Asserts that the superset does not contain the subset
  4650. </summary>
  4651. <param name="subset">The IEnumerable subset to be considered</param>
  4652. <param name="superset">The IEnumerable superset to be considered</param>
  4653. </member>
  4654. <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  4655. <summary>
  4656. Asserts that the superset does not contain the subset
  4657. </summary>
  4658. <param name="subset">The IEnumerable subset to be considered</param>
  4659. <param name="superset">The IEnumerable superset to be considered</param>
  4660. <param name="message">The message that will be displayed on failure</param>
  4661. </member>
  4662. <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  4663. <summary>
  4664. Asserts that the superset does not contain the subset
  4665. </summary>
  4666. <param name="subset">The IEnumerable subset to be considered</param>
  4667. <param name="superset">The IEnumerable superset to be considered</param>
  4668. <param name="message">The message that will be displayed on failure</param>
  4669. <param name="args">Arguments to be used in formatting the message</param>
  4670. </member>
  4671. <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  4672. <summary>
  4673. Asserts that the superset contains the subset.
  4674. </summary>
  4675. <param name="subset">The IEnumerable subset to be considered</param>
  4676. <param name="superset">The IEnumerable superset to be considered</param>
  4677. </member>
  4678. <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  4679. <summary>
  4680. Asserts that the superset contains the subset.
  4681. </summary>
  4682. <param name="subset">The IEnumerable subset to be considered</param>
  4683. <param name="superset">The IEnumerable superset to be considered</param>
  4684. <param name="message">The message that will be displayed on failure</param>
  4685. </member>
  4686. <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  4687. <summary>
  4688. Asserts that the superset contains the subset.
  4689. </summary>
  4690. <param name="subset">The IEnumerable subset to be considered</param>
  4691. <param name="superset">The IEnumerable superset to be considered</param>
  4692. <param name="message">The message that will be displayed on failure</param>
  4693. <param name="args">Arguments to be used in formatting the message</param>
  4694. </member>
  4695. <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
  4696. <summary>
  4697. Assert that an array, list or other collection is empty
  4698. </summary>
  4699. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4700. <param name="message">The message to be displayed on failure</param>
  4701. <param name="args">Arguments to be used in formatting the message</param>
  4702. </member>
  4703. <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String)">
  4704. <summary>
  4705. Assert that an array, list or other collection is empty
  4706. </summary>
  4707. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4708. <param name="message">The message to be displayed on failure</param>
  4709. </member>
  4710. <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable)">
  4711. <summary>
  4712. Assert that an array,list or other collection is empty
  4713. </summary>
  4714. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4715. </member>
  4716. <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
  4717. <summary>
  4718. Assert that an array, list or other collection is empty
  4719. </summary>
  4720. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4721. <param name="message">The message to be displayed on failure</param>
  4722. <param name="args">Arguments to be used in formatting the message</param>
  4723. </member>
  4724. <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String)">
  4725. <summary>
  4726. Assert that an array, list or other collection is empty
  4727. </summary>
  4728. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4729. <param name="message">The message to be displayed on failure</param>
  4730. </member>
  4731. <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable)">
  4732. <summary>
  4733. Assert that an array,list or other collection is empty
  4734. </summary>
  4735. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4736. </member>
  4737. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String,System.Object[])">
  4738. <summary>
  4739. Assert that an array, list or other collection is ordered
  4740. </summary>
  4741. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4742. <param name="message">The message to be displayed on failure</param>
  4743. <param name="args">Arguments to be used in formatting the message</param>
  4744. </member>
  4745. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String)">
  4746. <summary>
  4747. Assert that an array, list or other collection is ordered
  4748. </summary>
  4749. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4750. <param name="message">The message to be displayed on failure</param>
  4751. </member>
  4752. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable)">
  4753. <summary>
  4754. Assert that an array, list or other collection is ordered
  4755. </summary>
  4756. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4757. </member>
  4758. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
  4759. <summary>
  4760. Assert that an array, list or other collection is ordered
  4761. </summary>
  4762. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4763. <param name="comparer">A custom comparer to perform the comparisons</param>
  4764. <param name="message">The message to be displayed on failure</param>
  4765. <param name="args">Arguments to be used in formatting the message</param>
  4766. </member>
  4767. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
  4768. <summary>
  4769. Assert that an array, list or other collection is ordered
  4770. </summary>
  4771. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4772. <param name="comparer">A custom comparer to perform the comparisons</param>
  4773. <param name="message">The message to be displayed on failure</param>
  4774. </member>
  4775. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer)">
  4776. <summary>
  4777. Assert that an array, list or other collection is ordered
  4778. </summary>
  4779. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4780. <param name="comparer">A custom comparer to perform the comparisons</param>
  4781. </member>
  4782. <member name="T:NUnit.Framework.Constraints.AllItemsConstraint">
  4783. <summary>
  4784. AllItemsConstraint applies another constraint to each
  4785. item in a collection, succeeding if they all succeed.
  4786. </summary>
  4787. </member>
  4788. <member name="T:NUnit.Framework.Constraints.PrefixConstraint">
  4789. <summary>
  4790. Abstract base class used for prefixes
  4791. </summary>
  4792. </member>
  4793. <member name="T:NUnit.Framework.Constraints.Constraint">
  4794. <summary>
  4795. The Constraint class is the base of all built-in constraints
  4796. within NUnit. It provides the operator overloads used to combine
  4797. constraints.
  4798. </summary>
  4799. </member>
  4800. <member name="T:NUnit.Framework.Constraints.IResolveConstraint">
  4801. <summary>
  4802. The IConstraintExpression interface is implemented by all
  4803. complete and resolvable constraints and expressions.
  4804. </summary>
  4805. </member>
  4806. <member name="M:NUnit.Framework.Constraints.IResolveConstraint.Resolve">
  4807. <summary>
  4808. Return the top-level constraint for this expression
  4809. </summary>
  4810. <returns></returns>
  4811. </member>
  4812. <member name="F:NUnit.Framework.Constraints.Constraint.UNSET">
  4813. <summary>
  4814. Static UnsetObject used to detect derived constraints
  4815. failing to set the actual value.
  4816. </summary>
  4817. </member>
  4818. <member name="F:NUnit.Framework.Constraints.Constraint.actual">
  4819. <summary>
  4820. The actual value being tested against a constraint
  4821. </summary>
  4822. </member>
  4823. <member name="F:NUnit.Framework.Constraints.Constraint.displayName">
  4824. <summary>
  4825. The display name of this Constraint for use by ToString()
  4826. </summary>
  4827. </member>
  4828. <member name="F:NUnit.Framework.Constraints.Constraint.argcnt">
  4829. <summary>
  4830. Argument fields used by ToString();
  4831. </summary>
  4832. </member>
  4833. <member name="F:NUnit.Framework.Constraints.Constraint.builder">
  4834. <summary>
  4835. The builder holding this constraint
  4836. </summary>
  4837. </member>
  4838. <member name="M:NUnit.Framework.Constraints.Constraint.#ctor">
  4839. <summary>
  4840. Construct a constraint with no arguments
  4841. </summary>
  4842. </member>
  4843. <member name="M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object)">
  4844. <summary>
  4845. Construct a constraint with one argument
  4846. </summary>
  4847. </member>
  4848. <member name="M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object,System.Object)">
  4849. <summary>
  4850. Construct a constraint with two arguments
  4851. </summary>
  4852. </member>
  4853. <member name="M:NUnit.Framework.Constraints.Constraint.SetBuilder(NUnit.Framework.Constraints.ConstraintBuilder)">
  4854. <summary>
  4855. Sets the ConstraintBuilder holding this constraint
  4856. </summary>
  4857. </member>
  4858. <member name="M:NUnit.Framework.Constraints.Constraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)">
  4859. <summary>
  4860. Write the failure message to the MessageWriter provided
  4861. as an argument. The default implementation simply passes
  4862. the constraint and the actual value to the writer, which
  4863. then displays the constraint description and the value.
  4864. Constraints that need to provide additional details,
  4865. such as where the error occured can override this.
  4866. </summary>
  4867. <param name="writer">The MessageWriter on which to display the message</param>
  4868. </member>
  4869. <member name="M:NUnit.Framework.Constraints.Constraint.Matches(System.Object)">
  4870. <summary>
  4871. Test whether the constraint is satisfied by a given value
  4872. </summary>
  4873. <param name="actual">The value to be tested</param>
  4874. <returns>True for success, false for failure</returns>
  4875. </member>
  4876. <member name="M:NUnit.Framework.Constraints.Constraint.Matches``1(NUnit.Framework.Constraints.ActualValueDelegate{``0})">
  4877. <summary>
  4878. Test whether the constraint is satisfied by an
  4879. ActualValueDelegate that returns the value to be tested.
  4880. The default implementation simply evaluates the delegate
  4881. but derived classes may override it to provide for delayed
  4882. processing.
  4883. </summary>
  4884. <param name="del">An <see cref="T:NUnit.Framework.Constraints.ActualValueDelegate`1"/></param>
  4885. <returns>True for success, false for failure</returns>
  4886. </member>
  4887. <member name="M:NUnit.Framework.Constraints.Constraint.Matches``1(``0@)">
  4888. <summary>
  4889. Test whether the constraint is satisfied by a given reference.
  4890. The default implementation simply dereferences the value but
  4891. derived classes may override it to provide for delayed processing.
  4892. </summary>
  4893. <param name="actual">A reference to the value to be tested</param>
  4894. <returns>True for success, false for failure</returns>
  4895. </member>
  4896. <member name="M:NUnit.Framework.Constraints.Constraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  4897. <summary>
  4898. Write the constraint description to a MessageWriter
  4899. </summary>
  4900. <param name="writer">The writer on which the description is displayed</param>
  4901. </member>
  4902. <member name="M:NUnit.Framework.Constraints.Constraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  4903. <summary>
  4904. Write the actual value for a failing constraint test to a
  4905. MessageWriter. The default implementation simply writes
  4906. the raw value of actual, leaving it to the writer to
  4907. perform any formatting.
  4908. </summary>
  4909. <param name="writer">The writer on which the actual value is displayed</param>
  4910. </member>
  4911. <member name="M:NUnit.Framework.Constraints.Constraint.ToString">
  4912. <summary>
  4913. Default override of ToString returns the constraint DisplayName
  4914. followed by any arguments within angle brackets.
  4915. </summary>
  4916. <returns></returns>
  4917. </member>
  4918. <member name="M:NUnit.Framework.Constraints.Constraint.GetStringRepresentation">
  4919. <summary>
  4920. Returns the string representation of this constraint
  4921. </summary>
  4922. </member>
  4923. <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  4924. <summary>
  4925. This operator creates a constraint that is satisfied only if both
  4926. argument constraints are satisfied.
  4927. </summary>
  4928. </member>
  4929. <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  4930. <summary>
  4931. This operator creates a constraint that is satisfied if either
  4932. of the argument constraints is satisfied.
  4933. </summary>
  4934. </member>
  4935. <member name="M:NUnit.Framework.Constraints.Constraint.op_LogicalNot(NUnit.Framework.Constraints.Constraint)">
  4936. <summary>
  4937. This operator creates a constraint that is satisfied if the
  4938. argument constraint is not satisfied.
  4939. </summary>
  4940. </member>
  4941. <member name="M:NUnit.Framework.Constraints.Constraint.After(System.Int32)">
  4942. <summary>
  4943. Returns a DelayedConstraint with the specified delay time.
  4944. </summary>
  4945. <param name="delayInMilliseconds">The delay in milliseconds.</param>
  4946. <returns></returns>
  4947. </member>
  4948. <member name="M:NUnit.Framework.Constraints.Constraint.After(System.Int32,System.Int32)">
  4949. <summary>
  4950. Returns a DelayedConstraint with the specified delay time
  4951. and polling interval.
  4952. </summary>
  4953. <param name="delayInMilliseconds">The delay in milliseconds.</param>
  4954. <param name="pollingInterval">The interval at which to test the constraint.</param>
  4955. <returns></returns>
  4956. </member>
  4957. <member name="P:NUnit.Framework.Constraints.Constraint.DisplayName">
  4958. <summary>
  4959. The display name of this Constraint for use by ToString().
  4960. The default value is the name of the constraint with
  4961. trailing "Constraint" removed. Derived classes may set
  4962. this to another name in their constructors.
  4963. </summary>
  4964. </member>
  4965. <member name="P:NUnit.Framework.Constraints.Constraint.And">
  4966. <summary>
  4967. Returns a ConstraintExpression by appending And
  4968. to the current constraint.
  4969. </summary>
  4970. </member>
  4971. <member name="P:NUnit.Framework.Constraints.Constraint.With">
  4972. <summary>
  4973. Returns a ConstraintExpression by appending And
  4974. to the current constraint.
  4975. </summary>
  4976. </member>
  4977. <member name="P:NUnit.Framework.Constraints.Constraint.Or">
  4978. <summary>
  4979. Returns a ConstraintExpression by appending Or
  4980. to the current constraint.
  4981. </summary>
  4982. </member>
  4983. <member name="T:NUnit.Framework.Constraints.Constraint.UnsetObject">
  4984. <summary>
  4985. Class used to detect any derived constraints
  4986. that fail to set the actual value in their
  4987. Matches override.
  4988. </summary>
  4989. </member>
  4990. <member name="F:NUnit.Framework.Constraints.PrefixConstraint.baseConstraint">
  4991. <summary>
  4992. The base constraint
  4993. </summary>
  4994. </member>
  4995. <member name="M:NUnit.Framework.Constraints.PrefixConstraint.#ctor(NUnit.Framework.Constraints.IResolveConstraint)">
  4996. <summary>
  4997. Construct given a base constraint
  4998. </summary>
  4999. <param name="resolvable"></param>
  5000. </member>
  5001. <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  5002. <summary>
  5003. Construct an AllItemsConstraint on top of an existing constraint
  5004. </summary>
  5005. <param name="itemConstraint"></param>
  5006. </member>
  5007. <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.Matches(System.Object)">
  5008. <summary>
  5009. Apply the item constraint to each item in the collection,
  5010. failing if any item fails.
  5011. </summary>
  5012. <param name="actual"></param>
  5013. <returns></returns>
  5014. </member>
  5015. <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  5016. <summary>
  5017. Write a description of this constraint to a MessageWriter
  5018. </summary>
  5019. <param name="writer"></param>
  5020. </member>
  5021. <member name="T:NUnit.Framework.Constraints.AndConstraint">
  5022. <summary>
  5023. AndConstraint succeeds only if both members succeed.
  5024. </summary>
  5025. </member>
  5026. <member name="T:NUnit.Framework.Constraints.BinaryConstraint">
  5027. <summary>
  5028. BinaryConstraint is the abstract base of all constraints
  5029. that combine two other constraints in some fashion.
  5030. </summary>
  5031. </member>
  5032. <member name="F:NUnit.Framework.Constraints.BinaryConstraint.left">
  5033. <summary>
  5034. The first constraint being combined
  5035. </summary>
  5036. </member>
  5037. <member name="F:NUnit.Framework.Constraints.BinaryConstraint.right">
  5038. <summary>
  5039. The second constraint being combined
  5040. </summary>
  5041. </member>
  5042. <member name="M:NUnit.Framework.Constraints.BinaryConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  5043. <summary>
  5044. Construct a BinaryConstraint from two other constraints
  5045. </summary>
  5046. <param name="left">The first constraint</param>
  5047. <param name="right">The second constraint</param>
  5048. </member>
  5049. <member name="M:NUnit.Framework.Constraints.AndConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  5050. <summary>
  5051. Create an AndConstraint from two other constraints
  5052. </summary>
  5053. <param name="left">The first constraint</param>
  5054. <param name="right">The second constraint</param>
  5055. </member>
  5056. <member name="M:NUnit.Framework.Constraints.AndConstraint.Matches(System.Object)">
  5057. <summary>
  5058. Apply both member constraints to an actual value, succeeding
  5059. succeeding only if both of them succeed.
  5060. </summary>
  5061. <param name="actual">The actual value</param>
  5062. <returns>True if the constraints both succeeded</returns>
  5063. </member>
  5064. <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  5065. <summary>
  5066. Write a description for this contraint to a MessageWriter
  5067. </summary>
  5068. <param name="writer">The MessageWriter to receive the description</param>
  5069. </member>
  5070. <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  5071. <summary>
  5072. Write the actual value for a failing constraint test to a
  5073. MessageWriter. The default implementation simply writes
  5074. the raw value of actual, leaving it to the writer to
  5075. perform any formatting.
  5076. </summary>
  5077. <param name="writer">The writer on which the actual value is displayed</param>
  5078. </member>
  5079. <member name="T:NUnit.Framework.Constraints.AssignableFromConstraint">
  5080. <summary>
  5081. AssignableFromConstraint is used to test that an object
  5082. can be assigned from a given Type.
  5083. </summary>
  5084. </member>
  5085. <member name="T:NUnit.Framework.Constraints.TypeConstraint">
  5086. <summary>
  5087. TypeConstraint is the abstract base for constraints
  5088. that take a Type as their expected value.
  5089. </summary>
  5090. </member>
  5091. <member name="F:NUnit.Framework.Constraints.TypeConstraint.expectedType">
  5092. <summary>
  5093. The expected Type used by the constraint
  5094. </summary>
  5095. </member>
  5096. <member name="M:NUnit.Framework.Constraints.TypeConstraint.#ctor(System.Type)">
  5097. <summary>
  5098. Construct a TypeConstraint for a given Type
  5099. </summary>
  5100. <param name="type"></param>
  5101. </member>
  5102. <member name="M:NUnit.Framework.Constraints.TypeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  5103. <summary>
  5104. Write the actual value for a failing constraint test to a
  5105. MessageWriter. TypeConstraints override this method to write
  5106. the name of the type.
  5107. </summary>
  5108. <param name="writer">The writer on which the actual value is displayed</param>
  5109. </member>
  5110. <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.#ctor(System.Type)">
  5111. <summary>
  5112. Construct an AssignableFromConstraint for the type provided
  5113. </summary>
  5114. <param name="type"></param>
  5115. </member>
  5116. <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.Matches(System.Object)">
  5117. <summary>
  5118. Test whether an object can be assigned from the specified type
  5119. </summary>
  5120. <param name="actual">The object to be tested</param>
  5121. <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>
  5122. </member>
  5123. <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  5124. <summary>
  5125. Write a description of this constraint to a MessageWriter
  5126. </summary>
  5127. <param name="writer">The MessageWriter to use</param>
  5128. </member>
  5129. <member name="T:NUnit.Framework.Constraints.AssignableToConstraint">
  5130. <summary>
  5131. AssignableToConstraint is used to test that an object
  5132. can be assigned to a given Type.
  5133. </summary>
  5134. </member>
  5135. <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.#ctor(System.Type)">
  5136. <summary>
  5137. Construct an AssignableToConstraint for the type provided
  5138. </summary>
  5139. <param name="type"></param>
  5140. </member>
  5141. <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.Matches(System.Object)">
  5142. <summary>
  5143. Test whether an object can be assigned to the specified type
  5144. </summary>
  5145. <param name="actual">The object to be tested</param>
  5146. <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>
  5147. </member>
  5148. <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  5149. <summary>
  5150. Write a description of this constraint to a MessageWriter
  5151. </summary>
  5152. <param name="writer">The MessageWriter to use</param>
  5153. </member>
  5154. <member name="T:NUnit.Framework.Constraints.AttributeConstraint">
  5155. <summary>
  5156. AttributeConstraint tests that a specified attribute is present
  5157. on a Type or other provider and that the value of the attribute
  5158. satisfies some other constraint.
  5159. </summary>
  5160. </member>
  5161. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.#ctor(System.Type,NUnit.Framework.Constraints.Constraint)">
  5162. <summary>
  5163. Constructs an AttributeConstraint for a specified attriute
  5164. Type and base constraint.
  5165. </summary>
  5166. <param name="type"></param>
  5167. <param name="baseConstraint"></param>
  5168. </member>
  5169. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.Matches(System.Object)">
  5170. <summary>
  5171. Determines whether the Type or other provider has the
  5172. expected attribute and if its value matches the
  5173. additional constraint specified.
  5174. </summary>
  5175. </member>
  5176. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  5177. <summary>
  5178. Writes a description of the attribute to the specified writer.
  5179. </summary>
  5180. </member>
  5181. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  5182. <summary>
  5183. Writes the actual value supplied to the specified writer.
  5184. </summary>
  5185. </member>
  5186. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.GetStringRepresentation">
  5187. <summary>
  5188. Returns a string representation of the constraint.
  5189. </summary>
  5190. </member>
  5191. <member name="T:NUnit.Framework.Constraints.AttributeExistsConstraint">
  5192. <summary>
  5193. AttributeExistsConstraint tests for the presence of a
  5194. specified attribute on a Type.
  5195. </summary>
  5196. </member>
  5197. <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.#ctor(System.Type)">
  5198. <summary>
  5199. Constructs an AttributeExistsConstraint for a specific attribute Type
  5200. </summary>
  5201. <param name="type"></param>
  5202. </member>
  5203. <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.Matches(System.Object)">
  5204. <summary>
  5205. Tests whether the object provides the expected attribute.
  5206. </summary>
  5207. <param name="actual">A Type, MethodInfo, or other ICustomAttributeProvider</param>
  5208. <returns>True if the expected attribute is present, otherwise false</returns>
  5209. </member>
  5210. <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  5211. <summary>
  5212. Writes the description of the constraint to the specified writer
  5213. </summary>
  5214. </member>
  5215. <member name="T:NUnit.Framework.Constraints.BasicConstraint">
  5216. <summary>
  5217. BasicConstraint is the abstract base for constraints that
  5218. perform a simple comparison to a constant value.
  5219. </summary>
  5220. </member>
  5221. <member name="M:NUnit.Framework.Constraints.BasicConstraint.#ctor(System.Object,System.String)">
  5222. <summary>
  5223. Initializes a new instance of the <see cref="T:BasicConstraint"/> class.
  5224. </summary>
  5225. <param name="expected">The expected.</param>
  5226. <param name="description">The description.</param>
  5227. </member>
  5228. <member name="M:NUnit.Framework.Constraints.BasicConstraint.Matches(System.Object)">
  5229. <summary>
  5230. Test whether the constraint is satisfied by a given value
  5231. </summary>
  5232. <param name="actual">The value to be tested</param>
  5233. <returns>True for success, false for failure</returns>
  5234. </member>
  5235. <member name="M:NUnit.Framework.Constraints.BasicConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  5236. <summary>
  5237. Write the constraint description to a MessageWriter
  5238. </summary>
  5239. <param name="writer">The writer on which the description is displayed</param>
  5240. </member>
  5241. <member name="T:NUnit.Framework.Constraints.CollectionConstraint">
  5242. <summary>
  5243. CollectionConstraint is the abstract base class for
  5244. constraints that operate on collections.
  5245. </summary>
  5246. </member>
  5247. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.#ctor">
  5248. <summary>
  5249. Construct an empty CollectionConstraint
  5250. </summary>
  5251. </member>
  5252. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.#ctor(System.Object)">
  5253. <summary>
  5254. Construct a CollectionConstraint
  5255. </summary>
  5256. <param name="arg"></param>
  5257. </member>
  5258. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.IsEmpty(System.Collections.IEnumerable)">
  5259. <summary>
  5260. Determines whether the specified enumerable is empty.
  5261. </summary>
  5262. <param name="enumerable">The enumerable.</param>
  5263. <returns>
  5264. <c>true</c> if the specified enumerable is empty; otherwise, <c>false</c>.
  5265. </returns>
  5266. </member>
  5267. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.Matches(System.Object)">
  5268. <summary>
  5269. Test whether the constraint is satisfied by a given value
  5270. </summary>
  5271. <param name="actual">The value to be tested</param>
  5272. <returns>True for success, false for failure</returns>
  5273. </member>
  5274. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.doMatch(System.Collections.IEnumerable)">
  5275. <summary>
  5276. Protected method to be implemented by derived classes
  5277. </summary>
  5278. <param name="collection"></param>
  5279. <returns></returns>
  5280. </member>
  5281. <member name="T:NUnit.Framework.Constraints.CollectionContainsConstraint">
  5282. <summary>
  5283. CollectionContainsConstraint is used to test whether a collection
  5284. contains an expected object as a member.
  5285. </summary>
  5286. </member>
  5287. <member name="T:NUnit.Framework.Constraints.CollectionItemsEqualConstraint">
  5288. <summary>
  5289. CollectionItemsEqualConstraint is the abstract base class for all
  5290. collection constraints that apply some notion of item equality
  5291. as a part of their operation.
  5292. </summary>
  5293. </member>
  5294. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor">
  5295. <summary>
  5296. Construct an empty CollectionConstraint
  5297. </summary>
  5298. </member>
  5299. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor(System.Object)">
  5300. <summary>
  5301. Construct a CollectionConstraint
  5302. </summary>
  5303. <param name="arg"></param>
  5304. </member>
  5305. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(NUnit.Framework.Constraints.EqualityAdapter)">
  5306. <summary>
  5307. Flag the constraint to use the supplied EqualityAdapter.
  5308. NOTE: For internal use only.
  5309. </summary>
  5310. <param name="adapter">The EqualityAdapter to use.</param>
  5311. <returns>Self.</returns>
  5312. </member>
  5313. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IComparer)">
  5314. <summary>
  5315. Flag the constraint to use the supplied IComparer object.
  5316. </summary>
  5317. <param name="comparer">The IComparer object to use.</param>
  5318. <returns>Self.</returns>
  5319. </member>
  5320. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  5321. <summary>
  5322. Flag the constraint to use the supplied IComparer object.
  5323. </summary>
  5324. <param name="comparer">The IComparer object to use.</param>
  5325. <returns>Self.</returns>
  5326. </member>
  5327. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Comparison{``0})">
  5328. <summary>
  5329. Flag the constraint to use the supplied Comparison object.
  5330. </summary>
  5331. <param name="comparer">The IComparer object to use.</param>
  5332. <returns>Self.</returns>
  5333. </member>
  5334. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IEqualityComparer)">
  5335. <summary>
  5336. Flag the constraint to use the supplied IEqualityComparer object.
  5337. </summary>
  5338. <param name="comparer">The IComparer object to use.</param>
  5339. <returns>Self.</returns>
  5340. </member>
  5341. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
  5342. <summary>
  5343. Flag the constraint to use the supplied IEqualityComparer object.
  5344. </summary>
  5345. <param name="comparer">The IComparer object to use.</param>
  5346. <returns>Self.</returns>
  5347. </member>
  5348. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.ItemsEqual(System.Object,System.Object)">
  5349. <summary>
  5350. Compares two collection members for equality
  5351. </summary>
  5352. </member>
  5353. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Tally(System.Collections.IEnumerable)">
  5354. <summary>
  5355. Return a new CollectionTally for use in making tests
  5356. </summary>
  5357. <param name="c">The collection to be included in the tally</param>
  5358. </member>
  5359. <member name="P:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.IgnoreCase">
  5360. <summary>
  5361. Flag the constraint to ignore case and return self.
  5362. </summary>
  5363. </member>
  5364. <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.#ctor(System.Object)">
  5365. <summary>
  5366. Construct a CollectionContainsConstraint
  5367. </summary>
  5368. <param name="expected"></param>
  5369. </member>
  5370. <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.doMatch(System.Collections.IEnumerable)">
  5371. <summary>
  5372. Test whether the expected item is contained in the collection
  5373. </summary>
  5374. <param name="actual"></param>
  5375. <returns></returns>
  5376. </member>
  5377. <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  5378. <summary>
  5379. Write a descripton of the constraint to a MessageWriter
  5380. </summary>
  5381. <param name="writer"></param>
  5382. </member>
  5383. <member name="T:NUnit.Framework.Constraints.CollectionEquivalentConstraint">
  5384. <summary>
  5385. CollectionEquivalentCOnstraint is used to determine whether two
  5386. collections are equivalent.
  5387. </summary>
  5388. </member>
  5389. <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.#ctor(System.Collections.IEnumerable)">
  5390. <summary>
  5391. Construct a CollectionEquivalentConstraint
  5392. </summary>
  5393. <param name="expected"></param>
  5394. </member>
  5395. <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.doMatch(System.Collections.IEnumerable)">
  5396. <summary>
  5397. Test whether two collections are equivalent
  5398. </summary>
  5399. <param name="actual"></param>
  5400. <returns></returns>
  5401. </member>
  5402. <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  5403. <summary>
  5404. Write a description of this constraint to a MessageWriter
  5405. </summary>
  5406. <param name="writer"></param>
  5407. </member>
  5408. <member name="T:NUnit.Framework.Constraints.CollectionSubsetConstraint">
  5409. <summary>
  5410. CollectionSubsetConstraint is used to determine whether
  5411. one collection is a subset of another
  5412. </summary>
  5413. </member>
  5414. <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.#ctor(System.Collections.IEnumerable)">
  5415. <summary>
  5416. Construct a CollectionSubsetConstraint
  5417. </summary>
  5418. <param name="expected">The collection that the actual value is expected to be a subset of</param>
  5419. </member>
  5420. <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.doMatch(System.Collections.IEnumerable)">
  5421. <summary>
  5422. Test whether the actual collection is a subset of
  5423. the expected collection provided.
  5424. </summary>
  5425. <param name="actual"></param>
  5426. <returns></returns>
  5427. </member>
  5428. <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  5429. <summary>
  5430. Write a description of this constraint to a MessageWriter
  5431. </summary>
  5432. <param name="writer"></param>
  5433. </member>
  5434. <member name="T:NUnit.Framework.Constraints.CollectionTally">
  5435. <summary>
  5436. CollectionTally counts (tallies) the number of
  5437. occurences of each object in one or more enumerations.
  5438. </summary>
  5439. </member>
  5440. <member name="M:NUnit.Framework.Constraints.CollectionTally.#ctor(NUnit.Framework.Constraints.NUnitEqualityComparer,System.Collections.IEnumerable)">
  5441. <summary>
  5442. Construct a CollectionTally object from a comparer and a collection
  5443. </summary>
  5444. </member>
  5445. <member name="M:NUnit.Framework.Constraints.CollectionTally.TryRemove(System.Object)">
  5446. <summary>
  5447. Try to remove an object from the tally
  5448. </summary>
  5449. <param name="o">The object to remove</param>
  5450. <returns>True if successful, false if the object was not found</returns>
  5451. </member>
  5452. <member name="M:NUnit.Framework.Constraints.CollectionTally.TryRemove(System.Collections.IEnumerable)">
  5453. <summary>
  5454. Try to remove a set of objects from the tally
  5455. </summary>
  5456. <param name="c">The objects to remove</param>
  5457. <returns>True if successful, false if any object was not found</returns>
  5458. </member>
  5459. <member name="P:NUnit.Framework.Constraints.CollectionTally.Count">
  5460. <summary>
  5461. The number of objects remaining in the tally
  5462. </summary>
  5463. </member>
  5464. <member name="T:NUnit.Framework.Constraints.ComparisonAdapter">
  5465. <summary>
  5466. ComparisonAdapter class centralizes all comparisons of
  5467. values in NUnit, adapting to the use of any provided
  5468. IComparer, IComparer&lt;T&gt; or Comparison&lt;T&gt;
  5469. </summary>
  5470. </member>
  5471. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For(System.Collections.IComparer)">
  5472. <summary>
  5473. Returns a ComparisonAdapter that wraps an IComparer
  5474. </summary>
  5475. </member>
  5476. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Collections.Generic.IComparer{``0})">
  5477. <summary>
  5478. Returns a ComparisonAdapter that wraps an IComparer&lt;T&gt;
  5479. </summary>
  5480. </member>
  5481. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Comparison{``0})">
  5482. <summary>
  5483. Returns a ComparisonAdapter that wraps a Comparison&lt;T&gt;
  5484. </summary>
  5485. </member>
  5486. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.Compare(System.Object,System.Object)">
  5487. <summary>
  5488. Compares two objects
  5489. </summary>
  5490. </member>
  5491. <member name="P:NUnit.Framework.Constraints.ComparisonAdapter.Default">
  5492. <summary>
  5493. Gets the default ComparisonAdapter, which wraps an
  5494. NUnitComparer object.
  5495. </summary>
  5496. </member>
  5497. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.#ctor(System.Collections.IComparer)">
  5498. <summary>
  5499. Construct a ComparisonAdapter for an IComparer
  5500. </summary>
  5501. </member>
  5502. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.Compare(System.Object,System.Object)">
  5503. <summary>
  5504. Compares two objects
  5505. </summary>
  5506. <param name="expected"></param>
  5507. <param name="actual"></param>
  5508. <returns></returns>
  5509. </member>
  5510. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.DefaultComparisonAdapter.#ctor">
  5511. <summary>
  5512. Construct a default ComparisonAdapter
  5513. </summary>
  5514. </member>
  5515. <member name="T:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1">
  5516. <summary>
  5517. ComparisonAdapter&lt;T&gt; extends ComparisonAdapter and
  5518. allows use of an IComparer&lt;T&gt; or Comparison&lt;T&gt;
  5519. to actually perform the comparison.
  5520. </summary>
  5521. </member>
  5522. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.#ctor(System.Collections.Generic.IComparer{`0})">
  5523. <summary>
  5524. Construct a ComparisonAdapter for an IComparer&lt;T&gt;
  5525. </summary>
  5526. </member>
  5527. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.Compare(System.Object,System.Object)">
  5528. <summary>
  5529. Compare a Type T to an object
  5530. </summary>
  5531. </member>
  5532. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.#ctor(System.Comparison{`0})">
  5533. <summary>
  5534. Construct a ComparisonAdapter for a Comparison&lt;T&gt;
  5535. </summary>
  5536. </member>
  5537. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.Compare(System.Object,System.Object)">
  5538. <summary>
  5539. Compare a Type T to an object
  5540. </summary>
  5541. </member>
  5542. <member name="T:NUnit.Framework.Constraints.ComparisonConstraint">
  5543. <summary>
  5544. Abstract base class for constraints that compare values to
  5545. determine if one is greater than, equal to or less than
  5546. the other. This class supplies the Using modifiers.
  5547. </summary>
  5548. </member>
  5549. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.comparer">
  5550. <summary>
  5551. ComparisonAdapter to be used in making the comparison
  5552. </summary>
  5553. </member>
  5554. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.Object)">
  5555. <summary>
  5556. Initializes a new instance of the <see cref="T:ComparisonConstraint"/> class.
  5557. </summary>
  5558. </member>
  5559. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.Object,System.Object)">
  5560. <summary>
  5561. Initializes a new instance of the <see cref="T:ComparisonConstraint"/> class.
  5562. </summary>
  5563. </member>
  5564. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using(System.Collections.IComparer)">
  5565. <summary>
  5566. Modifies the constraint to use an IComparer and returns self
  5567. </summary>
  5568. </member>
  5569. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  5570. <summary>
  5571. Modifies the constraint to use an IComparer&lt;T&gt; and returns self
  5572. </summary>
  5573. </member>
  5574. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Comparison{``0})">
  5575. <summary>
  5576. Modifies the constraint to use a Comparison&lt;T&gt; and returns self
  5577. </summary>
  5578. </member>
  5579. <member name="T:NUnit.Framework.Constraints.ActualValueDelegate`1">
  5580. <summary>
  5581. Delegate used to delay evaluation of the actual value
  5582. to be used in evaluating a constraint
  5583. </summary>
  5584. </member>
  5585. <member name="T:NUnit.Framework.Constraints.ConstraintBuilder">
  5586. <summary>
  5587. ConstraintBuilder maintains the stacks that are used in
  5588. processing a ConstraintExpression. An OperatorStack
  5589. is used to hold operators that are waiting for their
  5590. operands to be reognized. a ConstraintStack holds
  5591. input constraints as well as the results of each
  5592. operator applied.
  5593. </summary>
  5594. </member>
  5595. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.#ctor">
  5596. <summary>
  5597. Initializes a new instance of the <see cref="T:ConstraintBuilder"/> class.
  5598. </summary>
  5599. </member>
  5600. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.ConstraintOperator)">
  5601. <summary>
  5602. Appends the specified operator to the expression by first
  5603. reducing the operator stack and then pushing the new
  5604. operator on the stack.
  5605. </summary>
  5606. <param name="op">The operator to push.</param>
  5607. </member>
  5608. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.Constraint)">
  5609. <summary>
  5610. Appends the specified constraint to the expresson by pushing
  5611. it on the constraint stack.
  5612. </summary>
  5613. <param name="constraint">The constraint to push.</param>
  5614. </member>
  5615. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.SetTopOperatorRightContext(System.Object)">
  5616. <summary>
  5617. Sets the top operator right context.
  5618. </summary>
  5619. <param name="rightContext">The right context.</param>
  5620. </member>
  5621. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ReduceOperatorStack(System.Int32)">
  5622. <summary>
  5623. Reduces the operator stack until the topmost item
  5624. precedence is greater than or equal to the target precedence.
  5625. </summary>
  5626. <param name="targetPrecedence">The target precedence.</param>
  5627. </member>
  5628. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Resolve">
  5629. <summary>
  5630. Resolves this instance, returning a Constraint. If the builder
  5631. is not currently in a resolvable state, an exception is thrown.
  5632. </summary>
  5633. <returns>The resolved constraint</returns>
  5634. </member>
  5635. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.IsResolvable">
  5636. <summary>
  5637. Gets a value indicating whether this instance is resolvable.
  5638. </summary>
  5639. <value>
  5640. <c>true</c> if this instance is resolvable; otherwise, <c>false</c>.
  5641. </value>
  5642. </member>
  5643. <member name="T:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack">
  5644. <summary>
  5645. OperatorStack is a type-safe stack for holding ConstraintOperators
  5646. </summary>
  5647. </member>
  5648. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  5649. <summary>
  5650. Initializes a new instance of the <see cref="T:OperatorStack"/> class.
  5651. </summary>
  5652. <param name="builder">The builder.</param>
  5653. </member>
  5654. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Push(NUnit.Framework.Constraints.ConstraintOperator)">
  5655. <summary>
  5656. Pushes the specified operator onto the stack.
  5657. </summary>
  5658. <param name="op">The op.</param>
  5659. </member>
  5660. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Pop">
  5661. <summary>
  5662. Pops the topmost operator from the stack.
  5663. </summary>
  5664. <returns></returns>
  5665. </member>
  5666. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Empty">
  5667. <summary>
  5668. Gets a value indicating whether this <see cref="T:OpStack"/> is empty.
  5669. </summary>
  5670. <value><c>true</c> if empty; otherwise, <c>false</c>.</value>
  5671. </member>
  5672. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Top">
  5673. <summary>
  5674. Gets the topmost operator without modifying the stack.
  5675. </summary>
  5676. <value>The top.</value>
  5677. </member>
  5678. <member name="T:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack">
  5679. <summary>
  5680. ConstraintStack is a type-safe stack for holding Constraints
  5681. </summary>
  5682. </member>
  5683. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  5684. <summary>
  5685. Initializes a new instance of the <see cref="T:ConstraintStack"/> class.
  5686. </summary>
  5687. <param name="builder">The builder.</param>
  5688. </member>
  5689. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Push(NUnit.Framework.Constraints.Constraint)">
  5690. <summary>
  5691. Pushes the specified constraint. As a side effect,
  5692. the constraint's builder field is set to the
  5693. ConstraintBuilder owning this stack.
  5694. </summary>
  5695. <param name="constraint">The constraint.</param>
  5696. </member>
  5697. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Pop">
  5698. <summary>
  5699. Pops this topmost constrait from the stack.
  5700. As a side effect, the constraint's builder
  5701. field is set to null.
  5702. </summary>
  5703. <returns></returns>
  5704. </member>
  5705. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Empty">
  5706. <summary>
  5707. Gets a value indicating whether this <see cref="T:ConstraintStack"/> is empty.
  5708. </summary>
  5709. <value><c>true</c> if empty; otherwise, <c>false</c>.</value>
  5710. </member>
  5711. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Top">
  5712. <summary>
  5713. Gets the topmost constraint without modifying the stack.
  5714. </summary>
  5715. <value>The topmost constraint</value>
  5716. </member>
  5717. <member name="T:NUnit.Framework.Constraints.ConstraintExpression">
  5718. <summary>
  5719. ConstraintExpression represents a compound constraint in the
  5720. process of being constructed from a series of syntactic elements.
  5721. Individual elements are appended to the expression as they are
  5722. reognized. Once an actual Constraint is appended, the expression
  5723. returns a resolvable Constraint.
  5724. </summary>
  5725. </member>
  5726. <member name="T:NUnit.Framework.Constraints.ConstraintExpressionBase">
  5727. <summary>
  5728. ConstraintExpressionBase is the abstract base class for the
  5729. ConstraintExpression class, which represents a
  5730. compound constraint in the process of being constructed
  5731. from a series of syntactic elements.
  5732. NOTE: ConstraintExpressionBase is separate because the
  5733. ConstraintExpression class was generated in earlier
  5734. versions of NUnit. The two classes may be combined
  5735. in a future version.
  5736. </summary>
  5737. </member>
  5738. <member name="F:NUnit.Framework.Constraints.ConstraintExpressionBase.builder">
  5739. <summary>
  5740. The ConstraintBuilder holding the elements recognized so far
  5741. </summary>
  5742. </member>
  5743. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor">
  5744. <summary>
  5745. Initializes a new instance of the <see cref="T:ConstraintExpressionBase"/> class.
  5746. </summary>
  5747. </member>
  5748. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  5749. <summary>
  5750. Initializes a new instance of the <see cref="T:ConstraintExpressionBase"/>
  5751. class passing in a ConstraintBuilder, which may be pre-populated.
  5752. </summary>
  5753. <param name="builder">The builder.</param>
  5754. </member>
  5755. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.ToString">
  5756. <summary>
  5757. Returns a string representation of the expression as it
  5758. currently stands. This should only be used for testing,
  5759. since it has the side-effect of resolving the expression.
  5760. </summary>
  5761. <returns></returns>
  5762. </member>
  5763. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.ConstraintOperator)">
  5764. <summary>
  5765. Appends an operator to the expression and returns the
  5766. resulting expression itself.
  5767. </summary>
  5768. </member>
  5769. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.SelfResolvingOperator)">
  5770. <summary>
  5771. Appends a self-resolving operator to the expression and
  5772. returns a new ResolvableConstraintExpression.
  5773. </summary>
  5774. </member>
  5775. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.Constraint)">
  5776. <summary>
  5777. Appends a constraint to the expression and returns that
  5778. constraint, which is associated with the current state
  5779. of the expression being built.
  5780. </summary>
  5781. </member>
  5782. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.#ctor">
  5783. <summary>
  5784. Initializes a new instance of the <see cref="T:ConstraintExpression"/> class.
  5785. </summary>
  5786. </member>
  5787. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  5788. <summary>
  5789. Initializes a new instance of the <see cref="T:ConstraintExpression"/>
  5790. class passing in a ConstraintBuilder, which may be pre-populated.
  5791. </summary>
  5792. <param name="builder">The builder.</param>
  5793. </member>
  5794. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Exactly(System.Int32)">
  5795. <summary>
  5796. Returns a ConstraintExpression, which will apply
  5797. the following constraint to all members of a collection,
  5798. succeeding only if a specified number of them succeed.
  5799. </summary>
  5800. </member>
  5801. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Property(System.String)">
  5802. <summary>
  5803. Returns a new PropertyConstraintExpression, which will either
  5804. test for the existence of the named property on the object
  5805. being tested or apply any following constraint to that property.
  5806. </summary>
  5807. </member>
  5808. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Attribute(System.Type)">
  5809. <summary>
  5810. Returns a new AttributeConstraint checking for the
  5811. presence of a particular attribute on an object.
  5812. </summary>
  5813. </member>
  5814. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Attribute``1">
  5815. <summary>
  5816. Returns a new AttributeConstraint checking for the
  5817. presence of a particular attribute on an object.
  5818. </summary>
  5819. </member>
  5820. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(NUnit.Framework.Constraints.IResolveConstraint)">
  5821. <summary>
  5822. Returns the constraint provided as an argument - used to allow custom
  5823. custom constraints to easily participate in the syntax.
  5824. </summary>
  5825. </member>
  5826. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches``1(System.Predicate{``0})">
  5827. <summary>
  5828. Returns the constraint provided as an argument - used to allow custom
  5829. custom constraints to easily participate in the syntax.
  5830. </summary>
  5831. </member>
  5832. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EqualTo(System.Object)">
  5833. <summary>
  5834. Returns a constraint that tests two items for equality
  5835. </summary>
  5836. </member>
  5837. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SameAs(System.Object)">
  5838. <summary>
  5839. Returns a constraint that tests that two references are the same object
  5840. </summary>
  5841. </member>
  5842. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThan(System.Object)">
  5843. <summary>
  5844. Returns a constraint that tests whether the
  5845. actual value is greater than the suppled argument
  5846. </summary>
  5847. </member>
  5848. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThanOrEqualTo(System.Object)">
  5849. <summary>
  5850. Returns a constraint that tests whether the
  5851. actual value is greater than or equal to the suppled argument
  5852. </summary>
  5853. </member>
  5854. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AtLeast(System.Object)">
  5855. <summary>
  5856. Returns a constraint that tests whether the
  5857. actual value is greater than or equal to the suppled argument
  5858. </summary>
  5859. </member>
  5860. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.LessThan(System.Object)">
  5861. <summary>
  5862. Returns a constraint that tests whether the
  5863. actual value is less than the suppled argument
  5864. </summary>
  5865. </member>
  5866. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.LessThanOrEqualTo(System.Object)">
  5867. <summary>
  5868. Returns a constraint that tests whether the
  5869. actual value is less than or equal to the suppled argument
  5870. </summary>
  5871. </member>
  5872. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AtMost(System.Object)">
  5873. <summary>
  5874. Returns a constraint that tests whether the
  5875. actual value is less than or equal to the suppled argument
  5876. </summary>
  5877. </member>
  5878. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf(System.Type)">
  5879. <summary>
  5880. Returns a constraint that tests whether the actual
  5881. value is of the exact type supplied as an argument.
  5882. </summary>
  5883. </member>
  5884. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf``1">
  5885. <summary>
  5886. Returns a constraint that tests whether the actual
  5887. value is of the exact type supplied as an argument.
  5888. </summary>
  5889. </member>
  5890. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf(System.Type)">
  5891. <summary>
  5892. Returns a constraint that tests whether the actual value
  5893. is of the type supplied as an argument or a derived type.
  5894. </summary>
  5895. </member>
  5896. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf``1">
  5897. <summary>
  5898. Returns a constraint that tests whether the actual value
  5899. is of the type supplied as an argument or a derived type.
  5900. </summary>
  5901. </member>
  5902. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType(System.Type)">
  5903. <summary>
  5904. Returns a constraint that tests whether the actual value
  5905. is of the type supplied as an argument or a derived type.
  5906. </summary>
  5907. </member>
  5908. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType``1">
  5909. <summary>
  5910. Returns a constraint that tests whether the actual value
  5911. is of the type supplied as an argument or a derived type.
  5912. </summary>
  5913. </member>
  5914. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom(System.Type)">
  5915. <summary>
  5916. Returns a constraint that tests whether the actual value
  5917. is assignable from the type supplied as an argument.
  5918. </summary>
  5919. </member>
  5920. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom``1">
  5921. <summary>
  5922. Returns a constraint that tests whether the actual value
  5923. is assignable from the type supplied as an argument.
  5924. </summary>
  5925. </member>
  5926. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo(System.Type)">
  5927. <summary>
  5928. Returns a constraint that tests whether the actual value
  5929. is assignable from the type supplied as an argument.
  5930. </summary>
  5931. </member>
  5932. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo``1">
  5933. <summary>
  5934. Returns a constraint that tests whether the actual value
  5935. is assignable from the type supplied as an argument.
  5936. </summary>
  5937. </member>
  5938. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EquivalentTo(System.Collections.IEnumerable)">
  5939. <summary>
  5940. Returns a constraint that tests whether the actual value
  5941. is a collection containing the same elements as the
  5942. collection supplied as an argument.
  5943. </summary>
  5944. </member>
  5945. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SubsetOf(System.Collections.IEnumerable)">
  5946. <summary>
  5947. Returns a constraint that tests whether the actual value
  5948. is a subset of the collection supplied as an argument.
  5949. </summary>
  5950. </member>
  5951. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Member(System.Object)">
  5952. <summary>
  5953. Returns a new CollectionContainsConstraint checking for the
  5954. presence of a particular object in the collection.
  5955. </summary>
  5956. </member>
  5957. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.Object)">
  5958. <summary>
  5959. Returns a new CollectionContainsConstraint checking for the
  5960. presence of a particular object in the collection.
  5961. </summary>
  5962. </member>
  5963. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.String)">
  5964. <summary>
  5965. Returns a new ContainsConstraint. This constraint
  5966. will, in turn, make use of the appropriate second-level
  5967. constraint, depending on the type of the actual argument.
  5968. This overload is only used if the item sought is a string,
  5969. since any other type implies that we are looking for a
  5970. collection member.
  5971. </summary>
  5972. </member>
  5973. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringContaining(System.String)">
  5974. <summary>
  5975. Returns a constraint that succeeds if the actual
  5976. value contains the substring supplied as an argument.
  5977. </summary>
  5978. </member>
  5979. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.ContainsSubstring(System.String)">
  5980. <summary>
  5981. Returns a constraint that succeeds if the actual
  5982. value contains the substring supplied as an argument.
  5983. </summary>
  5984. </member>
  5985. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StartsWith(System.String)">
  5986. <summary>
  5987. Returns a constraint that succeeds if the actual
  5988. value starts with the substring supplied as an argument.
  5989. </summary>
  5990. </member>
  5991. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringStarting(System.String)">
  5992. <summary>
  5993. Returns a constraint that succeeds if the actual
  5994. value starts with the substring supplied as an argument.
  5995. </summary>
  5996. </member>
  5997. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EndsWith(System.String)">
  5998. <summary>
  5999. Returns a constraint that succeeds if the actual
  6000. value ends with the substring supplied as an argument.
  6001. </summary>
  6002. </member>
  6003. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringEnding(System.String)">
  6004. <summary>
  6005. Returns a constraint that succeeds if the actual
  6006. value ends with the substring supplied as an argument.
  6007. </summary>
  6008. </member>
  6009. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(System.String)">
  6010. <summary>
  6011. Returns a constraint that succeeds if the actual
  6012. value matches the regular expression supplied as an argument.
  6013. </summary>
  6014. </member>
  6015. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringMatching(System.String)">
  6016. <summary>
  6017. Returns a constraint that succeeds if the actual
  6018. value matches the regular expression supplied as an argument.
  6019. </summary>
  6020. </member>
  6021. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SamePath(System.String)">
  6022. <summary>
  6023. Returns a constraint that tests whether the path provided
  6024. is the same as an expected path after canonicalization.
  6025. </summary>
  6026. </member>
  6027. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SubPath(System.String)">
  6028. <summary>
  6029. Returns a constraint that tests whether the path provided
  6030. is the same path or under an expected path after canonicalization.
  6031. </summary>
  6032. </member>
  6033. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SamePathOrUnder(System.String)">
  6034. <summary>
  6035. Returns a constraint that tests whether the path provided
  6036. is the same path or under an expected path after canonicalization.
  6037. </summary>
  6038. </member>
  6039. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InRange``1(``0,``0)">
  6040. <summary>
  6041. Returns a constraint that tests whether the actual value falls
  6042. within a specified range.
  6043. </summary>
  6044. </member>
  6045. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Not">
  6046. <summary>
  6047. Returns a ConstraintExpression that negates any
  6048. following constraint.
  6049. </summary>
  6050. </member>
  6051. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.No">
  6052. <summary>
  6053. Returns a ConstraintExpression that negates any
  6054. following constraint.
  6055. </summary>
  6056. </member>
  6057. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.All">
  6058. <summary>
  6059. Returns a ConstraintExpression, which will apply
  6060. the following constraint to all members of a collection,
  6061. succeeding if all of them succeed.
  6062. </summary>
  6063. </member>
  6064. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Some">
  6065. <summary>
  6066. Returns a ConstraintExpression, which will apply
  6067. the following constraint to all members of a collection,
  6068. succeeding if at least one of them succeeds.
  6069. </summary>
  6070. </member>
  6071. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.None">
  6072. <summary>
  6073. Returns a ConstraintExpression, which will apply
  6074. the following constraint to all members of a collection,
  6075. succeeding if all of them fail.
  6076. </summary>
  6077. </member>
  6078. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Length">
  6079. <summary>
  6080. Returns a new ConstraintExpression, which will apply the following
  6081. constraint to the Length property of the object being tested.
  6082. </summary>
  6083. </member>
  6084. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Count">
  6085. <summary>
  6086. Returns a new ConstraintExpression, which will apply the following
  6087. constraint to the Count property of the object being tested.
  6088. </summary>
  6089. </member>
  6090. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Message">
  6091. <summary>
  6092. Returns a new ConstraintExpression, which will apply the following
  6093. constraint to the Message property of the object being tested.
  6094. </summary>
  6095. </member>
  6096. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.InnerException">
  6097. <summary>
  6098. Returns a new ConstraintExpression, which will apply the following
  6099. constraint to the InnerException property of the object being tested.
  6100. </summary>
  6101. </member>
  6102. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.With">
  6103. <summary>
  6104. With is currently a NOP - reserved for future use.
  6105. </summary>
  6106. </member>
  6107. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Null">
  6108. <summary>
  6109. Returns a constraint that tests for null
  6110. </summary>
  6111. </member>
  6112. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.True">
  6113. <summary>
  6114. Returns a constraint that tests for True
  6115. </summary>
  6116. </member>
  6117. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.False">
  6118. <summary>
  6119. Returns a constraint that tests for False
  6120. </summary>
  6121. </member>
  6122. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Positive">
  6123. <summary>
  6124. Returns a constraint that tests for a positive value
  6125. </summary>
  6126. </member>
  6127. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Negative">
  6128. <summary>
  6129. Returns a constraint that tests for a negative value
  6130. </summary>
  6131. </member>
  6132. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.NaN">
  6133. <summary>
  6134. Returns a constraint that tests for NaN
  6135. </summary>
  6136. </member>
  6137. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Empty">
  6138. <summary>
  6139. Returns a constraint that tests for empty
  6140. </summary>
  6141. </member>
  6142. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Unique">
  6143. <summary>
  6144. Returns a constraint that tests whether a collection
  6145. contains all unique items.
  6146. </summary>
  6147. </member>
  6148. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.BinarySerializable">
  6149. <summary>
  6150. Returns a constraint that tests whether an object graph is serializable in binary format.
  6151. </summary>
  6152. </member>
  6153. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.XmlSerializable">
  6154. <summary>
  6155. Returns a constraint that tests whether an object graph is serializable in xml format.
  6156. </summary>
  6157. </member>
  6158. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Ordered">
  6159. <summary>
  6160. Returns a constraint that tests whether a collection is ordered
  6161. </summary>
  6162. </member>
  6163. <member name="T:NUnit.Framework.Constraints.ContainsConstraint">
  6164. <summary>
  6165. ContainsConstraint tests a whether a string contains a substring
  6166. or a collection contains an object. It postpones the decision of
  6167. which test to use until the type of the actual argument is known.
  6168. This allows testing whether a string is contained in a collection
  6169. or as a substring of another string using the same syntax.
  6170. </summary>
  6171. </member>
  6172. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.#ctor(System.Object)">
  6173. <summary>
  6174. Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.ContainsConstraint"/> class.
  6175. </summary>
  6176. <param name="expected">The expected.</param>
  6177. </member>
  6178. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Matches(System.Object)">
  6179. <summary>
  6180. Test whether the constraint is satisfied by a given value
  6181. </summary>
  6182. <param name="actual">The value to be tested</param>
  6183. <returns>True for success, false for failure</returns>
  6184. </member>
  6185. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  6186. <summary>
  6187. Write the constraint description to a MessageWriter
  6188. </summary>
  6189. <param name="writer">The writer on which the description is displayed</param>
  6190. </member>
  6191. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using(System.Collections.IComparer)">
  6192. <summary>
  6193. Flag the constraint to use the supplied IComparer object.
  6194. </summary>
  6195. <param name="comparer">The IComparer object to use.</param>
  6196. <returns>Self.</returns>
  6197. </member>
  6198. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  6199. <summary>
  6200. Flag the constraint to use the supplied IComparer object.
  6201. </summary>
  6202. <param name="comparer">The IComparer object to use.</param>
  6203. <returns>Self.</returns>
  6204. </member>
  6205. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Comparison{``0})">
  6206. <summary>
  6207. Flag the constraint to use the supplied Comparison object.
  6208. </summary>
  6209. <param name="comparer">The IComparer object to use.</param>
  6210. <returns>Self.</returns>
  6211. </member>
  6212. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using(System.Collections.IEqualityComparer)">
  6213. <summary>
  6214. Flag the constraint to use the supplied IEqualityComparer object.
  6215. </summary>
  6216. <param name="comparer">The IComparer object to use.</param>
  6217. <returns>Self.</returns>
  6218. </member>
  6219. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
  6220. <summary>
  6221. Flag the constraint to use the supplied IEqualityComparer object.
  6222. </summary>
  6223. <param name="comparer">The IComparer object to use.</param>
  6224. <returns>Self.</returns>
  6225. </member>
  6226. <member name="P:NUnit.Framework.Constraints.ContainsConstraint.IgnoreCase">
  6227. <summary>
  6228. Flag the constraint to ignore case and return self.
  6229. </summary>
  6230. </member>
  6231. <member name="T:NUnit.Framework.Constraints.DelayedConstraint">
  6232. <summary>
  6233. Applies a delay to the match so that a match can be evaluated in the future.
  6234. </summary>
  6235. </member>
  6236. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32)">
  6237. <summary>
  6238. Creates a new DelayedConstraint
  6239. </summary>
  6240. <param name="baseConstraint">The inner constraint two decorate</param>
  6241. <param name="delayInMilliseconds">The time interval after which the match is performed</param>
  6242. <exception cref="T:System.InvalidOperationException">If the value of <paramref name="delayInMilliseconds"/> is less than 0</exception>
  6243. </member>
  6244. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32,System.Int32)">
  6245. <summary>
  6246. Creates a new DelayedConstraint
  6247. </summary>
  6248. <param name="baseConstraint">The inner constraint two decorate</param>
  6249. <param name="delayInMilliseconds">The time interval after which the match is performed</param>
  6250. <param name="pollingInterval">The time interval used for polling</param>
  6251. <exception cref="T:System.InvalidOperationException">If the value of <paramref name="delayInMilliseconds"/> is less than 0</exception>
  6252. </member>
  6253. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches(System.Object)">
  6254. <summary>
  6255. Test whether the constraint is satisfied by a given value
  6256. </summary>
  6257. <param name="actual">The value to be tested</param>
  6258. <returns>True for if the base constraint fails, false if it succeeds</returns>
  6259. </member>
  6260. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches``1(NUnit.Framework.Constraints.ActualValueDelegate{``0})">
  6261. <summary>
  6262. Test whether the constraint is satisfied by a delegate
  6263. </summary>
  6264. <param name="del">The delegate whose value is to be tested</param>
  6265. <returns>True for if the base constraint fails, false if it succeeds</returns>
  6266. </member>
  6267. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches``1(``0@)">
  6268. <summary>
  6269. Test whether the constraint is satisfied by a given reference.
  6270. Overridden to wait for the specified delay period before
  6271. calling the base constraint with the dereferenced value.
  6272. </summary>
  6273. <param name="actual">A reference to the value to be tested</param>
  6274. <returns>True for success, false for failure</returns>
  6275. </member>
  6276. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  6277. <summary>
  6278. Write the constraint description to a MessageWriter
  6279. </summary>
  6280. <param name="writer">The writer on which the description is displayed</param>
  6281. </member>
  6282. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  6283. <summary>
  6284. Write the actual value for a failing constraint test to a MessageWriter.
  6285. </summary>
  6286. <param name="writer">The writer on which the actual value is displayed</param>
  6287. </member>
  6288. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.GetStringRepresentation">
  6289. <summary>
  6290. Returns the string representation of the constraint.
  6291. </summary>
  6292. </member>
  6293. <member name="T:NUnit.Framework.Constraints.EmptyCollectionConstraint">
  6294. <summary>
  6295. EmptyCollectionConstraint tests whether a collection is empty.
  6296. </summary>
  6297. </member>
  6298. <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.doMatch(System.Collections.IEnumerable)">
  6299. <summary>
  6300. Check that the collection is empty
  6301. </summary>
  6302. <param name="collection"></param>
  6303. <returns></returns>
  6304. </member>
  6305. <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  6306. <summary>
  6307. Write the constraint description to a MessageWriter
  6308. </summary>
  6309. <param name="writer"></param>
  6310. </member>
  6311. <member name="T:NUnit.Framework.Constraints.EmptyConstraint">
  6312. <summary>
  6313. EmptyConstraint tests a whether a string or collection is empty,
  6314. postponing the decision about which test is applied until the
  6315. type of the actual argument is known.
  6316. </summary>
  6317. </member>
  6318. <member name="M:NUnit.Framework.Constraints.EmptyConstraint.Matches(System.Object)">
  6319. <summary>
  6320. Test whether the constraint is satisfied by a given value
  6321. </summary>
  6322. <param name="actual">The value to be tested</param>
  6323. <returns>True for success, false for failure</returns>
  6324. </member>
  6325. <member name="M:NUnit.Framework.Constraints.EmptyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  6326. <summary>
  6327. Write the constraint description to a MessageWriter
  6328. </summary>
  6329. <param name="writer">The writer on which the description is displayed</param>
  6330. </member>
  6331. <member name="T:NUnit.Framework.Constraints.EmptyDirectoryConstraint">
  6332. <summary>
  6333. EmptyDirectoryConstraint is used to test that a directory is empty
  6334. </summary>
  6335. </member>
  6336. <member name="M:NUnit.Framework.Constraints.EmptyDirectoryConstraint.Matches(System.Object)">
  6337. <summary>
  6338. Test whether the constraint is satisfied by a given value
  6339. </summary>
  6340. <param name="actual">The value to be tested</param>
  6341. <returns>True for success, false for failure</returns>
  6342. </member>
  6343. <member name="M:NUnit.Framework.Constraints.EmptyDirectoryConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  6344. <summary>
  6345. Write the constraint description to a MessageWriter
  6346. </summary>
  6347. <param name="writer">The writer on which the description is displayed</param>
  6348. </member>
  6349. <member name="M:NUnit.Framework.Constraints.EmptyDirectoryConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  6350. <summary>
  6351. Write the actual value for a failing constraint test to a
  6352. MessageWriter. The default implementation simply writes
  6353. the raw value of actual, leaving it to the writer to
  6354. perform any formatting.
  6355. </summary>
  6356. <param name="writer">The writer on which the actual value is displayed</param>
  6357. </member>
  6358. <member name="T:NUnit.Framework.Constraints.EmptyStringConstraint">
  6359. <summary>
  6360. EmptyStringConstraint tests whether a string is empty.
  6361. </summary>
  6362. </member>
  6363. <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.Matches(System.Object)">
  6364. <summary>
  6365. Test whether the constraint is satisfied by a given value
  6366. </summary>
  6367. <param name="actual">The value to be tested</param>
  6368. <returns>True for success, false for failure</returns>
  6369. </member>
  6370. <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  6371. <summary>
  6372. Write the constraint description to a MessageWriter
  6373. </summary>
  6374. <param name="writer">The writer on which the description is displayed</param>
  6375. </member>
  6376. <member name="T:NUnit.Framework.Constraints.EndsWithConstraint">
  6377. <summary>
  6378. EndsWithConstraint can test whether a string ends
  6379. with an expected substring.
  6380. </summary>
  6381. </member>
  6382. <member name="T:NUnit.Framework.Constraints.StringConstraint">
  6383. <summary>
  6384. StringConstraint is the abstract base for constraints
  6385. that operate on strings. It supports the IgnoreCase
  6386. modifier for string operations.
  6387. </summary>
  6388. </member>
  6389. <member name="F:NUnit.Framework.Constraints.StringConstraint.expected">
  6390. <summary>
  6391. The expected value
  6392. </summary>
  6393. </member>
  6394. <member name="F:NUnit.Framework.Constraints.StringConstraint.caseInsensitive">
  6395. <summary>
  6396. Indicates whether tests should be case-insensitive
  6397. </summary>
  6398. </member>
  6399. <member name="M:NUnit.Framework.Constraints.StringConstraint.#ctor(System.String)">
  6400. <summary>
  6401. Constructs a StringConstraint given an expected value
  6402. </summary>
  6403. <param name="expected">The expected value</param>
  6404. </member>
  6405. <member name="M:NUnit.Framework.Constraints.StringConstraint.Matches(System.Object)">
  6406. <summary>
  6407. Test whether the constraint is satisfied by a given value
  6408. </summary>
  6409. <param name="actual">The value to be tested</param>
  6410. <returns>True for success, false for failure</returns>
  6411. </member>
  6412. <member name="M:NUnit.Framework.Constraints.StringConstraint.Matches(System.String)">
  6413. <summary>
  6414. Test whether the constraint is satisfied by a given string
  6415. </summary>
  6416. <param name="actual">The string to be tested</param>
  6417. <returns>True for success, false for failure</returns>
  6418. </member>
  6419. <member name="P:NUnit.Framework.Constraints.StringConstraint.IgnoreCase">
  6420. <summary>
  6421. Modify the constraint to ignore case in matching.
  6422. </summary>
  6423. </member>
  6424. <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.#ctor(System.String)">
  6425. <summary>
  6426. Initializes a new instance of the <see cref="T:EndsWithConstraint"/> class.
  6427. </summary>
  6428. <param name="expected">The expected string</param>
  6429. </member>
  6430. <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.Matches(System.String)">
  6431. <summary>
  6432. Test whether the constraint is matched by the actual value.
  6433. This is a template method, which calls the IsMatch method
  6434. of the derived class.
  6435. </summary>
  6436. <param name="actual"></param>
  6437. <returns></returns>
  6438. </member>
  6439. <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  6440. <summary>
  6441. Write the constraint description to a MessageWriter
  6442. </summary>
  6443. <param name="writer">The writer on which the description is displayed</param>
  6444. </member>
  6445. <member name="T:NUnit.Framework.Constraints.EqualConstraint">
  6446. <summary>
  6447. EqualConstraint is able to compare an actual value with the
  6448. expected value provided in its constructor. Two objects are
  6449. considered equal if both are null, or if both have the same
  6450. value. NUnit has special semantics for some object types.
  6451. </summary>
  6452. </member>
  6453. <member name="F:NUnit.Framework.Constraints.EqualConstraint.clipStrings">
  6454. <summary>
  6455. If true, strings in error messages will be clipped
  6456. </summary>
  6457. </member>
  6458. <member name="F:NUnit.Framework.Constraints.EqualConstraint.comparer">
  6459. <summary>
  6460. NUnitEqualityComparer used to test equality.
  6461. </summary>
  6462. </member>
  6463. <member name="M:NUnit.Framework.Constraints.EqualConstraint.#ctor(System.Object)">
  6464. <summary>
  6465. Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.EqualConstraint"/> class.
  6466. </summary>
  6467. <param name="expected">The expected value.</param>
  6468. </member>
  6469. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Within(System.Object)">
  6470. <summary>
  6471. Flag the constraint to use a tolerance when determining equality.
  6472. </summary>
  6473. <param name="amount">Tolerance value to be used</param>
  6474. <returns>Self.</returns>
  6475. </member>
  6476. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Comparer(System.Collections.IComparer)">
  6477. <summary>
  6478. Flag the constraint to use the supplied IComparer object.
  6479. </summary>
  6480. <param name="comparer">The IComparer object to use.</param>
  6481. <returns>Self.</returns>
  6482. </member>
  6483. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IComparer)">
  6484. <summary>
  6485. Flag the constraint to use the supplied IComparer object.
  6486. </summary>
  6487. <param name="comparer">The IComparer object to use.</param>
  6488. <returns>Self.</returns>
  6489. </member>
  6490. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  6491. <summary>
  6492. Flag the constraint to use the supplied IComparer object.
  6493. </summary>
  6494. <param name="comparer">The IComparer object to use.</param>
  6495. <returns>Self.</returns>
  6496. </member>
  6497. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Comparison{``0})">
  6498. <summary>
  6499. Flag the constraint to use the supplied Comparison object.
  6500. </summary>
  6501. <param name="comparer">The IComparer object to use.</param>
  6502. <returns>Self.</returns>
  6503. </member>
  6504. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IEqualityComparer)">
  6505. <summary>
  6506. Flag the constraint to use the supplied IEqualityComparer object.
  6507. </summary>
  6508. <param name="comparer">The IComparer object to use.</param>
  6509. <returns>Self.</returns>
  6510. </member>
  6511. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
  6512. <summary>
  6513. Flag the constraint to use the supplied IEqualityComparer object.
  6514. </summary>
  6515. <param name="comparer">The IComparer object to use.</param>
  6516. <returns>Self.</returns>
  6517. </member>
  6518. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Matches(System.Object)">
  6519. <summary>
  6520. Test whether the constraint is satisfied by a given value
  6521. </summary>
  6522. <param name="actual">The value to be tested</param>
  6523. <returns>True for success, false for failure</returns>
  6524. </member>
  6525. <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)">
  6526. <summary>
  6527. Write a failure message. Overridden to provide custom
  6528. failure messages for EqualConstraint.
  6529. </summary>
  6530. <param name="writer">The MessageWriter to write to</param>
  6531. </member>
  6532. <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  6533. <summary>
  6534. Write description of this constraint
  6535. </summary>
  6536. <param name="writer">The MessageWriter to write to</param>
  6537. </member>
  6538. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
  6539. <summary>
  6540. Display the failure information for two collections that did not match.
  6541. </summary>
  6542. <param name="writer">The MessageWriter on which to display</param>
  6543. <param name="expected">The expected collection.</param>
  6544. <param name="actual">The actual collection</param>
  6545. <param name="depth">The depth of this failure in a set of nested collections</param>
  6546. </member>
  6547. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayTypesAndSizes(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,System.Int32)">
  6548. <summary>
  6549. Displays a single line showing the types and sizes of the expected
  6550. and actual enumerations, collections or arrays. If both are identical,
  6551. the value is only shown once.
  6552. </summary>
  6553. <param name="writer">The MessageWriter on which to display</param>
  6554. <param name="expected">The expected collection or array</param>
  6555. <param name="actual">The actual collection or array</param>
  6556. <param name="indent">The indentation level for the message line</param>
  6557. </member>
  6558. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayFailurePoint(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,NUnit.Framework.Constraints.FailurePoint,System.Int32)">
  6559. <summary>
  6560. Displays a single line showing the point in the expected and actual
  6561. arrays at which the comparison failed. If the arrays have different
  6562. structures or dimensions, both values are shown.
  6563. </summary>
  6564. <param name="writer">The MessageWriter on which to display</param>
  6565. <param name="expected">The expected array</param>
  6566. <param name="actual">The actual array</param>
  6567. <param name="failurePoint">Index of the failure point in the underlying collections</param>
  6568. <param name="indent">The indentation level for the message line</param>
  6569. </member>
  6570. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayEnumerableDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,System.Int32)">
  6571. <summary>
  6572. Display the failure information for two IEnumerables that did not match.
  6573. </summary>
  6574. <param name="writer">The MessageWriter on which to display</param>
  6575. <param name="expected">The expected enumeration.</param>
  6576. <param name="actual">The actual enumeration</param>
  6577. <param name="depth">The depth of this failure in a set of nested collections</param>
  6578. </member>
  6579. <member name="P:NUnit.Framework.Constraints.EqualConstraint.IgnoreCase">
  6580. <summary>
  6581. Flag the constraint to ignore case and return self.
  6582. </summary>
  6583. </member>
  6584. <member name="P:NUnit.Framework.Constraints.EqualConstraint.NoClip">
  6585. <summary>
  6586. Flag the constraint to suppress string clipping
  6587. and return self.
  6588. </summary>
  6589. </member>
  6590. <member name="P:NUnit.Framework.Constraints.EqualConstraint.AsCollection">
  6591. <summary>
  6592. Flag the constraint to compare arrays as collections
  6593. and return self.
  6594. </summary>
  6595. </member>
  6596. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Ulps">
  6597. <summary>
  6598. Switches the .Within() modifier to interpret its tolerance as
  6599. a distance in representable values (see remarks).
  6600. </summary>
  6601. <returns>Self.</returns>
  6602. <remarks>
  6603. Ulp stands for "unit in the last place" and describes the minimum
  6604. amount a given value can change. For any integers, an ulp is 1 whole
  6605. digit. For floating point values, the accuracy of which is better
  6606. for smaller numbers and worse for larger numbers, an ulp depends
  6607. on the size of the number. Using ulps for comparison of floating
  6608. point results instead of fixed tolerances is safer because it will
  6609. automatically compensate for the added inaccuracy of larger numbers.
  6610. </remarks>
  6611. </member>
  6612. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Percent">
  6613. <summary>
  6614. Switches the .Within() modifier to interpret its tolerance as
  6615. a percentage that the actual values is allowed to deviate from
  6616. the expected value.
  6617. </summary>
  6618. <returns>Self</returns>
  6619. </member>
  6620. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Days">
  6621. <summary>
  6622. Causes the tolerance to be interpreted as a TimeSpan in days.
  6623. </summary>
  6624. <returns>Self</returns>
  6625. </member>
  6626. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Hours">
  6627. <summary>
  6628. Causes the tolerance to be interpreted as a TimeSpan in hours.
  6629. </summary>
  6630. <returns>Self</returns>
  6631. </member>
  6632. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Minutes">
  6633. <summary>
  6634. Causes the tolerance to be interpreted as a TimeSpan in minutes.
  6635. </summary>
  6636. <returns>Self</returns>
  6637. </member>
  6638. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Seconds">
  6639. <summary>
  6640. Causes the tolerance to be interpreted as a TimeSpan in seconds.
  6641. </summary>
  6642. <returns>Self</returns>
  6643. </member>
  6644. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Milliseconds">
  6645. <summary>
  6646. Causes the tolerance to be interpreted as a TimeSpan in milliseconds.
  6647. </summary>
  6648. <returns>Self</returns>
  6649. </member>
  6650. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Ticks">
  6651. <summary>
  6652. Causes the tolerance to be interpreted as a TimeSpan in clock ticks.
  6653. </summary>
  6654. <returns>Self</returns>
  6655. </member>
  6656. <member name="T:NUnit.Framework.Constraints.EqualityAdapter">
  6657. <summary>
  6658. EqualityAdapter class handles all equality comparisons
  6659. that use an IEqualityComparer, IEqualityComparer&lt;T&gt;
  6660. or a ComparisonAdapter.
  6661. </summary>
  6662. </member>
  6663. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.AreEqual(System.Object,System.Object)">
  6664. <summary>
  6665. Compares two objects, returning true if they are equal
  6666. </summary>
  6667. </member>
  6668. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.CanCompare(System.Object,System.Object)">
  6669. <summary>
  6670. Returns true if the two objects can be compared by this adapter.
  6671. The base adapter cannot handle IEnumerables except for strings.
  6672. </summary>
  6673. </member>
  6674. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IComparer)">
  6675. <summary>
  6676. Returns an EqualityAdapter that wraps an IComparer.
  6677. </summary>
  6678. </member>
  6679. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IEqualityComparer)">
  6680. <summary>
  6681. Returns an EqualityAdapter that wraps an IEqualityComparer.
  6682. </summary>
  6683. </member>
  6684. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IEqualityComparer{``0})">
  6685. <summary>
  6686. Returns an EqualityAdapter that wraps an IEqualityComparer&lt;T&gt;.
  6687. </summary>
  6688. </member>
  6689. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IComparer{``0})">
  6690. <summary>
  6691. Returns an EqualityAdapter that wraps an IComparer&lt;T&gt;.
  6692. </summary>
  6693. </member>
  6694. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Comparison{``0})">
  6695. <summary>
  6696. Returns an EqualityAdapter that wraps a Comparison&lt;T&gt;.
  6697. </summary>
  6698. </member>
  6699. <member name="T:NUnit.Framework.Constraints.EqualityAdapter.ComparerAdapter">
  6700. <summary>
  6701. EqualityAdapter that wraps an IComparer.
  6702. </summary>
  6703. </member>
  6704. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.GenericEqualityAdapter`1.CanCompare(System.Object,System.Object)">
  6705. <summary>
  6706. Returns true if the two objects can be compared by this adapter.
  6707. Generic adapter requires objects of the specified type.
  6708. </summary>
  6709. </member>
  6710. <member name="T:NUnit.Framework.Constraints.EqualityAdapter.ComparerAdapter`1">
  6711. <summary>
  6712. EqualityAdapter that wraps an IComparer.
  6713. </summary>
  6714. </member>
  6715. <member name="T:NUnit.Framework.Constraints.EqualityAdapterList">
  6716. <summary>
  6717. EqualityAdapterList represents a list of EqualityAdapters
  6718. in a common class across platforms.
  6719. </summary>
  6720. </member>
  6721. <member name="T:NUnit.Framework.Constraints.ExactCountConstraint">
  6722. <summary>
  6723. ExactCountConstraint applies another constraint to each
  6724. item in a collection, succeeding only if a specified
  6725. number of items succeed.
  6726. </summary>
  6727. </member>
  6728. <member name="M:NUnit.Framework.Constraints.ExactCountConstraint.#ctor(System.Int32,NUnit.Framework.Constraints.Constraint)">
  6729. <summary>
  6730. Construct an ExactCountConstraint on top of an existing constraint
  6731. </summary>
  6732. <param name="expectedCount"></param>
  6733. <param name="itemConstraint"></param>
  6734. </member>
  6735. <member name="M:NUnit.Framework.Constraints.ExactCountConstraint.Matches(System.Object)">
  6736. <summary>
  6737. Apply the item constraint to each item in the collection,
  6738. succeeding only if the expected number of items pass.
  6739. </summary>
  6740. <param name="actual"></param>
  6741. <returns></returns>
  6742. </member>
  6743. <member name="M:NUnit.Framework.Constraints.ExactCountConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  6744. <summary>
  6745. Write a description of this constraint to a MessageWriter
  6746. </summary>
  6747. <param name="writer"></param>
  6748. </member>
  6749. <member name="T:NUnit.Framework.Constraints.ExactTypeConstraint">
  6750. <summary>
  6751. ExactTypeConstraint is used to test that an object
  6752. is of the exact type provided in the constructor
  6753. </summary>
  6754. </member>
  6755. <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.#ctor(System.Type)">
  6756. <summary>
  6757. Construct an ExactTypeConstraint for a given Type
  6758. </summary>
  6759. <param name="type">The expected Type.</param>
  6760. </member>
  6761. <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.Matches(System.Object)">
  6762. <summary>
  6763. Test that an object is of the exact type specified
  6764. </summary>
  6765. <param name="actual">The actual value.</param>
  6766. <returns>True if the tested object is of the exact type provided, otherwise false.</returns>
  6767. </member>
  6768. <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  6769. <summary>
  6770. Write the description of this constraint to a MessageWriter
  6771. </summary>
  6772. <param name="writer">The MessageWriter to use</param>
  6773. </member>
  6774. <member name="T:NUnit.Framework.Constraints.ExceptionTypeConstraint">
  6775. <summary>
  6776. ExceptionTypeConstraint is a special version of ExactTypeConstraint
  6777. used to provided detailed info about the exception thrown in
  6778. an error message.
  6779. </summary>
  6780. </member>
  6781. <member name="M:NUnit.Framework.Constraints.ExceptionTypeConstraint.#ctor(System.Type)">
  6782. <summary>
  6783. Constructs an ExceptionTypeConstraint
  6784. </summary>
  6785. </member>
  6786. <member name="M:NUnit.Framework.Constraints.ExceptionTypeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  6787. <summary>
  6788. Write the actual value for a failing constraint test to a
  6789. MessageWriter. Overriden to write additional information
  6790. in the case of an Exception.
  6791. </summary>
  6792. <param name="writer">The MessageWriter to use</param>
  6793. </member>
  6794. <member name="T:NUnit.Framework.Constraints.FailurePoint">
  6795. <summary>
  6796. FailurePoint class represents one point of failure
  6797. in an equality test.
  6798. </summary>
  6799. </member>
  6800. <member name="F:NUnit.Framework.Constraints.FailurePoint.Position">
  6801. <summary>
  6802. The location of the failure
  6803. </summary>
  6804. </member>
  6805. <member name="F:NUnit.Framework.Constraints.FailurePoint.ExpectedValue">
  6806. <summary>
  6807. The expected value
  6808. </summary>
  6809. </member>
  6810. <member name="F:NUnit.Framework.Constraints.FailurePoint.ActualValue">
  6811. <summary>
  6812. The actual value
  6813. </summary>
  6814. </member>
  6815. <member name="F:NUnit.Framework.Constraints.FailurePoint.ExpectedHasData">
  6816. <summary>
  6817. Indicates whether the expected value is valid
  6818. </summary>
  6819. </member>
  6820. <member name="F:NUnit.Framework.Constraints.FailurePoint.ActualHasData">
  6821. <summary>
  6822. Indicates whether the actual value is valid
  6823. </summary>
  6824. </member>
  6825. <member name="T:NUnit.Framework.Constraints.FailurePointList">
  6826. <summary>
  6827. FailurePointList represents a set of FailurePoints
  6828. in a cross-platform way.
  6829. </summary>
  6830. </member>
  6831. <member name="T:NUnit.Framework.Constraints.FalseConstraint">
  6832. <summary>
  6833. FalseConstraint tests that the actual value is false
  6834. </summary>
  6835. </member>
  6836. <member name="M:NUnit.Framework.Constraints.FalseConstraint.#ctor">
  6837. <summary>
  6838. Initializes a new instance of the <see cref="T:FalseConstraint"/> class.
  6839. </summary>
  6840. </member>
  6841. <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics">
  6842. <summary>Helper routines for working with floating point numbers</summary>
  6843. <remarks>
  6844. <para>
  6845. The floating point comparison code is based on this excellent article:
  6846. http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm
  6847. </para>
  6848. <para>
  6849. "ULP" means Unit in the Last Place and in the context of this library refers to
  6850. the distance between two adjacent floating point numbers. IEEE floating point
  6851. numbers can only represent a finite subset of natural numbers, with greater
  6852. accuracy for smaller numbers and lower accuracy for very large numbers.
  6853. </para>
  6854. <para>
  6855. If a comparison is allowed "2 ulps" of deviation, that means the values are
  6856. allowed to deviate by up to 2 adjacent floating point values, which might be
  6857. as low as 0.0000001 for small numbers or as high as 10.0 for large numbers.
  6858. </para>
  6859. </remarks>
  6860. </member>
  6861. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Single,System.Single,System.Int32)">
  6862. <summary>Compares two floating point values for equality</summary>
  6863. <param name="left">First floating point value to be compared</param>
  6864. <param name="right">Second floating point value t be compared</param>
  6865. <param name="maxUlps">
  6866. Maximum number of representable floating point values that are allowed to
  6867. be between the left and the right floating point values
  6868. </param>
  6869. <returns>True if both numbers are equal or close to being equal</returns>
  6870. <remarks>
  6871. <para>
  6872. Floating point values can only represent a finite subset of natural numbers.
  6873. For example, the values 2.00000000 and 2.00000024 can be stored in a float,
  6874. but nothing inbetween them.
  6875. </para>
  6876. <para>
  6877. This comparison will count how many possible floating point values are between
  6878. the left and the right number. If the number of possible values between both
  6879. numbers is less than or equal to maxUlps, then the numbers are considered as
  6880. being equal.
  6881. </para>
  6882. <para>
  6883. Implementation partially follows the code outlined here:
  6884. http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/
  6885. </para>
  6886. </remarks>
  6887. </member>
  6888. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Double,System.Double,System.Int64)">
  6889. <summary>Compares two double precision floating point values for equality</summary>
  6890. <param name="left">First double precision floating point value to be compared</param>
  6891. <param name="right">Second double precision floating point value t be compared</param>
  6892. <param name="maxUlps">
  6893. Maximum number of representable double precision floating point values that are
  6894. allowed to be between the left and the right double precision floating point values
  6895. </param>
  6896. <returns>True if both numbers are equal or close to being equal</returns>
  6897. <remarks>
  6898. <para>
  6899. Double precision floating point values can only represent a limited series of
  6900. natural numbers. For example, the values 2.0000000000000000 and 2.0000000000000004
  6901. can be stored in a double, but nothing inbetween them.
  6902. </para>
  6903. <para>
  6904. This comparison will count how many possible double precision floating point
  6905. values are between the left and the right number. If the number of possible
  6906. values between both numbers is less than or equal to maxUlps, then the numbers
  6907. are considered as being equal.
  6908. </para>
  6909. <para>
  6910. Implementation partially follows the code outlined here:
  6911. http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/
  6912. </para>
  6913. </remarks>
  6914. </member>
  6915. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsInt(System.Single)">
  6916. <summary>
  6917. Reinterprets the memory contents of a floating point value as an integer value
  6918. </summary>
  6919. <param name="value">
  6920. Floating point value whose memory contents to reinterpret
  6921. </param>
  6922. <returns>
  6923. The memory contents of the floating point value interpreted as an integer
  6924. </returns>
  6925. </member>
  6926. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsLong(System.Double)">
  6927. <summary>
  6928. Reinterprets the memory contents of a double precision floating point
  6929. value as an integer value
  6930. </summary>
  6931. <param name="value">
  6932. Double precision floating point value whose memory contents to reinterpret
  6933. </param>
  6934. <returns>
  6935. The memory contents of the double precision floating point value
  6936. interpreted as an integer
  6937. </returns>
  6938. </member>
  6939. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsFloat(System.Int32)">
  6940. <summary>
  6941. Reinterprets the memory contents of an integer as a floating point value
  6942. </summary>
  6943. <param name="value">Integer value whose memory contents to reinterpret</param>
  6944. <returns>
  6945. The memory contents of the integer value interpreted as a floating point value
  6946. </returns>
  6947. </member>
  6948. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsDouble(System.Int64)">
  6949. <summary>
  6950. Reinterprets the memory contents of an integer value as a double precision
  6951. floating point value
  6952. </summary>
  6953. <param name="value">Integer whose memory contents to reinterpret</param>
  6954. <returns>
  6955. The memory contents of the integer interpreted as a double precision
  6956. floating point value
  6957. </returns>
  6958. </member>
  6959. <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion">
  6960. <summary>Union of a floating point variable and an integer</summary>
  6961. </member>
  6962. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Float">
  6963. <summary>The union's value as a floating point variable</summary>
  6964. </member>
  6965. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Int">
  6966. <summary>The union's value as an integer</summary>
  6967. </member>
  6968. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.UInt">
  6969. <summary>The union's value as an unsigned integer</summary>
  6970. </member>
  6971. <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion">
  6972. <summary>Union of a double precision floating point variable and a long</summary>
  6973. </member>
  6974. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Double">
  6975. <summary>The union's value as a double precision floating point variable</summary>
  6976. </member>
  6977. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Long">
  6978. <summary>The union's value as a long</summary>
  6979. </member>
  6980. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.ULong">
  6981. <summary>The union's value as an unsigned long</summary>
  6982. </member>
  6983. <member name="T:NUnit.Framework.Constraints.GreaterThanConstraint">
  6984. <summary>
  6985. Tests whether a value is greater than the value supplied to its constructor
  6986. </summary>
  6987. </member>
  6988. <member name="F:NUnit.Framework.Constraints.GreaterThanConstraint.expected">
  6989. <summary>
  6990. The value against which a comparison is to be made
  6991. </summary>
  6992. </member>
  6993. <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.#ctor(System.Object)">
  6994. <summary>
  6995. Initializes a new instance of the <see cref="T:GreaterThanConstraint"/> class.
  6996. </summary>
  6997. <param name="expected">The expected value.</param>
  6998. </member>
  6999. <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7000. <summary>
  7001. Write the constraint description to a MessageWriter
  7002. </summary>
  7003. <param name="writer">The writer on which the description is displayed</param>
  7004. </member>
  7005. <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.Matches(System.Object)">
  7006. <summary>
  7007. Test whether the constraint is satisfied by a given value
  7008. </summary>
  7009. <param name="actual">The value to be tested</param>
  7010. <returns>True for success, false for failure</returns>
  7011. </member>
  7012. <member name="T:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint">
  7013. <summary>
  7014. Tests whether a value is greater than or equal to the value supplied to its constructor
  7015. </summary>
  7016. </member>
  7017. <member name="F:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.expected">
  7018. <summary>
  7019. The value against which a comparison is to be made
  7020. </summary>
  7021. </member>
  7022. <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.#ctor(System.Object)">
  7023. <summary>
  7024. Initializes a new instance of the <see cref="T:GreaterThanOrEqualConstraint"/> class.
  7025. </summary>
  7026. <param name="expected">The expected value.</param>
  7027. </member>
  7028. <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7029. <summary>
  7030. Write the constraint description to a MessageWriter
  7031. </summary>
  7032. <param name="writer">The writer on which the description is displayed</param>
  7033. </member>
  7034. <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.Matches(System.Object)">
  7035. <summary>
  7036. Test whether the constraint is satisfied by a given value
  7037. </summary>
  7038. <param name="actual">The value to be tested</param>
  7039. <returns>True for success, false for failure</returns>
  7040. </member>
  7041. <member name="T:NUnit.Framework.Constraints.InstanceOfTypeConstraint">
  7042. <summary>
  7043. InstanceOfTypeConstraint is used to test that an object
  7044. is of the same type provided or derived from it.
  7045. </summary>
  7046. </member>
  7047. <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.#ctor(System.Type)">
  7048. <summary>
  7049. Construct an InstanceOfTypeConstraint for the type provided
  7050. </summary>
  7051. <param name="type">The expected Type</param>
  7052. </member>
  7053. <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.Matches(System.Object)">
  7054. <summary>
  7055. Test whether an object is of the specified type or a derived type
  7056. </summary>
  7057. <param name="actual">The object to be tested</param>
  7058. <returns>True if the object is of the provided type or derives from it, otherwise false.</returns>
  7059. </member>
  7060. <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7061. <summary>
  7062. Write a description of this constraint to a MessageWriter
  7063. </summary>
  7064. <param name="writer">The MessageWriter to use</param>
  7065. </member>
  7066. <member name="T:NUnit.Framework.Constraints.LessThanConstraint">
  7067. <summary>
  7068. Tests whether a value is less than the value supplied to its constructor
  7069. </summary>
  7070. </member>
  7071. <member name="F:NUnit.Framework.Constraints.LessThanConstraint.expected">
  7072. <summary>
  7073. The value against which a comparison is to be made
  7074. </summary>
  7075. </member>
  7076. <member name="M:NUnit.Framework.Constraints.LessThanConstraint.#ctor(System.Object)">
  7077. <summary>
  7078. Initializes a new instance of the <see cref="T:LessThanConstraint"/> class.
  7079. </summary>
  7080. <param name="expected">The expected value.</param>
  7081. </member>
  7082. <member name="M:NUnit.Framework.Constraints.LessThanConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7083. <summary>
  7084. Write the constraint description to a MessageWriter
  7085. </summary>
  7086. <param name="writer">The writer on which the description is displayed</param>
  7087. </member>
  7088. <member name="M:NUnit.Framework.Constraints.LessThanConstraint.Matches(System.Object)">
  7089. <summary>
  7090. Test whether the constraint is satisfied by a given value
  7091. </summary>
  7092. <param name="actual">The value to be tested</param>
  7093. <returns>True for success, false for failure</returns>
  7094. </member>
  7095. <member name="T:NUnit.Framework.Constraints.LessThanOrEqualConstraint">
  7096. <summary>
  7097. Tests whether a value is less than or equal to the value supplied to its constructor
  7098. </summary>
  7099. </member>
  7100. <member name="F:NUnit.Framework.Constraints.LessThanOrEqualConstraint.expected">
  7101. <summary>
  7102. The value against which a comparison is to be made
  7103. </summary>
  7104. </member>
  7105. <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.#ctor(System.Object)">
  7106. <summary>
  7107. Initializes a new instance of the <see cref="T:LessThanOrEqualConstraint"/> class.
  7108. </summary>
  7109. <param name="expected">The expected value.</param>
  7110. </member>
  7111. <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7112. <summary>
  7113. Write the constraint description to a MessageWriter
  7114. </summary>
  7115. <param name="writer">The writer on which the description is displayed</param>
  7116. </member>
  7117. <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.Matches(System.Object)">
  7118. <summary>
  7119. Test whether the constraint is satisfied by a given value
  7120. </summary>
  7121. <param name="actual">The value to be tested</param>
  7122. <returns>True for success, false for failure</returns>
  7123. </member>
  7124. <member name="T:NUnit.Framework.Constraints.MessageWriter">
  7125. <summary>
  7126. MessageWriter is the abstract base for classes that write
  7127. constraint descriptions and messages in some form. The
  7128. class has separate methods for writing various components
  7129. of a message, allowing implementations to tailor the
  7130. presentation as needed.
  7131. </summary>
  7132. </member>
  7133. <member name="M:NUnit.Framework.Constraints.MessageWriter.#ctor">
  7134. <summary>
  7135. Construct a MessageWriter given a culture
  7136. </summary>
  7137. </member>
  7138. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.String,System.Object[])">
  7139. <summary>
  7140. Method to write single line message with optional args, usually
  7141. written to precede the general failure message.
  7142. </summary>
  7143. <param name="message">The message to be written</param>
  7144. <param name="args">Any arguments used in formatting the message</param>
  7145. </member>
  7146. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
  7147. <summary>
  7148. Method to write single line message with optional args, usually
  7149. written to precede the general failure message, at a givel
  7150. indentation level.
  7151. </summary>
  7152. <param name="level">The indentation level of the message</param>
  7153. <param name="message">The message to be written</param>
  7154. <param name="args">Any arguments used in formatting the message</param>
  7155. </member>
  7156. <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
  7157. <summary>
  7158. Display Expected and Actual lines for a constraint. This
  7159. is called by MessageWriter's default implementation of
  7160. WriteMessageTo and provides the generic two-line display.
  7161. </summary>
  7162. <param name="constraint">The constraint that failed</param>
  7163. </member>
  7164. <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object)">
  7165. <summary>
  7166. Display Expected and Actual lines for given values. This
  7167. method may be called by constraints that need more control over
  7168. the display of actual and expected values than is provided
  7169. by the default implementation.
  7170. </summary>
  7171. <param name="expected">The expected value</param>
  7172. <param name="actual">The actual value causing the failure</param>
  7173. </member>
  7174. <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)">
  7175. <summary>
  7176. Display Expected and Actual lines for given values, including
  7177. a tolerance value on the Expected line.
  7178. </summary>
  7179. <param name="expected">The expected value</param>
  7180. <param name="actual">The actual value causing the failure</param>
  7181. <param name="tolerance">The tolerance within which the test was made</param>
  7182. </member>
  7183. <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
  7184. <summary>
  7185. Display the expected and actual string values on separate lines.
  7186. If the mismatch parameter is >=0, an additional line is displayed
  7187. line containing a caret that points to the mismatch point.
  7188. </summary>
  7189. <param name="expected">The expected string value</param>
  7190. <param name="actual">The actual string value</param>
  7191. <param name="mismatch">The point at which the strings don't match or -1</param>
  7192. <param name="ignoreCase">If true, case is ignored in locating the point where the strings differ</param>
  7193. <param name="clipping">If true, the strings should be clipped to fit the line</param>
  7194. </member>
  7195. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteConnector(System.String)">
  7196. <summary>
  7197. Writes the text for a connector.
  7198. </summary>
  7199. <param name="connector">The connector.</param>
  7200. </member>
  7201. <member name="M:NUnit.Framework.Constraints.MessageWriter.WritePredicate(System.String)">
  7202. <summary>
  7203. Writes the text for a predicate.
  7204. </summary>
  7205. <param name="predicate">The predicate.</param>
  7206. </member>
  7207. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteExpectedValue(System.Object)">
  7208. <summary>
  7209. Writes the text for an expected value.
  7210. </summary>
  7211. <param name="expected">The expected value.</param>
  7212. </member>
  7213. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteModifier(System.String)">
  7214. <summary>
  7215. Writes the text for a modifier
  7216. </summary>
  7217. <param name="modifier">The modifier.</param>
  7218. </member>
  7219. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteActualValue(System.Object)">
  7220. <summary>
  7221. Writes the text for an actual value.
  7222. </summary>
  7223. <param name="actual">The actual value.</param>
  7224. </member>
  7225. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteValue(System.Object)">
  7226. <summary>
  7227. Writes the text for a generalized value.
  7228. </summary>
  7229. <param name="val">The value.</param>
  7230. </member>
  7231. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteCollectionElements(System.Collections.IEnumerable,System.Int32,System.Int32)">
  7232. <summary>
  7233. Writes the text for a collection value,
  7234. starting at a particular point, to a max length
  7235. </summary>
  7236. <param name="collection">The collection containing elements to write.</param>
  7237. <param name="start">The starting point of the elements to write</param>
  7238. <param name="max">The maximum number of elements to write</param>
  7239. </member>
  7240. <member name="P:NUnit.Framework.Constraints.MessageWriter.MaxLineLength">
  7241. <summary>
  7242. Abstract method to get the max line length
  7243. </summary>
  7244. </member>
  7245. <member name="T:NUnit.Framework.Constraints.MsgUtils">
  7246. <summary>
  7247. Static methods used in creating messages
  7248. </summary>
  7249. </member>
  7250. <member name="F:NUnit.Framework.Constraints.MsgUtils.ELLIPSIS">
  7251. <summary>
  7252. Static string used when strings are clipped
  7253. </summary>
  7254. </member>
  7255. <member name="M:NUnit.Framework.Constraints.MsgUtils.GetTypeRepresentation(System.Object)">
  7256. <summary>
  7257. Returns the representation of a type as used in NUnitLite.
  7258. This is the same as Type.ToString() except for arrays,
  7259. which are displayed with their declared sizes.
  7260. </summary>
  7261. <param name="obj"></param>
  7262. <returns></returns>
  7263. </member>
  7264. <member name="M:NUnit.Framework.Constraints.MsgUtils.EscapeControlChars(System.String)">
  7265. <summary>
  7266. Converts any control characters in a string
  7267. to their escaped representation.
  7268. </summary>
  7269. <param name="s">The string to be converted</param>
  7270. <returns>The converted string</returns>
  7271. </member>
  7272. <member name="M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesAsString(System.Int32[])">
  7273. <summary>
  7274. Return the a string representation for a set of indices into an array
  7275. </summary>
  7276. <param name="indices">Array of indices for which a string is needed</param>
  7277. </member>
  7278. <member name="M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesFromCollectionIndex(System.Collections.IEnumerable,System.Int32)">
  7279. <summary>
  7280. Get an array of indices representing the point in a enumerable,
  7281. collection or array corresponding to a single int index into the
  7282. collection.
  7283. </summary>
  7284. <param name="collection">The collection to which the indices apply</param>
  7285. <param name="index">Index in the collection</param>
  7286. <returns>Array of indices</returns>
  7287. </member>
  7288. <member name="M:NUnit.Framework.Constraints.MsgUtils.ClipString(System.String,System.Int32,System.Int32)">
  7289. <summary>
  7290. Clip a string to a given length, starting at a particular offset, returning the clipped
  7291. string with ellipses representing the removed parts
  7292. </summary>
  7293. <param name="s">The string to be clipped</param>
  7294. <param name="maxStringLength">The maximum permitted length of the result string</param>
  7295. <param name="clipStart">The point at which to start clipping</param>
  7296. <returns>The clipped string</returns>
  7297. </member>
  7298. <member name="M:NUnit.Framework.Constraints.MsgUtils.ClipExpectedAndActual(System.String@,System.String@,System.Int32,System.Int32)">
  7299. <summary>
  7300. Clip the expected and actual strings in a coordinated fashion,
  7301. so that they may be displayed together.
  7302. </summary>
  7303. <param name="expected"></param>
  7304. <param name="actual"></param>
  7305. <param name="maxDisplayLength"></param>
  7306. <param name="mismatch"></param>
  7307. </member>
  7308. <member name="M:NUnit.Framework.Constraints.MsgUtils.FindMismatchPosition(System.String,System.String,System.Int32,System.Boolean)">
  7309. <summary>
  7310. Shows the position two strings start to differ. Comparison
  7311. starts at the start index.
  7312. </summary>
  7313. <param name="expected">The expected string</param>
  7314. <param name="actual">The actual string</param>
  7315. <param name="istart">The index in the strings at which comparison should start</param>
  7316. <param name="ignoreCase">Boolean indicating whether case should be ignored</param>
  7317. <returns>-1 if no mismatch found, or the index where mismatch found</returns>
  7318. </member>
  7319. <member name="T:NUnit.Framework.Constraints.NaNConstraint">
  7320. <summary>
  7321. NaNConstraint tests that the actual value is a double or float NaN
  7322. </summary>
  7323. </member>
  7324. <member name="M:NUnit.Framework.Constraints.NaNConstraint.Matches(System.Object)">
  7325. <summary>
  7326. Test that the actual value is an NaN
  7327. </summary>
  7328. <param name="actual"></param>
  7329. <returns></returns>
  7330. </member>
  7331. <member name="M:NUnit.Framework.Constraints.NaNConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7332. <summary>
  7333. Write the constraint description to a specified writer
  7334. </summary>
  7335. <param name="writer"></param>
  7336. </member>
  7337. <member name="T:NUnit.Framework.Constraints.NoItemConstraint">
  7338. <summary>
  7339. NoItemConstraint applies another constraint to each
  7340. item in a collection, failing if any of them succeeds.
  7341. </summary>
  7342. </member>
  7343. <member name="M:NUnit.Framework.Constraints.NoItemConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  7344. <summary>
  7345. Construct a NoItemConstraint on top of an existing constraint
  7346. </summary>
  7347. <param name="itemConstraint"></param>
  7348. </member>
  7349. <member name="M:NUnit.Framework.Constraints.NoItemConstraint.Matches(System.Object)">
  7350. <summary>
  7351. Apply the item constraint to each item in the collection,
  7352. failing if any item fails.
  7353. </summary>
  7354. <param name="actual"></param>
  7355. <returns></returns>
  7356. </member>
  7357. <member name="M:NUnit.Framework.Constraints.NoItemConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7358. <summary>
  7359. Write a description of this constraint to a MessageWriter
  7360. </summary>
  7361. <param name="writer"></param>
  7362. </member>
  7363. <member name="T:NUnit.Framework.Constraints.NotConstraint">
  7364. <summary>
  7365. NotConstraint negates the effect of some other constraint
  7366. </summary>
  7367. </member>
  7368. <member name="M:NUnit.Framework.Constraints.NotConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  7369. <summary>
  7370. Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.NotConstraint"/> class.
  7371. </summary>
  7372. <param name="baseConstraint">The base constraint to be negated.</param>
  7373. </member>
  7374. <member name="M:NUnit.Framework.Constraints.NotConstraint.Matches(System.Object)">
  7375. <summary>
  7376. Test whether the constraint is satisfied by a given value
  7377. </summary>
  7378. <param name="actual">The value to be tested</param>
  7379. <returns>True for if the base constraint fails, false if it succeeds</returns>
  7380. </member>
  7381. <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7382. <summary>
  7383. Write the constraint description to a MessageWriter
  7384. </summary>
  7385. <param name="writer">The writer on which the description is displayed</param>
  7386. </member>
  7387. <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  7388. <summary>
  7389. Write the actual value for a failing constraint test to a MessageWriter.
  7390. </summary>
  7391. <param name="writer">The writer on which the actual value is displayed</param>
  7392. </member>
  7393. <member name="T:NUnit.Framework.Constraints.NullConstraint">
  7394. <summary>
  7395. NullConstraint tests that the actual value is null
  7396. </summary>
  7397. </member>
  7398. <member name="M:NUnit.Framework.Constraints.NullConstraint.#ctor">
  7399. <summary>
  7400. Initializes a new instance of the <see cref="T:NullConstraint"/> class.
  7401. </summary>
  7402. </member>
  7403. <member name="T:NUnit.Framework.Constraints.NullOrEmptyStringConstraint">
  7404. <summary>
  7405. NullEmptyStringConstraint tests whether a string is either null or empty.
  7406. </summary>
  7407. </member>
  7408. <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.#ctor">
  7409. <summary>
  7410. Constructs a new NullOrEmptyStringConstraint
  7411. </summary>
  7412. </member>
  7413. <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.Matches(System.Object)">
  7414. <summary>
  7415. Test whether the constraint is satisfied by a given value
  7416. </summary>
  7417. <param name="actual">The value to be tested</param>
  7418. <returns>True for success, false for failure</returns>
  7419. </member>
  7420. <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7421. <summary>
  7422. Write the constraint description to a MessageWriter
  7423. </summary>
  7424. <param name="writer">The writer on which the description is displayed</param>
  7425. </member>
  7426. <member name="T:NUnit.Framework.Constraints.Numerics">
  7427. <summary>
  7428. The Numerics class contains common operations on numeric values.
  7429. </summary>
  7430. </member>
  7431. <member name="M:NUnit.Framework.Constraints.Numerics.IsNumericType(System.Object)">
  7432. <summary>
  7433. Checks the type of the object, returning true if
  7434. the object is a numeric type.
  7435. </summary>
  7436. <param name="obj">The object to check</param>
  7437. <returns>true if the object is a numeric type</returns>
  7438. </member>
  7439. <member name="M:NUnit.Framework.Constraints.Numerics.IsFloatingPointNumeric(System.Object)">
  7440. <summary>
  7441. Checks the type of the object, returning true if
  7442. the object is a floating point numeric type.
  7443. </summary>
  7444. <param name="obj">The object to check</param>
  7445. <returns>true if the object is a floating point numeric type</returns>
  7446. </member>
  7447. <member name="M:NUnit.Framework.Constraints.Numerics.IsFixedPointNumeric(System.Object)">
  7448. <summary>
  7449. Checks the type of the object, returning true if
  7450. the object is a fixed point numeric type.
  7451. </summary>
  7452. <param name="obj">The object to check</param>
  7453. <returns>true if the object is a fixed point numeric type</returns>
  7454. </member>
  7455. <member name="M:NUnit.Framework.Constraints.Numerics.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)">
  7456. <summary>
  7457. Test two numeric values for equality, performing the usual numeric
  7458. conversions and using a provided or default tolerance. If the tolerance
  7459. provided is Empty, this method may set it to a default tolerance.
  7460. </summary>
  7461. <param name="expected">The expected value</param>
  7462. <param name="actual">The actual value</param>
  7463. <param name="tolerance">A reference to the tolerance in effect</param>
  7464. <returns>True if the values are equal</returns>
  7465. </member>
  7466. <member name="M:NUnit.Framework.Constraints.Numerics.Compare(System.Object,System.Object)">
  7467. <summary>
  7468. Compare two numeric values, performing the usual numeric conversions.
  7469. </summary>
  7470. <param name="expected">The expected value</param>
  7471. <param name="actual">The actual value</param>
  7472. <returns>The relationship of the values to each other</returns>
  7473. </member>
  7474. <member name="T:NUnit.Framework.Constraints.NUnitComparer">
  7475. <summary>
  7476. NUnitComparer encapsulates NUnit's default behavior
  7477. in comparing two objects.
  7478. </summary>
  7479. </member>
  7480. <member name="M:NUnit.Framework.Constraints.NUnitComparer.Compare(System.Object,System.Object)">
  7481. <summary>
  7482. Compares two objects
  7483. </summary>
  7484. <param name="x"></param>
  7485. <param name="y"></param>
  7486. <returns></returns>
  7487. </member>
  7488. <member name="P:NUnit.Framework.Constraints.NUnitComparer.Default">
  7489. <summary>
  7490. Returns the default NUnitComparer.
  7491. </summary>
  7492. </member>
  7493. <member name="T:NUnit.Framework.Constraints.NUnitComparer`1">
  7494. <summary>
  7495. Generic version of NUnitComparer
  7496. </summary>
  7497. <typeparam name="T"></typeparam>
  7498. </member>
  7499. <member name="M:NUnit.Framework.Constraints.NUnitComparer`1.Compare(`0,`0)">
  7500. <summary>
  7501. Compare two objects of the same type
  7502. </summary>
  7503. </member>
  7504. <member name="T:NUnit.Framework.Constraints.NUnitEqualityComparer">
  7505. <summary>
  7506. NUnitEqualityComparer encapsulates NUnit's handling of
  7507. equality tests between objects.
  7508. </summary>
  7509. </member>
  7510. <member name="T:NUnit.Framework.INUnitEqualityComparer">
  7511. <summary>
  7512. </summary>
  7513. </member>
  7514. <member name="M:NUnit.Framework.INUnitEqualityComparer.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)">
  7515. <summary>
  7516. Compares two objects for equality within a tolerance
  7517. </summary>
  7518. <param name="x">The first object to compare</param>
  7519. <param name="y">The second object to compare</param>
  7520. <param name="tolerance">The tolerance to use in the comparison</param>
  7521. <returns></returns>
  7522. </member>
  7523. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.caseInsensitive">
  7524. <summary>
  7525. If true, all string comparisons will ignore case
  7526. </summary>
  7527. </member>
  7528. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.compareAsCollection">
  7529. <summary>
  7530. If true, arrays will be treated as collections, allowing
  7531. those of different dimensions to be compared
  7532. </summary>
  7533. </member>
  7534. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.externalComparers">
  7535. <summary>
  7536. Comparison objects used in comparisons for some constraints.
  7537. </summary>
  7538. </member>
  7539. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.failurePoints">
  7540. <summary>
  7541. List of points at which a failure occured.
  7542. </summary>
  7543. </member>
  7544. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.recursionDetector">
  7545. <summary>
  7546. RecursionDetector used to check for recursion when
  7547. evaluating self-referencing enumerables.
  7548. </summary>
  7549. </member>
  7550. <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)">
  7551. <summary>
  7552. Compares two objects for equality within a tolerance, setting
  7553. the tolerance to the actual tolerance used if an empty
  7554. tolerance is supplied.
  7555. </summary>
  7556. </member>
  7557. <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.ArraysEqual(System.Array,System.Array,NUnit.Framework.Constraints.Tolerance@)">
  7558. <summary>
  7559. Helper method to compare two arrays
  7560. </summary>
  7561. </member>
  7562. <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.DirectoriesEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  7563. <summary>
  7564. Method to compare two DirectoryInfo objects
  7565. </summary>
  7566. <param name="expected">first directory to compare</param>
  7567. <param name="actual">second directory to compare</param>
  7568. <returns>true if equivalent, false if not</returns>
  7569. </member>
  7570. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.Default">
  7571. <summary>
  7572. Returns the default NUnitEqualityComparer
  7573. </summary>
  7574. </member>
  7575. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.IgnoreCase">
  7576. <summary>
  7577. Gets and sets a flag indicating whether case should
  7578. be ignored in determining equality.
  7579. </summary>
  7580. </member>
  7581. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.CompareAsCollection">
  7582. <summary>
  7583. Gets and sets a flag indicating that arrays should be
  7584. compared as collections, without regard to their shape.
  7585. </summary>
  7586. </member>
  7587. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.ExternalComparers">
  7588. <summary>
  7589. Gets the list of external comparers to be used to
  7590. test for equality. They are applied to members of
  7591. collections, in place of NUnit's own logic.
  7592. </summary>
  7593. </member>
  7594. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoints">
  7595. <summary>
  7596. Gets the list of failure points for the last Match performed.
  7597. The list consists of objects to be interpreted by the caller.
  7598. This generally means that the caller may only make use of
  7599. objects it has placed on the list at a particular depthy.
  7600. </summary>
  7601. </member>
  7602. <member name="T:NUnit.Framework.Constraints.NUnitEqualityComparer.RecursionDetector">
  7603. <summary>
  7604. RecursionDetector detects when a comparison
  7605. between two enumerables has reached a point
  7606. where the same objects that were previously
  7607. compared are again being compared. This allows
  7608. the caller to stop the comparison if desired.
  7609. </summary>
  7610. </member>
  7611. <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.RecursionDetector.CheckRecursion(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  7612. <summary>
  7613. Check whether two objects have previously
  7614. been compared, returning true if they have.
  7615. The two objects are remembered, so that a
  7616. second call will always return true.
  7617. </summary>
  7618. </member>
  7619. <member name="T:NUnit.Framework.Constraints.AllOperator">
  7620. <summary>
  7621. Represents a constraint that succeeds if all the
  7622. members of a collection match a base constraint.
  7623. </summary>
  7624. </member>
  7625. <member name="T:NUnit.Framework.Constraints.CollectionOperator">
  7626. <summary>
  7627. Abstract base for operators that indicate how to
  7628. apply a constraint to items in a collection.
  7629. </summary>
  7630. </member>
  7631. <member name="T:NUnit.Framework.Constraints.PrefixOperator">
  7632. <summary>
  7633. PrefixOperator takes a single constraint and modifies
  7634. it's action in some way.
  7635. </summary>
  7636. </member>
  7637. <member name="T:NUnit.Framework.Constraints.ConstraintOperator">
  7638. <summary>
  7639. The ConstraintOperator class is used internally by a
  7640. ConstraintBuilder to represent an operator that
  7641. modifies or combines constraints.
  7642. Constraint operators use left and right precedence
  7643. values to determine whether the top operator on the
  7644. stack should be reduced before pushing a new operator.
  7645. </summary>
  7646. </member>
  7647. <member name="F:NUnit.Framework.Constraints.ConstraintOperator.left_precedence">
  7648. <summary>
  7649. The precedence value used when the operator
  7650. is about to be pushed to the stack.
  7651. </summary>
  7652. </member>
  7653. <member name="F:NUnit.Framework.Constraints.ConstraintOperator.right_precedence">
  7654. <summary>
  7655. The precedence value used when the operator
  7656. is on the top of the stack.
  7657. </summary>
  7658. </member>
  7659. <member name="M:NUnit.Framework.Constraints.ConstraintOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  7660. <summary>
  7661. Reduce produces a constraint from the operator and
  7662. any arguments. It takes the arguments from the constraint
  7663. stack and pushes the resulting constraint on it.
  7664. </summary>
  7665. <param name="stack"></param>
  7666. </member>
  7667. <member name="P:NUnit.Framework.Constraints.ConstraintOperator.LeftContext">
  7668. <summary>
  7669. The syntax element preceding this operator
  7670. </summary>
  7671. </member>
  7672. <member name="P:NUnit.Framework.Constraints.ConstraintOperator.RightContext">
  7673. <summary>
  7674. The syntax element folowing this operator
  7675. </summary>
  7676. </member>
  7677. <member name="P:NUnit.Framework.Constraints.ConstraintOperator.LeftPrecedence">
  7678. <summary>
  7679. The precedence value used when the operator
  7680. is about to be pushed to the stack.
  7681. </summary>
  7682. </member>
  7683. <member name="P:NUnit.Framework.Constraints.ConstraintOperator.RightPrecedence">
  7684. <summary>
  7685. The precedence value used when the operator
  7686. is on the top of the stack.
  7687. </summary>
  7688. </member>
  7689. <member name="M:NUnit.Framework.Constraints.PrefixOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  7690. <summary>
  7691. Reduce produces a constraint from the operator and
  7692. any arguments. It takes the arguments from the constraint
  7693. stack and pushes the resulting constraint on it.
  7694. </summary>
  7695. <param name="stack"></param>
  7696. </member>
  7697. <member name="M:NUnit.Framework.Constraints.PrefixOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  7698. <summary>
  7699. Returns the constraint created by applying this
  7700. prefix to another constraint.
  7701. </summary>
  7702. <param name="constraint"></param>
  7703. <returns></returns>
  7704. </member>
  7705. <member name="M:NUnit.Framework.Constraints.CollectionOperator.#ctor">
  7706. <summary>
  7707. Constructs a CollectionOperator
  7708. </summary>
  7709. </member>
  7710. <member name="M:NUnit.Framework.Constraints.AllOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  7711. <summary>
  7712. Returns a constraint that will apply the argument
  7713. to the members of a collection, succeeding if
  7714. they all succeed.
  7715. </summary>
  7716. </member>
  7717. <member name="T:NUnit.Framework.Constraints.AndOperator">
  7718. <summary>
  7719. Operator that requires both it's arguments to succeed
  7720. </summary>
  7721. </member>
  7722. <member name="T:NUnit.Framework.Constraints.BinaryOperator">
  7723. <summary>
  7724. Abstract base class for all binary operators
  7725. </summary>
  7726. </member>
  7727. <member name="M:NUnit.Framework.Constraints.BinaryOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  7728. <summary>
  7729. Reduce produces a constraint from the operator and
  7730. any arguments. It takes the arguments from the constraint
  7731. stack and pushes the resulting constraint on it.
  7732. </summary>
  7733. <param name="stack"></param>
  7734. </member>
  7735. <member name="M:NUnit.Framework.Constraints.BinaryOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  7736. <summary>
  7737. Abstract method that produces a constraint by applying
  7738. the operator to its left and right constraint arguments.
  7739. </summary>
  7740. </member>
  7741. <member name="P:NUnit.Framework.Constraints.BinaryOperator.LeftPrecedence">
  7742. <summary>
  7743. Gets the left precedence of the operator
  7744. </summary>
  7745. </member>
  7746. <member name="P:NUnit.Framework.Constraints.BinaryOperator.RightPrecedence">
  7747. <summary>
  7748. Gets the right precedence of the operator
  7749. </summary>
  7750. </member>
  7751. <member name="M:NUnit.Framework.Constraints.AndOperator.#ctor">
  7752. <summary>
  7753. Construct an AndOperator
  7754. </summary>
  7755. </member>
  7756. <member name="M:NUnit.Framework.Constraints.AndOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  7757. <summary>
  7758. Apply the operator to produce an AndConstraint
  7759. </summary>
  7760. </member>
  7761. <member name="T:NUnit.Framework.Constraints.AttributeOperator">
  7762. <summary>
  7763. Operator that tests for the presence of a particular attribute
  7764. on a type and optionally applies further tests to the attribute.
  7765. </summary>
  7766. </member>
  7767. <member name="T:NUnit.Framework.Constraints.SelfResolvingOperator">
  7768. <summary>
  7769. Abstract base class for operators that are able to reduce to a
  7770. constraint whether or not another syntactic element follows.
  7771. </summary>
  7772. </member>
  7773. <member name="M:NUnit.Framework.Constraints.AttributeOperator.#ctor(System.Type)">
  7774. <summary>
  7775. Construct an AttributeOperator for a particular Type
  7776. </summary>
  7777. <param name="type">The Type of attribute tested</param>
  7778. </member>
  7779. <member name="M:NUnit.Framework.Constraints.AttributeOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  7780. <summary>
  7781. Reduce produces a constraint from the operator and
  7782. any arguments. It takes the arguments from the constraint
  7783. stack and pushes the resulting constraint on it.
  7784. </summary>
  7785. </member>
  7786. <member name="T:NUnit.Framework.Constraints.CollectionOrderedConstraint">
  7787. <summary>
  7788. CollectionOrderedConstraint is used to test whether a collection is ordered.
  7789. </summary>
  7790. </member>
  7791. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.#ctor">
  7792. <summary>
  7793. Construct a CollectionOrderedConstraint
  7794. </summary>
  7795. </member>
  7796. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using(System.Collections.IComparer)">
  7797. <summary>
  7798. Modifies the constraint to use an IComparer and returns self.
  7799. </summary>
  7800. </member>
  7801. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  7802. <summary>
  7803. Modifies the constraint to use an IComparer&lt;T&gt; and returns self.
  7804. </summary>
  7805. </member>
  7806. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Comparison{``0})">
  7807. <summary>
  7808. Modifies the constraint to use a Comparison&lt;T&gt; and returns self.
  7809. </summary>
  7810. </member>
  7811. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.By(System.String)">
  7812. <summary>
  7813. Modifies the constraint to test ordering by the value of
  7814. a specified property and returns self.
  7815. </summary>
  7816. </member>
  7817. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.doMatch(System.Collections.IEnumerable)">
  7818. <summary>
  7819. Test whether the collection is ordered
  7820. </summary>
  7821. <param name="actual"></param>
  7822. <returns></returns>
  7823. </member>
  7824. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7825. <summary>
  7826. Write a description of the constraint to a MessageWriter
  7827. </summary>
  7828. <param name="writer"></param>
  7829. </member>
  7830. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.GetStringRepresentation">
  7831. <summary>
  7832. Returns the string representation of the constraint.
  7833. </summary>
  7834. <returns></returns>
  7835. </member>
  7836. <member name="P:NUnit.Framework.Constraints.CollectionOrderedConstraint.Descending">
  7837. <summary>
  7838. If used performs a reverse comparison
  7839. </summary>
  7840. </member>
  7841. <member name="T:NUnit.Framework.Constraints.ExactCountOperator">
  7842. <summary>
  7843. Represents a constraint that succeeds if the specified
  7844. count of members of a collection match a base constraint.
  7845. </summary>
  7846. </member>
  7847. <member name="M:NUnit.Framework.Constraints.ExactCountOperator.#ctor(System.Int32)">
  7848. <summary>
  7849. Construct an ExactCountOperator for a specified count
  7850. </summary>
  7851. <param name="expectedCount">The expected count</param>
  7852. </member>
  7853. <member name="M:NUnit.Framework.Constraints.ExactCountOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  7854. <summary>
  7855. Returns a constraint that will apply the argument
  7856. to the members of a collection, succeeding if
  7857. none of them succeed.
  7858. </summary>
  7859. </member>
  7860. <member name="T:NUnit.Framework.Constraints.NoneOperator">
  7861. <summary>
  7862. Represents a constraint that succeeds if none of the
  7863. members of a collection match a base constraint.
  7864. </summary>
  7865. </member>
  7866. <member name="M:NUnit.Framework.Constraints.NoneOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  7867. <summary>
  7868. Returns a constraint that will apply the argument
  7869. to the members of a collection, succeeding if
  7870. none of them succeed.
  7871. </summary>
  7872. </member>
  7873. <member name="T:NUnit.Framework.Constraints.NotOperator">
  7874. <summary>
  7875. Negates the test of the constraint it wraps.
  7876. </summary>
  7877. </member>
  7878. <member name="M:NUnit.Framework.Constraints.NotOperator.#ctor">
  7879. <summary>
  7880. Constructs a new NotOperator
  7881. </summary>
  7882. </member>
  7883. <member name="M:NUnit.Framework.Constraints.NotOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  7884. <summary>
  7885. Returns a NotConstraint applied to its argument.
  7886. </summary>
  7887. </member>
  7888. <member name="T:NUnit.Framework.Constraints.OrOperator">
  7889. <summary>
  7890. Operator that requires at least one of it's arguments to succeed
  7891. </summary>
  7892. </member>
  7893. <member name="M:NUnit.Framework.Constraints.OrOperator.#ctor">
  7894. <summary>
  7895. Construct an OrOperator
  7896. </summary>
  7897. </member>
  7898. <member name="M:NUnit.Framework.Constraints.OrOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  7899. <summary>
  7900. Apply the operator to produce an OrConstraint
  7901. </summary>
  7902. </member>
  7903. <member name="T:NUnit.Framework.Constraints.PropOperator">
  7904. <summary>
  7905. Operator used to test for the presence of a named Property
  7906. on an object and optionally apply further tests to the
  7907. value of that property.
  7908. </summary>
  7909. </member>
  7910. <member name="M:NUnit.Framework.Constraints.PropOperator.#ctor(System.String)">
  7911. <summary>
  7912. Constructs a PropOperator for a particular named property
  7913. </summary>
  7914. </member>
  7915. <member name="M:NUnit.Framework.Constraints.PropOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  7916. <summary>
  7917. Reduce produces a constraint from the operator and
  7918. any arguments. It takes the arguments from the constraint
  7919. stack and pushes the resulting constraint on it.
  7920. </summary>
  7921. <param name="stack"></param>
  7922. </member>
  7923. <member name="P:NUnit.Framework.Constraints.PropOperator.Name">
  7924. <summary>
  7925. Gets the name of the property to which the operator applies
  7926. </summary>
  7927. </member>
  7928. <member name="T:NUnit.Framework.Constraints.ThrowsOperator">
  7929. <summary>
  7930. Operator that tests that an exception is thrown and
  7931. optionally applies further tests to the exception.
  7932. </summary>
  7933. </member>
  7934. <member name="M:NUnit.Framework.Constraints.ThrowsOperator.#ctor">
  7935. <summary>
  7936. Construct a ThrowsOperator
  7937. </summary>
  7938. </member>
  7939. <member name="M:NUnit.Framework.Constraints.ThrowsOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  7940. <summary>
  7941. Reduce produces a constraint from the operator and
  7942. any arguments. It takes the arguments from the constraint
  7943. stack and pushes the resulting constraint on it.
  7944. </summary>
  7945. </member>
  7946. <member name="T:NUnit.Framework.Constraints.WithOperator">
  7947. <summary>
  7948. Represents a constraint that simply wraps the
  7949. constraint provided as an argument, without any
  7950. further functionality, but which modifes the
  7951. order of evaluation because of its precedence.
  7952. </summary>
  7953. </member>
  7954. <member name="M:NUnit.Framework.Constraints.WithOperator.#ctor">
  7955. <summary>
  7956. Constructor for the WithOperator
  7957. </summary>
  7958. </member>
  7959. <member name="M:NUnit.Framework.Constraints.WithOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  7960. <summary>
  7961. Returns a constraint that wraps its argument
  7962. </summary>
  7963. </member>
  7964. <member name="T:NUnit.Framework.Constraints.OrConstraint">
  7965. <summary>
  7966. OrConstraint succeeds if either member succeeds
  7967. </summary>
  7968. </member>
  7969. <member name="M:NUnit.Framework.Constraints.OrConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  7970. <summary>
  7971. Create an OrConstraint from two other constraints
  7972. </summary>
  7973. <param name="left">The first constraint</param>
  7974. <param name="right">The second constraint</param>
  7975. </member>
  7976. <member name="M:NUnit.Framework.Constraints.OrConstraint.Matches(System.Object)">
  7977. <summary>
  7978. Apply the member constraints to an actual value, succeeding
  7979. succeeding as soon as one of them succeeds.
  7980. </summary>
  7981. <param name="actual">The actual value</param>
  7982. <returns>True if either constraint succeeded</returns>
  7983. </member>
  7984. <member name="M:NUnit.Framework.Constraints.OrConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7985. <summary>
  7986. Write a description for this contraint to a MessageWriter
  7987. </summary>
  7988. <param name="writer">The MessageWriter to receive the description</param>
  7989. </member>
  7990. <member name="T:NUnit.Framework.Constraints.PathConstraint">
  7991. <summary>
  7992. PathConstraint serves as the abstract base of constraints
  7993. that operate on paths and provides several helper methods.
  7994. </summary>
  7995. </member>
  7996. <member name="F:NUnit.Framework.Constraints.PathConstraint.expectedPath">
  7997. <summary>
  7998. The expected path used in the constraint
  7999. </summary>
  8000. </member>
  8001. <member name="F:NUnit.Framework.Constraints.PathConstraint.caseInsensitive">
  8002. <summary>
  8003. Flag indicating whether a caseInsensitive comparison should be made
  8004. </summary>
  8005. </member>
  8006. <member name="M:NUnit.Framework.Constraints.PathConstraint.#ctor(System.String)">
  8007. <summary>
  8008. Construct a PathConstraint for a give expected path
  8009. </summary>
  8010. <param name="expectedPath">The expected path</param>
  8011. </member>
  8012. <member name="M:NUnit.Framework.Constraints.PathConstraint.Matches(System.Object)">
  8013. <summary>
  8014. Test whether the constraint is satisfied by a given value
  8015. </summary>
  8016. <param name="actual">The value to be tested</param>
  8017. <returns>True for success, false for failure</returns>
  8018. </member>
  8019. <member name="M:NUnit.Framework.Constraints.PathConstraint.IsMatch(System.String,System.String)">
  8020. <summary>
  8021. Returns true if the expected path and actual path match
  8022. </summary>
  8023. </member>
  8024. <member name="M:NUnit.Framework.Constraints.PathConstraint.GetStringRepresentation">
  8025. <summary>
  8026. Returns the string representation of this constraint
  8027. </summary>
  8028. </member>
  8029. <member name="M:NUnit.Framework.Constraints.PathConstraint.Canonicalize(System.String)">
  8030. <summary>
  8031. Transform the provided path to its canonical form so that it
  8032. may be more easily be compared with other paths.
  8033. </summary>
  8034. <param name="path">The original path</param>
  8035. <returns>The path in canonical form</returns>
  8036. </member>
  8037. <member name="M:NUnit.Framework.Constraints.PathConstraint.IsSubPath(System.String,System.String,System.Boolean)">
  8038. <summary>
  8039. Test whether one path in canonical form is under another.
  8040. </summary>
  8041. <param name="path1">The first path - supposed to be the parent path</param>
  8042. <param name="path2">The second path - supposed to be the child path</param>
  8043. <param name="ignoreCase">Indicates whether case should be ignored</param>
  8044. <returns></returns>
  8045. </member>
  8046. <member name="P:NUnit.Framework.Constraints.PathConstraint.IgnoreCase">
  8047. <summary>
  8048. Modifies the current instance to be case-insensitve
  8049. and returns it.
  8050. </summary>
  8051. </member>
  8052. <member name="P:NUnit.Framework.Constraints.PathConstraint.RespectCase">
  8053. <summary>
  8054. Modifies the current instance to be case-sensitve
  8055. and returns it.
  8056. </summary>
  8057. </member>
  8058. <member name="T:NUnit.Framework.Constraints.PredicateConstraint`1">
  8059. <summary>
  8060. Predicate constraint wraps a Predicate in a constraint,
  8061. returning success if the predicate is true.
  8062. </summary>
  8063. </member>
  8064. <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.#ctor(System.Predicate{`0})">
  8065. <summary>
  8066. Construct a PredicateConstraint from a predicate
  8067. </summary>
  8068. </member>
  8069. <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.Matches(System.Object)">
  8070. <summary>
  8071. Determines whether the predicate succeeds when applied
  8072. to the actual value.
  8073. </summary>
  8074. </member>
  8075. <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8076. <summary>
  8077. Writes the description to a MessageWriter
  8078. </summary>
  8079. </member>
  8080. <member name="T:NUnit.Framework.Constraints.PropertyConstraint">
  8081. <summary>
  8082. PropertyConstraint extracts a named property and uses
  8083. its value as the actual value for a chained constraint.
  8084. </summary>
  8085. </member>
  8086. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.#ctor(System.String,NUnit.Framework.Constraints.Constraint)">
  8087. <summary>
  8088. Initializes a new instance of the <see cref="T:PropertyConstraint"/> class.
  8089. </summary>
  8090. <param name="name">The name.</param>
  8091. <param name="baseConstraint">The constraint to apply to the property.</param>
  8092. </member>
  8093. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.Matches(System.Object)">
  8094. <summary>
  8095. Test whether the constraint is satisfied by a given value
  8096. </summary>
  8097. <param name="actual">The value to be tested</param>
  8098. <returns>True for success, false for failure</returns>
  8099. </member>
  8100. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8101. <summary>
  8102. Write the constraint description to a MessageWriter
  8103. </summary>
  8104. <param name="writer">The writer on which the description is displayed</param>
  8105. </member>
  8106. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  8107. <summary>
  8108. Write the actual value for a failing constraint test to a
  8109. MessageWriter. The default implementation simply writes
  8110. the raw value of actual, leaving it to the writer to
  8111. perform any formatting.
  8112. </summary>
  8113. <param name="writer">The writer on which the actual value is displayed</param>
  8114. </member>
  8115. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.GetStringRepresentation">
  8116. <summary>
  8117. Returns the string representation of the constraint.
  8118. </summary>
  8119. <returns></returns>
  8120. </member>
  8121. <member name="T:NUnit.Framework.Constraints.PropertyExistsConstraint">
  8122. <summary>
  8123. PropertyExistsConstraint tests that a named property
  8124. exists on the object provided through Match.
  8125. Originally, PropertyConstraint provided this feature
  8126. in addition to making optional tests on the vaue
  8127. of the property. The two constraints are now separate.
  8128. </summary>
  8129. </member>
  8130. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.#ctor(System.String)">
  8131. <summary>
  8132. Initializes a new instance of the <see cref="T:PropertyExistConstraint"/> class.
  8133. </summary>
  8134. <param name="name">The name of the property.</param>
  8135. </member>
  8136. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.Matches(System.Object)">
  8137. <summary>
  8138. Test whether the property exists for a given object
  8139. </summary>
  8140. <param name="actual">The object to be tested</param>
  8141. <returns>True for success, false for failure</returns>
  8142. </member>
  8143. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8144. <summary>
  8145. Write the constraint description to a MessageWriter
  8146. </summary>
  8147. <param name="writer">The writer on which the description is displayed</param>
  8148. </member>
  8149. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  8150. <summary>
  8151. Write the actual value for a failing constraint test to a
  8152. MessageWriter.
  8153. </summary>
  8154. <param name="writer">The writer on which the actual value is displayed</param>
  8155. </member>
  8156. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.GetStringRepresentation">
  8157. <summary>
  8158. Returns the string representation of the constraint.
  8159. </summary>
  8160. <returns></returns>
  8161. </member>
  8162. <member name="T:NUnit.Framework.Constraints.RangeConstraint`1">
  8163. <summary>
  8164. RangeConstraint tests whether two values are within a
  8165. specified range.
  8166. </summary>
  8167. </member>
  8168. <member name="M:NUnit.Framework.Constraints.RangeConstraint`1.#ctor(`0,`0)">
  8169. <summary>
  8170. Initializes a new instance of the <see cref="T:RangeConstraint"/> class.
  8171. </summary>
  8172. <param name="from">From.</param>
  8173. <param name="to">To.</param>
  8174. </member>
  8175. <member name="M:NUnit.Framework.Constraints.RangeConstraint`1.Matches(System.Object)">
  8176. <summary>
  8177. Test whether the constraint is satisfied by a given value
  8178. </summary>
  8179. <param name="actual">The value to be tested</param>
  8180. <returns>True for success, false for failure</returns>
  8181. </member>
  8182. <member name="M:NUnit.Framework.Constraints.RangeConstraint`1.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8183. <summary>
  8184. Write the constraint description to a MessageWriter
  8185. </summary>
  8186. <param name="writer">The writer on which the description is displayed</param>
  8187. </member>
  8188. <member name="T:NUnit.Framework.Constraints.RegexConstraint">
  8189. <summary>
  8190. RegexConstraint can test whether a string matches
  8191. the pattern provided.
  8192. </summary>
  8193. </member>
  8194. <member name="M:NUnit.Framework.Constraints.RegexConstraint.#ctor(System.String)">
  8195. <summary>
  8196. Initializes a new instance of the <see cref="T:RegexConstraint"/> class.
  8197. </summary>
  8198. <param name="pattern">The pattern.</param>
  8199. </member>
  8200. <member name="M:NUnit.Framework.Constraints.RegexConstraint.Matches(System.String)">
  8201. <summary>
  8202. Test whether the constraint is satisfied by a given value
  8203. </summary>
  8204. <param name="actual">The value to be tested</param>
  8205. <returns>True for success, false for failure</returns>
  8206. </member>
  8207. <member name="M:NUnit.Framework.Constraints.RegexConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8208. <summary>
  8209. Write the constraint description to a MessageWriter
  8210. </summary>
  8211. <param name="writer">The writer on which the description is displayed</param>
  8212. </member>
  8213. <member name="T:NUnit.Framework.Constraints.ResolvableConstraintExpression">
  8214. <summary>
  8215. ResolvableConstraintExpression is used to represent a compound
  8216. constraint being constructed at a point where the last operator
  8217. may either terminate the expression or may have additional
  8218. qualifying constraints added to it.
  8219. It is used, for example, for a Property element or for
  8220. an Exception element, either of which may be optionally
  8221. followed by constraints that apply to the property or
  8222. exception.
  8223. </summary>
  8224. </member>
  8225. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor">
  8226. <summary>
  8227. Create a new instance of ResolvableConstraintExpression
  8228. </summary>
  8229. </member>
  8230. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  8231. <summary>
  8232. Create a new instance of ResolvableConstraintExpression,
  8233. passing in a pre-populated ConstraintBuilder.
  8234. </summary>
  8235. </member>
  8236. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.NUnit#Framework#Constraints#IResolveConstraint#Resolve">
  8237. <summary>
  8238. Resolve the current expression to a Constraint
  8239. </summary>
  8240. </member>
  8241. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
  8242. <summary>
  8243. This operator creates a constraint that is satisfied only if both
  8244. argument constraints are satisfied.
  8245. </summary>
  8246. </member>
  8247. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
  8248. <summary>
  8249. This operator creates a constraint that is satisfied only if both
  8250. argument constraints are satisfied.
  8251. </summary>
  8252. </member>
  8253. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.Constraint)">
  8254. <summary>
  8255. This operator creates a constraint that is satisfied only if both
  8256. argument constraints are satisfied.
  8257. </summary>
  8258. </member>
  8259. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
  8260. <summary>
  8261. This operator creates a constraint that is satisfied if either
  8262. of the argument constraints is satisfied.
  8263. </summary>
  8264. </member>
  8265. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.Constraint)">
  8266. <summary>
  8267. This operator creates a constraint that is satisfied if either
  8268. of the argument constraints is satisfied.
  8269. </summary>
  8270. </member>
  8271. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
  8272. <summary>
  8273. This operator creates a constraint that is satisfied if either
  8274. of the argument constraints is satisfied.
  8275. </summary>
  8276. </member>
  8277. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_LogicalNot(NUnit.Framework.Constraints.ResolvableConstraintExpression)">
  8278. <summary>
  8279. This operator creates a constraint that is satisfied if the
  8280. argument constraint is not satisfied.
  8281. </summary>
  8282. </member>
  8283. <member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.And">
  8284. <summary>
  8285. Appends an And Operator to the expression
  8286. </summary>
  8287. </member>
  8288. <member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.Or">
  8289. <summary>
  8290. Appends an Or operator to the expression.
  8291. </summary>
  8292. </member>
  8293. <member name="T:NUnit.Framework.Constraints.ReusableConstraint">
  8294. <summary>
  8295. ReusableConstraint wraps a constraint expression after
  8296. resolving it so that it can be reused consistently.
  8297. </summary>
  8298. </member>
  8299. <member name="M:NUnit.Framework.Constraints.ReusableConstraint.#ctor(NUnit.Framework.Constraints.IResolveConstraint)">
  8300. <summary>
  8301. Construct a ReusableConstraint from a constraint expression
  8302. </summary>
  8303. <param name="c">The expression to be resolved and reused</param>
  8304. </member>
  8305. <member name="M:NUnit.Framework.Constraints.ReusableConstraint.op_Implicit(NUnit.Framework.Constraints.Constraint)~NUnit.Framework.Constraints.ReusableConstraint">
  8306. <summary>
  8307. Converts a constraint to a ReusableConstraint
  8308. </summary>
  8309. <param name="c">The constraint to be converted</param>
  8310. <returns>A ReusableConstraint</returns>
  8311. </member>
  8312. <member name="M:NUnit.Framework.Constraints.ReusableConstraint.ToString">
  8313. <summary>
  8314. Returns the string representation of the constraint.
  8315. </summary>
  8316. <returns>A string representing the constraint</returns>
  8317. </member>
  8318. <member name="M:NUnit.Framework.Constraints.ReusableConstraint.Resolve">
  8319. <summary>
  8320. Resolves the ReusableConstraint by returning the constraint
  8321. that it originally wrapped.
  8322. </summary>
  8323. <returns>A resolved constraint</returns>
  8324. </member>
  8325. <member name="T:NUnit.Framework.Constraints.SameAsConstraint">
  8326. <summary>
  8327. SameAsConstraint tests whether an object is identical to
  8328. the object passed to its constructor
  8329. </summary>
  8330. </member>
  8331. <member name="M:NUnit.Framework.Constraints.SameAsConstraint.#ctor(System.Object)">
  8332. <summary>
  8333. Initializes a new instance of the <see cref="T:SameAsConstraint"/> class.
  8334. </summary>
  8335. <param name="expected">The expected object.</param>
  8336. </member>
  8337. <member name="M:NUnit.Framework.Constraints.SameAsConstraint.Matches(System.Object)">
  8338. <summary>
  8339. Test whether the constraint is satisfied by a given value
  8340. </summary>
  8341. <param name="actual">The value to be tested</param>
  8342. <returns>True for success, false for failure</returns>
  8343. </member>
  8344. <member name="M:NUnit.Framework.Constraints.SameAsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8345. <summary>
  8346. Write the constraint description to a MessageWriter
  8347. </summary>
  8348. <param name="writer">The writer on which the description is displayed</param>
  8349. </member>
  8350. <member name="T:NUnit.Framework.Constraints.SamePathConstraint">
  8351. <summary>
  8352. Summary description for SamePathConstraint.
  8353. </summary>
  8354. </member>
  8355. <member name="M:NUnit.Framework.Constraints.SamePathConstraint.#ctor(System.String)">
  8356. <summary>
  8357. Initializes a new instance of the <see cref="T:SamePathConstraint"/> class.
  8358. </summary>
  8359. <param name="expected">The expected path</param>
  8360. </member>
  8361. <member name="M:NUnit.Framework.Constraints.SamePathConstraint.IsMatch(System.String,System.String)">
  8362. <summary>
  8363. Test whether the constraint is satisfied by a given value
  8364. </summary>
  8365. <param name="expectedPath">The expected path</param>
  8366. <param name="actualPath">The actual path</param>
  8367. <returns>True for success, false for failure</returns>
  8368. </member>
  8369. <member name="M:NUnit.Framework.Constraints.SamePathConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8370. <summary>
  8371. Write the constraint description to a MessageWriter
  8372. </summary>
  8373. <param name="writer">The writer on which the description is displayed</param>
  8374. </member>
  8375. <member name="T:NUnit.Framework.Constraints.SamePathOrUnderConstraint">
  8376. <summary>
  8377. SamePathOrUnderConstraint tests that one path is under another
  8378. </summary>
  8379. </member>
  8380. <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.#ctor(System.String)">
  8381. <summary>
  8382. Initializes a new instance of the <see cref="T:SamePathOrUnderConstraint"/> class.
  8383. </summary>
  8384. <param name="expected">The expected path</param>
  8385. </member>
  8386. <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.IsMatch(System.String,System.String)">
  8387. <summary>
  8388. Test whether the constraint is satisfied by a given value
  8389. </summary>
  8390. <param name="expectedPath">The expected path</param>
  8391. <param name="actualPath">The actual path</param>
  8392. <returns>True for success, false for failure</returns>
  8393. </member>
  8394. <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8395. <summary>
  8396. Write the constraint description to a MessageWriter
  8397. </summary>
  8398. <param name="writer">The writer on which the description is displayed</param>
  8399. </member>
  8400. <member name="T:NUnit.Framework.Constraints.BinarySerializableConstraint">
  8401. <summary>
  8402. BinarySerializableConstraint tests whether
  8403. an object is serializable in binary format.
  8404. </summary>
  8405. </member>
  8406. <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.Matches(System.Object)">
  8407. <summary>
  8408. Test whether the constraint is satisfied by a given value
  8409. </summary>
  8410. <param name="actual">The value to be tested</param>
  8411. <returns>True for success, false for failure</returns>
  8412. </member>
  8413. <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8414. <summary>
  8415. Write the constraint description to a MessageWriter
  8416. </summary>
  8417. <param name="writer">The writer on which the description is displayed</param>
  8418. </member>
  8419. <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  8420. <summary>
  8421. Write the actual value for a failing constraint test to a
  8422. MessageWriter. The default implementation simply writes
  8423. the raw value of actual, leaving it to the writer to
  8424. perform any formatting.
  8425. </summary>
  8426. <param name="writer">The writer on which the actual value is displayed</param>
  8427. </member>
  8428. <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.GetStringRepresentation">
  8429. <summary>
  8430. Returns the string representation
  8431. </summary>
  8432. </member>
  8433. <member name="T:NUnit.Framework.Constraints.SomeOperator">
  8434. <summary>
  8435. Represents a constraint that succeeds if any of the
  8436. members of a collection match a base constraint.
  8437. </summary>
  8438. </member>
  8439. <member name="M:NUnit.Framework.Constraints.SomeOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  8440. <summary>
  8441. Returns a constraint that will apply the argument
  8442. to the members of a collection, succeeding if
  8443. any of them succeed.
  8444. </summary>
  8445. </member>
  8446. <member name="T:NUnit.Framework.Constraints.SomeItemsConstraint">
  8447. <summary>
  8448. SomeItemsConstraint applies another constraint to each
  8449. item in a collection, succeeding if any of them succeeds.
  8450. </summary>
  8451. </member>
  8452. <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  8453. <summary>
  8454. Construct a SomeItemsConstraint on top of an existing constraint
  8455. </summary>
  8456. <param name="itemConstraint"></param>
  8457. </member>
  8458. <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.Matches(System.Object)">
  8459. <summary>
  8460. Apply the item constraint to each item in the collection,
  8461. succeeding if any item succeeds.
  8462. </summary>
  8463. <param name="actual"></param>
  8464. <returns></returns>
  8465. </member>
  8466. <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8467. <summary>
  8468. Write a description of this constraint to a MessageWriter
  8469. </summary>
  8470. <param name="writer"></param>
  8471. </member>
  8472. <member name="T:NUnit.Framework.Constraints.StartsWithConstraint">
  8473. <summary>
  8474. StartsWithConstraint can test whether a string starts
  8475. with an expected substring.
  8476. </summary>
  8477. </member>
  8478. <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.#ctor(System.String)">
  8479. <summary>
  8480. Initializes a new instance of the <see cref="T:StartsWithConstraint"/> class.
  8481. </summary>
  8482. <param name="expected">The expected string</param>
  8483. </member>
  8484. <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.Matches(System.String)">
  8485. <summary>
  8486. Test whether the constraint is matched by the actual value.
  8487. This is a template method, which calls the IsMatch method
  8488. of the derived class.
  8489. </summary>
  8490. <param name="actual"></param>
  8491. <returns></returns>
  8492. </member>
  8493. <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8494. <summary>
  8495. Write the constraint description to a MessageWriter
  8496. </summary>
  8497. <param name="writer">The writer on which the description is displayed</param>
  8498. </member>
  8499. <member name="T:NUnit.Framework.Constraints.SubPathConstraint">
  8500. <summary>
  8501. SubPathConstraint tests that the actual path is under the expected path
  8502. </summary>
  8503. </member>
  8504. <member name="M:NUnit.Framework.Constraints.SubPathConstraint.#ctor(System.String)">
  8505. <summary>
  8506. Initializes a new instance of the <see cref="T:SubPathConstraint"/> class.
  8507. </summary>
  8508. <param name="expected">The expected path</param>
  8509. </member>
  8510. <member name="M:NUnit.Framework.Constraints.SubPathConstraint.IsMatch(System.String,System.String)">
  8511. <summary>
  8512. Test whether the constraint is satisfied by a given value
  8513. </summary>
  8514. <param name="expectedPath">The expected path</param>
  8515. <param name="actualPath">The actual path</param>
  8516. <returns>True for success, false for failure</returns>
  8517. </member>
  8518. <member name="M:NUnit.Framework.Constraints.SubPathConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8519. <summary>
  8520. Write the constraint description to a MessageWriter
  8521. </summary>
  8522. <param name="writer">The writer on which the description is displayed</param>
  8523. </member>
  8524. <member name="T:NUnit.Framework.Constraints.SubstringConstraint">
  8525. <summary>
  8526. SubstringConstraint can test whether a string contains
  8527. the expected substring.
  8528. </summary>
  8529. </member>
  8530. <member name="M:NUnit.Framework.Constraints.SubstringConstraint.#ctor(System.String)">
  8531. <summary>
  8532. Initializes a new instance of the <see cref="T:SubstringConstraint"/> class.
  8533. </summary>
  8534. <param name="expected">The expected.</param>
  8535. </member>
  8536. <member name="M:NUnit.Framework.Constraints.SubstringConstraint.Matches(System.String)">
  8537. <summary>
  8538. Test whether the constraint is satisfied by a given value
  8539. </summary>
  8540. <param name="actual">The value to be tested</param>
  8541. <returns>True for success, false for failure</returns>
  8542. </member>
  8543. <member name="M:NUnit.Framework.Constraints.SubstringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8544. <summary>
  8545. Write the constraint description to a MessageWriter
  8546. </summary>
  8547. <param name="writer">The writer on which the description is displayed</param>
  8548. </member>
  8549. <member name="T:NUnit.Framework.Constraints.ThrowsConstraint">
  8550. <summary>
  8551. ThrowsConstraint is used to test the exception thrown by
  8552. a delegate by applying a constraint to it.
  8553. </summary>
  8554. </member>
  8555. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  8556. <summary>
  8557. Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.ThrowsConstraint"/> class,
  8558. using a constraint to be applied to the exception.
  8559. </summary>
  8560. <param name="baseConstraint">A constraint to apply to the caught exception.</param>
  8561. </member>
  8562. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.Matches(System.Object)">
  8563. <summary>
  8564. Executes the code of the delegate and captures any exception.
  8565. If a non-null base constraint was provided, it applies that
  8566. constraint to the exception.
  8567. </summary>
  8568. <param name="actual">A delegate representing the code to be tested</param>
  8569. <returns>True if an exception is thrown and the constraint succeeds, otherwise false</returns>
  8570. </member>
  8571. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.Matches``1(NUnit.Framework.Constraints.ActualValueDelegate{``0})">
  8572. <summary>
  8573. Converts an ActualValueDelegate to a TestDelegate
  8574. before calling the primary overload.
  8575. </summary>
  8576. </member>
  8577. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8578. <summary>
  8579. Write the constraint description to a MessageWriter
  8580. </summary>
  8581. <param name="writer">The writer on which the description is displayed</param>
  8582. </member>
  8583. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  8584. <summary>
  8585. Write the actual value for a failing constraint test to a
  8586. MessageWriter. The default implementation simply writes
  8587. the raw value of actual, leaving it to the writer to
  8588. perform any formatting.
  8589. </summary>
  8590. <param name="writer">The writer on which the actual value is displayed</param>
  8591. </member>
  8592. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.GetStringRepresentation">
  8593. <summary>
  8594. Returns the string representation of this constraint
  8595. </summary>
  8596. </member>
  8597. <member name="P:NUnit.Framework.Constraints.ThrowsConstraint.ActualException">
  8598. <summary>
  8599. Get the actual exception thrown - used by Assert.Throws.
  8600. </summary>
  8601. </member>
  8602. <member name="T:NUnit.Framework.Constraints.ThrowsNothingConstraint">
  8603. <summary>
  8604. ThrowsNothingConstraint tests that a delegate does not
  8605. throw an exception.
  8606. </summary>
  8607. </member>
  8608. <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.Matches(System.Object)">
  8609. <summary>
  8610. Test whether the constraint is satisfied by a given value
  8611. </summary>
  8612. <param name="actual">The value to be tested</param>
  8613. <returns>True if no exception is thrown, otherwise false</returns>
  8614. </member>
  8615. <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.Matches``1(NUnit.Framework.Constraints.ActualValueDelegate{``0})">
  8616. <summary>
  8617. Test whether the constraint is satisfied by a given delegate
  8618. </summary>
  8619. <param name="del">Delegate returning the value to be tested</param>
  8620. <returns>True if no exception is thrown, otherwise false</returns>
  8621. </member>
  8622. <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8623. <summary>
  8624. Write the constraint description to a MessageWriter
  8625. </summary>
  8626. <param name="writer">The writer on which the description is displayed</param>
  8627. </member>
  8628. <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  8629. <summary>
  8630. Write the actual value for a failing constraint test to a
  8631. MessageWriter. Overridden in ThrowsNothingConstraint to write
  8632. information about the exception that was actually caught.
  8633. </summary>
  8634. <param name="writer">The writer on which the actual value is displayed</param>
  8635. </member>
  8636. <member name="T:NUnit.Framework.Constraints.Tolerance">
  8637. <summary>
  8638. The Tolerance class generalizes the notion of a tolerance
  8639. within which an equality test succeeds. Normally, it is
  8640. used with numeric types, but it can be used with any
  8641. type that supports taking a difference between two
  8642. objects and comparing that difference to a value.
  8643. </summary>
  8644. </member>
  8645. <member name="M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object)">
  8646. <summary>
  8647. Constructs a linear tolerance of a specdified amount
  8648. </summary>
  8649. </member>
  8650. <member name="M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object,NUnit.Framework.Constraints.ToleranceMode)">
  8651. <summary>
  8652. Constructs a tolerance given an amount and ToleranceMode
  8653. </summary>
  8654. </member>
  8655. <member name="M:NUnit.Framework.Constraints.Tolerance.CheckLinearAndNumeric">
  8656. <summary>
  8657. Tests that the current Tolerance is linear with a
  8658. numeric value, throwing an exception if it is not.
  8659. </summary>
  8660. </member>
  8661. <member name="P:NUnit.Framework.Constraints.Tolerance.Empty">
  8662. <summary>
  8663. Returns an empty Tolerance object, equivalent to
  8664. specifying no tolerance. In most cases, it results
  8665. in an exact match but for floats and doubles a
  8666. default tolerance may be used.
  8667. </summary>
  8668. </member>
  8669. <member name="P:NUnit.Framework.Constraints.Tolerance.Zero">
  8670. <summary>
  8671. Returns a zero Tolerance object, equivalent to
  8672. specifying an exact match.
  8673. </summary>
  8674. </member>
  8675. <member name="P:NUnit.Framework.Constraints.Tolerance.Mode">
  8676. <summary>
  8677. Gets the ToleranceMode for the current Tolerance
  8678. </summary>
  8679. </member>
  8680. <member name="P:NUnit.Framework.Constraints.Tolerance.Value">
  8681. <summary>
  8682. Gets the value of the current Tolerance instance.
  8683. </summary>
  8684. </member>
  8685. <member name="P:NUnit.Framework.Constraints.Tolerance.Percent">
  8686. <summary>
  8687. Returns a new tolerance, using the current amount as a percentage.
  8688. </summary>
  8689. </member>
  8690. <member name="P:NUnit.Framework.Constraints.Tolerance.Ulps">
  8691. <summary>
  8692. Returns a new tolerance, using the current amount in Ulps.
  8693. </summary>
  8694. </member>
  8695. <member name="P:NUnit.Framework.Constraints.Tolerance.Days">
  8696. <summary>
  8697. Returns a new tolerance with a TimeSpan as the amount, using
  8698. the current amount as a number of days.
  8699. </summary>
  8700. </member>
  8701. <member name="P:NUnit.Framework.Constraints.Tolerance.Hours">
  8702. <summary>
  8703. Returns a new tolerance with a TimeSpan as the amount, using
  8704. the current amount as a number of hours.
  8705. </summary>
  8706. </member>
  8707. <member name="P:NUnit.Framework.Constraints.Tolerance.Minutes">
  8708. <summary>
  8709. Returns a new tolerance with a TimeSpan as the amount, using
  8710. the current amount as a number of minutes.
  8711. </summary>
  8712. </member>
  8713. <member name="P:NUnit.Framework.Constraints.Tolerance.Seconds">
  8714. <summary>
  8715. Returns a new tolerance with a TimeSpan as the amount, using
  8716. the current amount as a number of seconds.
  8717. </summary>
  8718. </member>
  8719. <member name="P:NUnit.Framework.Constraints.Tolerance.Milliseconds">
  8720. <summary>
  8721. Returns a new tolerance with a TimeSpan as the amount, using
  8722. the current amount as a number of milliseconds.
  8723. </summary>
  8724. </member>
  8725. <member name="P:NUnit.Framework.Constraints.Tolerance.Ticks">
  8726. <summary>
  8727. Returns a new tolerance with a TimeSpan as the amount, using
  8728. the current amount as a number of clock ticks.
  8729. </summary>
  8730. </member>
  8731. <member name="P:NUnit.Framework.Constraints.Tolerance.IsEmpty">
  8732. <summary>
  8733. Returns true if the current tolerance is empty.
  8734. </summary>
  8735. </member>
  8736. <member name="T:NUnit.Framework.Constraints.ToleranceMode">
  8737. <summary>
  8738. Modes in which the tolerance value for a comparison can be interpreted.
  8739. </summary>
  8740. </member>
  8741. <member name="F:NUnit.Framework.Constraints.ToleranceMode.None">
  8742. <summary>
  8743. The tolerance was created with a value, without specifying
  8744. how the value would be used. This is used to prevent setting
  8745. the mode more than once and is generally changed to Linear
  8746. upon execution of the test.
  8747. </summary>
  8748. </member>
  8749. <member name="F:NUnit.Framework.Constraints.ToleranceMode.Linear">
  8750. <summary>
  8751. The tolerance is used as a numeric range within which
  8752. two compared values are considered to be equal.
  8753. </summary>
  8754. </member>
  8755. <member name="F:NUnit.Framework.Constraints.ToleranceMode.Percent">
  8756. <summary>
  8757. Interprets the tolerance as the percentage by which
  8758. the two compared values my deviate from each other.
  8759. </summary>
  8760. </member>
  8761. <member name="F:NUnit.Framework.Constraints.ToleranceMode.Ulps">
  8762. <summary>
  8763. Compares two values based in their distance in
  8764. representable numbers.
  8765. </summary>
  8766. </member>
  8767. <member name="T:NUnit.Framework.Constraints.TrueConstraint">
  8768. <summary>
  8769. TrueConstraint tests that the actual value is true
  8770. </summary>
  8771. </member>
  8772. <member name="M:NUnit.Framework.Constraints.TrueConstraint.#ctor">
  8773. <summary>
  8774. Initializes a new instance of the <see cref="T:TrueConstraint"/> class.
  8775. </summary>
  8776. </member>
  8777. <member name="T:NUnit.Framework.Constraints.UniqueItemsConstraint">
  8778. <summary>
  8779. UniqueItemsConstraint tests whether all the items in a
  8780. collection are unique.
  8781. </summary>
  8782. </member>
  8783. <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.doMatch(System.Collections.IEnumerable)">
  8784. <summary>
  8785. Check that all items are unique.
  8786. </summary>
  8787. <param name="actual"></param>
  8788. <returns></returns>
  8789. </member>
  8790. <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8791. <summary>
  8792. Write a description of this constraint to a MessageWriter
  8793. </summary>
  8794. <param name="writer"></param>
  8795. </member>
  8796. <member name="T:NUnit.Framework.Constraints.XmlSerializableConstraint">
  8797. <summary>
  8798. XmlSerializableConstraint tests whether
  8799. an object is serializable in XML format.
  8800. </summary>
  8801. </member>
  8802. <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.Matches(System.Object)">
  8803. <summary>
  8804. Test whether the constraint is satisfied by a given value
  8805. </summary>
  8806. <param name="actual">The value to be tested</param>
  8807. <returns>True for success, false for failure</returns>
  8808. </member>
  8809. <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8810. <summary>
  8811. Write the constraint description to a MessageWriter
  8812. </summary>
  8813. <param name="writer">The writer on which the description is displayed</param>
  8814. </member>
  8815. <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  8816. <summary>
  8817. Write the actual value for a failing constraint test to a
  8818. MessageWriter. The default implementation simply writes
  8819. the raw value of actual, leaving it to the writer to
  8820. perform any formatting.
  8821. </summary>
  8822. <param name="writer">The writer on which the actual value is displayed</param>
  8823. </member>
  8824. <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.GetStringRepresentation">
  8825. <summary>
  8826. Returns the string representation of this constraint
  8827. </summary>
  8828. </member>
  8829. <member name="T:NUnit.Framework.Contains">
  8830. <summary>
  8831. Helper class with properties and methods that supply
  8832. a number of constraints used in Asserts.
  8833. </summary>
  8834. </member>
  8835. <member name="M:NUnit.Framework.Contains.Item(System.Object)">
  8836. <summary>
  8837. Returns a new CollectionContainsConstraint checking for the
  8838. presence of a particular object in the collection.
  8839. </summary>
  8840. </member>
  8841. <member name="M:NUnit.Framework.Contains.Substring(System.String)">
  8842. <summary>
  8843. Returns a constraint that succeeds if the actual
  8844. value contains the substring supplied as an argument.
  8845. </summary>
  8846. </member>
  8847. <member name="T:NUnit.Framework.DirectoryAssert">
  8848. <summary>
  8849. Summary description for DirectoryAssert
  8850. </summary>
  8851. </member>
  8852. <member name="M:NUnit.Framework.DirectoryAssert.Equals(System.Object,System.Object)">
  8853. <summary>
  8854. The Equals method throws an AssertionException. This is done
  8855. to make sure there is no mistake by calling this function.
  8856. </summary>
  8857. <param name="a"></param>
  8858. <param name="b"></param>
  8859. </member>
  8860. <member name="M:NUnit.Framework.DirectoryAssert.ReferenceEquals(System.Object,System.Object)">
  8861. <summary>
  8862. override the default ReferenceEquals to throw an AssertionException. This
  8863. implementation makes sure there is no mistake in calling this function
  8864. as part of Assert.
  8865. </summary>
  8866. <param name="a"></param>
  8867. <param name="b"></param>
  8868. </member>
  8869. <member name="M:NUnit.Framework.DirectoryAssert.#ctor">
  8870. <summary>
  8871. We don't actually want any instances of this object, but some people
  8872. like to inherit from it to add other static methods. Hence, the
  8873. protected constructor disallows any instances of this object.
  8874. </summary>
  8875. </member>
  8876. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
  8877. <summary>
  8878. Verifies that two directories are equal. Two directories are considered
  8879. equal if both are null, or if both have the same value byte for byte.
  8880. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8881. </summary>
  8882. <param name="expected">A directory containing the value that is expected</param>
  8883. <param name="actual">A directory containing the actual value</param>
  8884. <param name="message">The message to display if directories are not equal</param>
  8885. <param name="args">Arguments to be used in formatting the message</param>
  8886. </member>
  8887. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
  8888. <summary>
  8889. Verifies that two directories are equal. Two directories are considered
  8890. equal if both are null, or if both have the same value byte for byte.
  8891. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8892. </summary>
  8893. <param name="expected">A directory containing the value that is expected</param>
  8894. <param name="actual">A directory containing the actual value</param>
  8895. <param name="message">The message to display if directories are not equal</param>
  8896. </member>
  8897. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  8898. <summary>
  8899. Verifies that two directories are equal. Two directories are considered
  8900. equal if both are null, or if both have the same value byte for byte.
  8901. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8902. </summary>
  8903. <param name="expected">A directory containing the value that is expected</param>
  8904. <param name="actual">A directory containing the actual value</param>
  8905. </member>
  8906. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
  8907. <summary>
  8908. Verifies that two directories are equal. Two directories are considered
  8909. equal if both are null, or if both have the same value byte for byte.
  8910. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8911. </summary>
  8912. <param name="expected">A directory path string containing the value that is expected</param>
  8913. <param name="actual">A directory path string containing the actual value</param>
  8914. <param name="message">The message to display if directories are not equal</param>
  8915. <param name="args">Arguments to be used in formatting the message</param>
  8916. </member>
  8917. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String)">
  8918. <summary>
  8919. Verifies that two directories are equal. Two directories are considered
  8920. equal if both are null, or if both have the same value byte for byte.
  8921. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8922. </summary>
  8923. <param name="expected">A directory path string containing the value that is expected</param>
  8924. <param name="actual">A directory path string containing the actual value</param>
  8925. <param name="message">The message to display if directories are not equal</param>
  8926. </member>
  8927. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String)">
  8928. <summary>
  8929. Verifies that two directories are equal. Two directories are considered
  8930. equal if both are null, or if both have the same value byte for byte.
  8931. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8932. </summary>
  8933. <param name="expected">A directory path string containing the value that is expected</param>
  8934. <param name="actual">A directory path string containing the actual value</param>
  8935. </member>
  8936. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
  8937. <summary>
  8938. Asserts that two directories are not equal. If they are equal
  8939. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8940. </summary>
  8941. <param name="expected">A directory containing the value that is expected</param>
  8942. <param name="actual">A directory containing the actual value</param>
  8943. <param name="message">The message to display if directories are not equal</param>
  8944. <param name="args">Arguments to be used in formatting the message</param>
  8945. </member>
  8946. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
  8947. <summary>
  8948. Asserts that two directories are not equal. If they are equal
  8949. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8950. </summary>
  8951. <param name="expected">A directory containing the value that is expected</param>
  8952. <param name="actual">A directory containing the actual value</param>
  8953. <param name="message">The message to display if directories are not equal</param>
  8954. </member>
  8955. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  8956. <summary>
  8957. Asserts that two directories are not equal. If they are equal
  8958. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8959. </summary>
  8960. <param name="expected">A directory containing the value that is expected</param>
  8961. <param name="actual">A directory containing the actual value</param>
  8962. </member>
  8963. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])">
  8964. <summary>
  8965. Asserts that two directories are not equal. If they are equal
  8966. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8967. </summary>
  8968. <param name="expected">A directory path string containing the value that is expected</param>
  8969. <param name="actual">A directory path string containing the actual value</param>
  8970. <param name="message">The message to display if directories are equal</param>
  8971. <param name="args">Arguments to be used in formatting the message</param>
  8972. </member>
  8973. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.String)">
  8974. <summary>
  8975. Asserts that two directories are not equal. If they are equal
  8976. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8977. </summary>
  8978. <param name="expected">A directory path string containing the value that is expected</param>
  8979. <param name="actual">A directory path string containing the actual value</param>
  8980. <param name="message">The message to display if directories are equal</param>
  8981. </member>
  8982. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String)">
  8983. <summary>
  8984. Asserts that two directories are not equal. If they are equal
  8985. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8986. </summary>
  8987. <param name="expected">A directory path string containing the value that is expected</param>
  8988. <param name="actual">A directory path string containing the actual value</param>
  8989. </member>
  8990. <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo,System.String,System.Object[])">
  8991. <summary>
  8992. Asserts that the directory is empty. If it is not empty
  8993. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  8994. </summary>
  8995. <param name="directory">A directory to search</param>
  8996. <param name="message">The message to display if directories are not equal</param>
  8997. <param name="args">Arguments to be used in formatting the message</param>
  8998. </member>
  8999. <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo,System.String)">
  9000. <summary>
  9001. Asserts that the directory is empty. If it is not empty
  9002. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9003. </summary>
  9004. <param name="directory">A directory to search</param>
  9005. <param name="message">The message to display if directories are not equal</param>
  9006. </member>
  9007. <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo)">
  9008. <summary>
  9009. Asserts that the directory is empty. If it is not empty
  9010. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9011. </summary>
  9012. <param name="directory">A directory to search</param>
  9013. </member>
  9014. <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String,System.String,System.Object[])">
  9015. <summary>
  9016. Asserts that the directory is empty. If it is not empty
  9017. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9018. </summary>
  9019. <param name="directory">A directory to search</param>
  9020. <param name="message">The message to display if directories are not equal</param>
  9021. <param name="args">Arguments to be used in formatting the message</param>
  9022. </member>
  9023. <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String,System.String)">
  9024. <summary>
  9025. Asserts that the directory is empty. If it is not empty
  9026. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9027. </summary>
  9028. <param name="directory">A directory to search</param>
  9029. <param name="message">The message to display if directories are not equal</param>
  9030. </member>
  9031. <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String)">
  9032. <summary>
  9033. Asserts that the directory is empty. If it is not empty
  9034. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9035. </summary>
  9036. <param name="directory">A directory to search</param>
  9037. </member>
  9038. <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo,System.String,System.Object[])">
  9039. <summary>
  9040. Asserts that the directory is not empty. If it is empty
  9041. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9042. </summary>
  9043. <param name="directory">A directory to search</param>
  9044. <param name="message">The message to display if directories are not equal</param>
  9045. <param name="args">Arguments to be used in formatting the message</param>
  9046. </member>
  9047. <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo,System.String)">
  9048. <summary>
  9049. Asserts that the directory is not empty. If it is empty
  9050. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9051. </summary>
  9052. <param name="directory">A directory to search</param>
  9053. <param name="message">The message to display if directories are not equal</param>
  9054. </member>
  9055. <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo)">
  9056. <summary>
  9057. Asserts that the directory is not empty. If it is empty
  9058. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9059. </summary>
  9060. <param name="directory">A directory to search</param>
  9061. </member>
  9062. <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String,System.String,System.Object[])">
  9063. <summary>
  9064. Asserts that the directory is not empty. If it is empty
  9065. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9066. </summary>
  9067. <param name="directory">A directory to search</param>
  9068. <param name="message">The message to display if directories are not equal</param>
  9069. <param name="args">Arguments to be used in formatting the message</param>
  9070. </member>
  9071. <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String,System.String)">
  9072. <summary>
  9073. Asserts that the directory is not empty. If it is empty
  9074. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9075. </summary>
  9076. <param name="directory">A directory to search</param>
  9077. <param name="message">The message to display if directories are not equal</param>
  9078. </member>
  9079. <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String)">
  9080. <summary>
  9081. Asserts that the directory is not empty. If it is empty
  9082. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9083. </summary>
  9084. <param name="directory">A directory to search</param>
  9085. </member>
  9086. <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
  9087. <summary>
  9088. Asserts that path contains actual as a subdirectory or
  9089. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9090. </summary>
  9091. <param name="directory">A directory to search</param>
  9092. <param name="actual">sub-directory asserted to exist under directory</param>
  9093. <param name="message">The message to display if directory is not within the path</param>
  9094. <param name="args">Arguments to be used in formatting the message</param>
  9095. </member>
  9096. <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
  9097. <summary>
  9098. Asserts that path contains actual as a subdirectory or
  9099. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9100. </summary>
  9101. <param name="directory">A directory to search</param>
  9102. <param name="actual">sub-directory asserted to exist under directory</param>
  9103. <param name="message">The message to display if directory is not within the path</param>
  9104. </member>
  9105. <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  9106. <summary>
  9107. Asserts that path contains actual as a subdirectory or
  9108. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9109. </summary>
  9110. <param name="directory">A directory to search</param>
  9111. <param name="actual">sub-directory asserted to exist under directory</param>
  9112. </member>
  9113. <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String,System.String,System.Object[])">
  9114. <summary>
  9115. Asserts that path contains actual as a subdirectory or
  9116. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9117. </summary>
  9118. <param name="directory">A directory to search</param>
  9119. <param name="actual">sub-directory asserted to exist under directory</param>
  9120. <param name="message">The message to display if directory is not within the path</param>
  9121. <param name="args">Arguments to be used in formatting the message</param>
  9122. </member>
  9123. <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String,System.String)">
  9124. <summary>
  9125. Asserts that path contains actual as a subdirectory or
  9126. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9127. </summary>
  9128. <param name="directory">A directory to search</param>
  9129. <param name="actual">sub-directory asserted to exist under directory</param>
  9130. <param name="message">The message to display if directory is not within the path</param>
  9131. </member>
  9132. <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String)">
  9133. <summary>
  9134. Asserts that path contains actual as a subdirectory or
  9135. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9136. </summary>
  9137. <param name="directory">A directory to search</param>
  9138. <param name="actual">sub-directory asserted to exist under directory</param>
  9139. </member>
  9140. <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
  9141. <summary>
  9142. Asserts that path does not contain actual as a subdirectory or
  9143. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9144. </summary>
  9145. <param name="directory">A directory to search</param>
  9146. <param name="actual">sub-directory asserted to exist under directory</param>
  9147. <param name="message">The message to display if directory is not within the path</param>
  9148. <param name="args">Arguments to be used in formatting the message</param>
  9149. </member>
  9150. <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
  9151. <summary>
  9152. Asserts that path does not contain actual as a subdirectory or
  9153. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9154. </summary>
  9155. <param name="directory">A directory to search</param>
  9156. <param name="actual">sub-directory asserted to exist under directory</param>
  9157. <param name="message">The message to display if directory is not within the path</param>
  9158. </member>
  9159. <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  9160. <summary>
  9161. Asserts that path does not contain actual as a subdirectory or
  9162. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9163. </summary>
  9164. <param name="directory">A directory to search</param>
  9165. <param name="actual">sub-directory asserted to exist under directory</param>
  9166. </member>
  9167. <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String,System.String,System.Object[])">
  9168. <summary>
  9169. Asserts that path does not contain actual as a subdirectory or
  9170. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9171. </summary>
  9172. <param name="directory">A directory to search</param>
  9173. <param name="actual">sub-directory asserted to exist under directory</param>
  9174. <param name="message">The message to display if directory is not within the path</param>
  9175. <param name="args">Arguments to be used in formatting the message</param>
  9176. </member>
  9177. <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String,System.String)">
  9178. <summary>
  9179. Asserts that path does not contain actual as a subdirectory or
  9180. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9181. </summary>
  9182. <param name="directory">A directory to search</param>
  9183. <param name="actual">sub-directory asserted to exist under directory</param>
  9184. <param name="message">The message to display if directory is not within the path</param>
  9185. </member>
  9186. <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String)">
  9187. <summary>
  9188. Asserts that path does not contain actual as a subdirectory or
  9189. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9190. </summary>
  9191. <param name="directory">A directory to search</param>
  9192. <param name="actual">sub-directory asserted to exist under directory</param>
  9193. </member>
  9194. <member name="T:NUnit.Framework.AssertionException">
  9195. <summary>
  9196. Thrown when an assertion failed.
  9197. </summary>
  9198. </member>
  9199. <member name="M:NUnit.Framework.AssertionException.#ctor(System.String)">
  9200. <param name="message">The error message that explains
  9201. the reason for the exception</param>
  9202. </member>
  9203. <member name="M:NUnit.Framework.AssertionException.#ctor(System.String,System.Exception)">
  9204. <param name="message">The error message that explains
  9205. the reason for the exception</param>
  9206. <param name="inner">The exception that caused the
  9207. current exception</param>
  9208. </member>
  9209. <member name="M:NUnit.Framework.AssertionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  9210. <summary>
  9211. Serialization Constructor
  9212. </summary>
  9213. </member>
  9214. <member name="T:NUnit.Framework.IgnoreException">
  9215. <summary>
  9216. Thrown when an assertion failed.
  9217. </summary>
  9218. </member>
  9219. <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String)">
  9220. <param name="message"></param>
  9221. </member>
  9222. <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String,System.Exception)">
  9223. <param name="message">The error message that explains
  9224. the reason for the exception</param>
  9225. <param name="inner">The exception that caused the
  9226. current exception</param>
  9227. </member>
  9228. <member name="M:NUnit.Framework.IgnoreException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  9229. <summary>
  9230. Serialization Constructor
  9231. </summary>
  9232. </member>
  9233. <member name="T:NUnit.Framework.InconclusiveException">
  9234. <summary>
  9235. Thrown when a test executes inconclusively.
  9236. </summary>
  9237. </member>
  9238. <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.String)">
  9239. <param name="message">The error message that explains
  9240. the reason for the exception</param>
  9241. </member>
  9242. <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.String,System.Exception)">
  9243. <param name="message">The error message that explains
  9244. the reason for the exception</param>
  9245. <param name="inner">The exception that caused the
  9246. current exception</param>
  9247. </member>
  9248. <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  9249. <summary>
  9250. Serialization Constructor
  9251. </summary>
  9252. </member>
  9253. <member name="T:NUnit.Framework.SuccessException">
  9254. <summary>
  9255. Thrown when an assertion failed.
  9256. </summary>
  9257. </member>
  9258. <member name="M:NUnit.Framework.SuccessException.#ctor(System.String)">
  9259. <param name="message"></param>
  9260. </member>
  9261. <member name="M:NUnit.Framework.SuccessException.#ctor(System.String,System.Exception)">
  9262. <param name="message">The error message that explains
  9263. the reason for the exception</param>
  9264. <param name="inner">The exception that caused the
  9265. current exception</param>
  9266. </member>
  9267. <member name="M:NUnit.Framework.SuccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  9268. <summary>
  9269. Serialization Constructor
  9270. </summary>
  9271. </member>
  9272. <member name="T:NUnit.Framework.FileAssert">
  9273. <summary>
  9274. Summary description for FileAssert.
  9275. </summary>
  9276. </member>
  9277. <member name="M:NUnit.Framework.FileAssert.Equals(System.Object,System.Object)">
  9278. <summary>
  9279. The Equals method throws an AssertionException. This is done
  9280. to make sure there is no mistake by calling this function.
  9281. </summary>
  9282. <param name="a"></param>
  9283. <param name="b"></param>
  9284. </member>
  9285. <member name="M:NUnit.Framework.FileAssert.ReferenceEquals(System.Object,System.Object)">
  9286. <summary>
  9287. override the default ReferenceEquals to throw an AssertionException. This
  9288. implementation makes sure there is no mistake in calling this function
  9289. as part of Assert.
  9290. </summary>
  9291. <param name="a"></param>
  9292. <param name="b"></param>
  9293. </member>
  9294. <member name="M:NUnit.Framework.FileAssert.#ctor">
  9295. <summary>
  9296. We don't actually want any instances of this object, but some people
  9297. like to inherit from it to add other static methods. Hence, the
  9298. protected constructor disallows any instances of this object.
  9299. </summary>
  9300. </member>
  9301. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
  9302. <summary>
  9303. Verifies that two Streams are equal. Two Streams are considered
  9304. equal if both are null, or if both have the same value byte for byte.
  9305. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9306. </summary>
  9307. <param name="expected">The expected Stream</param>
  9308. <param name="actual">The actual Stream</param>
  9309. <param name="message">The message to display if Streams are not equal</param>
  9310. <param name="args">Arguments to be used in formatting the message</param>
  9311. </member>
  9312. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String)">
  9313. <summary>
  9314. Verifies that two Streams are equal. Two Streams are considered
  9315. equal if both are null, or if both have the same value byte for byte.
  9316. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9317. </summary>
  9318. <param name="expected">The expected Stream</param>
  9319. <param name="actual">The actual Stream</param>
  9320. <param name="message">The message to display if objects are not equal</param>
  9321. </member>
  9322. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream)">
  9323. <summary>
  9324. Verifies that two Streams are equal. Two Streams are considered
  9325. equal if both are null, or if both have the same value byte for byte.
  9326. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9327. </summary>
  9328. <param name="expected">The expected Stream</param>
  9329. <param name="actual">The actual Stream</param>
  9330. </member>
  9331. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
  9332. <summary>
  9333. Verifies that two files are equal. Two files are considered
  9334. equal if both are null, or if both have the same value byte for byte.
  9335. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9336. </summary>
  9337. <param name="expected">A file containing the value that is expected</param>
  9338. <param name="actual">A file containing the actual value</param>
  9339. <param name="message">The message to display if Streams are not equal</param>
  9340. <param name="args">Arguments to be used in formatting the message</param>
  9341. </member>
  9342. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
  9343. <summary>
  9344. Verifies that two files are equal. Two files are considered
  9345. equal if both are null, or if both have the same value byte for byte.
  9346. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9347. </summary>
  9348. <param name="expected">A file containing the value that is expected</param>
  9349. <param name="actual">A file containing the actual value</param>
  9350. <param name="message">The message to display if objects are not equal</param>
  9351. </member>
  9352. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo)">
  9353. <summary>
  9354. Verifies that two files are equal. Two files are considered
  9355. equal if both are null, or if both have the same value byte for byte.
  9356. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9357. </summary>
  9358. <param name="expected">A file containing the value that is expected</param>
  9359. <param name="actual">A file containing the actual value</param>
  9360. </member>
  9361. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
  9362. <summary>
  9363. Verifies that two files are equal. Two files are considered
  9364. equal if both are null, or if both have the same value byte for byte.
  9365. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9366. </summary>
  9367. <param name="expected">The path to a file containing the value that is expected</param>
  9368. <param name="actual">The path to a file containing the actual value</param>
  9369. <param name="message">The message to display if Streams are not equal</param>
  9370. <param name="args">Arguments to be used in formatting the message</param>
  9371. </member>
  9372. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String)">
  9373. <summary>
  9374. Verifies that two files are equal. Two files are considered
  9375. equal if both are null, or if both have the same value byte for byte.
  9376. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9377. </summary>
  9378. <param name="expected">The path to a file containing the value that is expected</param>
  9379. <param name="actual">The path to a file containing the actual value</param>
  9380. <param name="message">The message to display if objects are not equal</param>
  9381. </member>
  9382. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String)">
  9383. <summary>
  9384. Verifies that two files are equal. Two files are considered
  9385. equal if both are null, or if both have the same value byte for byte.
  9386. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9387. </summary>
  9388. <param name="expected">The path to a file containing the value that is expected</param>
  9389. <param name="actual">The path to a file containing the actual value</param>
  9390. </member>
  9391. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
  9392. <summary>
  9393. Asserts that two Streams are not equal. If they are equal
  9394. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9395. </summary>
  9396. <param name="expected">The expected Stream</param>
  9397. <param name="actual">The actual Stream</param>
  9398. <param name="message">The message to be displayed when the two Stream are the same.</param>
  9399. <param name="args">Arguments to be used in formatting the message</param>
  9400. </member>
  9401. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String)">
  9402. <summary>
  9403. Asserts that two Streams are not equal. If they are equal
  9404. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9405. </summary>
  9406. <param name="expected">The expected Stream</param>
  9407. <param name="actual">The actual Stream</param>
  9408. <param name="message">The message to be displayed when the Streams are the same.</param>
  9409. </member>
  9410. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream)">
  9411. <summary>
  9412. Asserts that two Streams are not equal. If they are equal
  9413. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9414. </summary>
  9415. <param name="expected">The expected Stream</param>
  9416. <param name="actual">The actual Stream</param>
  9417. </member>
  9418. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
  9419. <summary>
  9420. Asserts that two files are not equal. If they are equal
  9421. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9422. </summary>
  9423. <param name="expected">A file containing the value that is expected</param>
  9424. <param name="actual">A file containing the actual value</param>
  9425. <param name="message">The message to display if Streams are not equal</param>
  9426. <param name="args">Arguments to be used in formatting the message</param>
  9427. </member>
  9428. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
  9429. <summary>
  9430. Asserts that two files are not equal. If they are equal
  9431. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9432. </summary>
  9433. <param name="expected">A file containing the value that is expected</param>
  9434. <param name="actual">A file containing the actual value</param>
  9435. <param name="message">The message to display if objects are not equal</param>
  9436. </member>
  9437. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo)">
  9438. <summary>
  9439. Asserts that two files are not equal. If they are equal
  9440. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9441. </summary>
  9442. <param name="expected">A file containing the value that is expected</param>
  9443. <param name="actual">A file containing the actual value</param>
  9444. </member>
  9445. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])">
  9446. <summary>
  9447. Asserts that two files are not equal. If they are equal
  9448. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9449. </summary>
  9450. <param name="expected">The path to a file containing the value that is expected</param>
  9451. <param name="actual">The path to a file containing the actual value</param>
  9452. <param name="message">The message to display if Streams are not equal</param>
  9453. <param name="args">Arguments to be used in formatting the message</param>
  9454. </member>
  9455. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String)">
  9456. <summary>
  9457. Asserts that two files are not equal. If they are equal
  9458. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9459. </summary>
  9460. <param name="expected">The path to a file containing the value that is expected</param>
  9461. <param name="actual">The path to a file containing the actual value</param>
  9462. <param name="message">The message to display if objects are not equal</param>
  9463. </member>
  9464. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String)">
  9465. <summary>
  9466. Asserts that two files are not equal. If they are equal
  9467. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9468. </summary>
  9469. <param name="expected">The path to a file containing the value that is expected</param>
  9470. <param name="actual">The path to a file containing the actual value</param>
  9471. </member>
  9472. <member name="T:NUnit.Framework.GlobalSettings">
  9473. <summary>
  9474. GlobalSettings is a place for setting default values used
  9475. by the framework in performing asserts.
  9476. </summary>
  9477. </member>
  9478. <member name="F:NUnit.Framework.GlobalSettings.DefaultFloatingPointTolerance">
  9479. <summary>
  9480. Default tolerance for floating point equality
  9481. </summary>
  9482. </member>
  9483. <member name="T:NUnit.Framework.Guard">
  9484. <summary>
  9485. Class used to guard against unexpected argument values
  9486. by throwing an appropriate exception.
  9487. </summary>
  9488. </member>
  9489. <member name="M:NUnit.Framework.Guard.ArgumentNotNull(System.Object,System.String)">
  9490. <summary>
  9491. Throws an exception if an argument is null
  9492. </summary>
  9493. <param name="value">The value to be tested</param>
  9494. <param name="name">The name of the argument</param>
  9495. </member>
  9496. <member name="M:NUnit.Framework.Guard.ArgumentNotNullOrEmpty(System.String,System.String)">
  9497. <summary>
  9498. Throws an exception if a string argument is null or empty
  9499. </summary>
  9500. <param name="value">The value to be tested</param>
  9501. <param name="name">The name of the argument</param>
  9502. </member>
  9503. <member name="T:NUnit.Framework.Has">
  9504. <summary>
  9505. Helper class with properties and methods that supply
  9506. a number of constraints used in Asserts.
  9507. </summary>
  9508. </member>
  9509. <member name="M:NUnit.Framework.Has.Exactly(System.Int32)">
  9510. <summary>
  9511. Returns a ConstraintExpression, which will apply
  9512. the following constraint to all members of a collection,
  9513. succeeding only if a specified number of them succeed.
  9514. </summary>
  9515. </member>
  9516. <member name="M:NUnit.Framework.Has.Property(System.String)">
  9517. <summary>
  9518. Returns a new PropertyConstraintExpression, which will either
  9519. test for the existence of the named property on the object
  9520. being tested or apply any following constraint to that property.
  9521. </summary>
  9522. </member>
  9523. <member name="M:NUnit.Framework.Has.Attribute(System.Type)">
  9524. <summary>
  9525. Returns a new AttributeConstraint checking for the
  9526. presence of a particular attribute on an object.
  9527. </summary>
  9528. </member>
  9529. <member name="M:NUnit.Framework.Has.Attribute``1">
  9530. <summary>
  9531. Returns a new AttributeConstraint checking for the
  9532. presence of a particular attribute on an object.
  9533. </summary>
  9534. </member>
  9535. <member name="M:NUnit.Framework.Has.Member(System.Object)">
  9536. <summary>
  9537. Returns a new CollectionContainsConstraint checking for the
  9538. presence of a particular object in the collection.
  9539. </summary>
  9540. </member>
  9541. <member name="P:NUnit.Framework.Has.No">
  9542. <summary>
  9543. Returns a ConstraintExpression that negates any
  9544. following constraint.
  9545. </summary>
  9546. </member>
  9547. <member name="P:NUnit.Framework.Has.All">
  9548. <summary>
  9549. Returns a ConstraintExpression, which will apply
  9550. the following constraint to all members of a collection,
  9551. succeeding if all of them succeed.
  9552. </summary>
  9553. </member>
  9554. <member name="P:NUnit.Framework.Has.Some">
  9555. <summary>
  9556. Returns a ConstraintExpression, which will apply
  9557. the following constraint to all members of a collection,
  9558. succeeding if at least one of them succeeds.
  9559. </summary>
  9560. </member>
  9561. <member name="P:NUnit.Framework.Has.None">
  9562. <summary>
  9563. Returns a ConstraintExpression, which will apply
  9564. the following constraint to all members of a collection,
  9565. succeeding if all of them fail.
  9566. </summary>
  9567. </member>
  9568. <member name="P:NUnit.Framework.Has.Length">
  9569. <summary>
  9570. Returns a new ConstraintExpression, which will apply the following
  9571. constraint to the Length property of the object being tested.
  9572. </summary>
  9573. </member>
  9574. <member name="P:NUnit.Framework.Has.Count">
  9575. <summary>
  9576. Returns a new ConstraintExpression, which will apply the following
  9577. constraint to the Count property of the object being tested.
  9578. </summary>
  9579. </member>
  9580. <member name="P:NUnit.Framework.Has.Message">
  9581. <summary>
  9582. Returns a new ConstraintExpression, which will apply the following
  9583. constraint to the Message property of the object being tested.
  9584. </summary>
  9585. </member>
  9586. <member name="P:NUnit.Framework.Has.InnerException">
  9587. <summary>
  9588. Returns a new ConstraintExpression, which will apply the following
  9589. constraint to the InnerException property of the object being tested.
  9590. </summary>
  9591. </member>
  9592. <member name="T:NUnit.Framework.INUnitEqualityComparer`1">
  9593. <summary>
  9594. </summary>
  9595. <typeparam name="T"></typeparam>
  9596. </member>
  9597. <member name="M:NUnit.Framework.INUnitEqualityComparer`1.AreEqual(`0,`0,NUnit.Framework.Constraints.Tolerance@)">
  9598. <summary>
  9599. Compares two objects of a given Type for equality within a tolerance
  9600. </summary>
  9601. <param name="x">The first object to compare</param>
  9602. <param name="y">The second object to compare</param>
  9603. <param name="tolerance">The tolerance to use in the comparison</param>
  9604. <returns></returns>
  9605. </member>
  9606. <member name="T:NUnit.Framework.IExpectException">
  9607. <summary>
  9608. Interface implemented by a user fixture in order to
  9609. validate any expected exceptions. It is only called
  9610. for test methods marked with the ExpectedException
  9611. attribute.
  9612. </summary>
  9613. </member>
  9614. <member name="M:NUnit.Framework.IExpectException.HandleException(System.Exception)">
  9615. <summary>
  9616. Method to handle an expected exception
  9617. </summary>
  9618. <param name="ex">The exception to be handled</param>
  9619. </member>
  9620. <member name="T:NUnit.Framework.TestDetails">
  9621. <summary>
  9622. Provides details about a test
  9623. </summary>
  9624. </member>
  9625. <member name="M:NUnit.Framework.TestDetails.#ctor(System.Object,System.Reflection.MethodInfo,System.String,System.String,System.Boolean)">
  9626. <summary>
  9627. Creates an instance of TestDetails
  9628. </summary>
  9629. <param name="fixture">The fixture that the test is a member of, if available.</param>
  9630. <param name="method">The method that implements the test, if available.</param>
  9631. <param name="fullName">The full name of the test.</param>
  9632. <param name="type">A string representing the type of test, e.g. "Test Case".</param>
  9633. <param name="isSuite">Indicates if the test represents a suite of tests.</param>
  9634. </member>
  9635. <member name="P:NUnit.Framework.TestDetails.Fixture">
  9636. <summary>
  9637. The fixture that the test is a member of, if available.
  9638. </summary>
  9639. </member>
  9640. <member name="P:NUnit.Framework.TestDetails.Method">
  9641. <summary>
  9642. The method that implements the test, if available.
  9643. </summary>
  9644. </member>
  9645. <member name="P:NUnit.Framework.TestDetails.FullName">
  9646. <summary>
  9647. The full name of the test.
  9648. </summary>
  9649. </member>
  9650. <member name="P:NUnit.Framework.TestDetails.Type">
  9651. <summary>
  9652. A string representing the type of test, e.g. "Test Case".
  9653. </summary>
  9654. </member>
  9655. <member name="P:NUnit.Framework.TestDetails.IsSuite">
  9656. <summary>
  9657. Indicates if the test represents a suite of tests.
  9658. </summary>
  9659. </member>
  9660. <member name="T:NUnit.Framework.Is">
  9661. <summary>
  9662. Helper class with properties and methods that supply
  9663. a number of constraints used in Asserts.
  9664. </summary>
  9665. </member>
  9666. <member name="M:NUnit.Framework.Is.EqualTo(System.Object)">
  9667. <summary>
  9668. Returns a constraint that tests two items for equality
  9669. </summary>
  9670. </member>
  9671. <member name="M:NUnit.Framework.Is.SameAs(System.Object)">
  9672. <summary>
  9673. Returns a constraint that tests that two references are the same object
  9674. </summary>
  9675. </member>
  9676. <member name="M:NUnit.Framework.Is.GreaterThan(System.Object)">
  9677. <summary>
  9678. Returns a constraint that tests whether the
  9679. actual value is greater than the suppled argument
  9680. </summary>
  9681. </member>
  9682. <member name="M:NUnit.Framework.Is.GreaterThanOrEqualTo(System.Object)">
  9683. <summary>
  9684. Returns a constraint that tests whether the
  9685. actual value is greater than or equal to the suppled argument
  9686. </summary>
  9687. </member>
  9688. <member name="M:NUnit.Framework.Is.AtLeast(System.Object)">
  9689. <summary>
  9690. Returns a constraint that tests whether the
  9691. actual value is greater than or equal to the suppled argument
  9692. </summary>
  9693. </member>
  9694. <member name="M:NUnit.Framework.Is.LessThan(System.Object)">
  9695. <summary>
  9696. Returns a constraint that tests whether the
  9697. actual value is less than the suppled argument
  9698. </summary>
  9699. </member>
  9700. <member name="M:NUnit.Framework.Is.LessThanOrEqualTo(System.Object)">
  9701. <summary>
  9702. Returns a constraint that tests whether the
  9703. actual value is less than or equal to the suppled argument
  9704. </summary>
  9705. </member>
  9706. <member name="M:NUnit.Framework.Is.AtMost(System.Object)">
  9707. <summary>
  9708. Returns a constraint that tests whether the
  9709. actual value is less than or equal to the suppled argument
  9710. </summary>
  9711. </member>
  9712. <member name="M:NUnit.Framework.Is.TypeOf(System.Type)">
  9713. <summary>
  9714. Returns a constraint that tests whether the actual
  9715. value is of the exact type supplied as an argument.
  9716. </summary>
  9717. </member>
  9718. <member name="M:NUnit.Framework.Is.TypeOf``1">
  9719. <summary>
  9720. Returns a constraint that tests whether the actual
  9721. value is of the exact type supplied as an argument.
  9722. </summary>
  9723. </member>
  9724. <member name="M:NUnit.Framework.Is.InstanceOf(System.Type)">
  9725. <summary>
  9726. Returns a constraint that tests whether the actual value
  9727. is of the type supplied as an argument or a derived type.
  9728. </summary>
  9729. </member>
  9730. <member name="M:NUnit.Framework.Is.InstanceOf``1">
  9731. <summary>
  9732. Returns a constraint that tests whether the actual value
  9733. is of the type supplied as an argument or a derived type.
  9734. </summary>
  9735. </member>
  9736. <member name="M:NUnit.Framework.Is.InstanceOfType(System.Type)">
  9737. <summary>
  9738. Returns a constraint that tests whether the actual value
  9739. is of the type supplied as an argument or a derived type.
  9740. </summary>
  9741. </member>
  9742. <member name="M:NUnit.Framework.Is.InstanceOfType``1">
  9743. <summary>
  9744. Returns a constraint that tests whether the actual value
  9745. is of the type supplied as an argument or a derived type.
  9746. </summary>
  9747. </member>
  9748. <member name="M:NUnit.Framework.Is.AssignableFrom(System.Type)">
  9749. <summary>
  9750. Returns a constraint that tests whether the actual value
  9751. is assignable from the type supplied as an argument.
  9752. </summary>
  9753. </member>
  9754. <member name="M:NUnit.Framework.Is.AssignableFrom``1">
  9755. <summary>
  9756. Returns a constraint that tests whether the actual value
  9757. is assignable from the type supplied as an argument.
  9758. </summary>
  9759. </member>
  9760. <member name="M:NUnit.Framework.Is.AssignableTo(System.Type)">
  9761. <summary>
  9762. Returns a constraint that tests whether the actual value
  9763. is assignable from the type supplied as an argument.
  9764. </summary>
  9765. </member>
  9766. <member name="M:NUnit.Framework.Is.AssignableTo``1">
  9767. <summary>
  9768. Returns a constraint that tests whether the actual value
  9769. is assignable from the type supplied as an argument.
  9770. </summary>
  9771. </member>
  9772. <member name="M:NUnit.Framework.Is.EquivalentTo(System.Collections.IEnumerable)">
  9773. <summary>
  9774. Returns a constraint that tests whether the actual value
  9775. is a collection containing the same elements as the
  9776. collection supplied as an argument.
  9777. </summary>
  9778. </member>
  9779. <member name="M:NUnit.Framework.Is.SubsetOf(System.Collections.IEnumerable)">
  9780. <summary>
  9781. Returns a constraint that tests whether the actual value
  9782. is a subset of the collection supplied as an argument.
  9783. </summary>
  9784. </member>
  9785. <member name="M:NUnit.Framework.Is.StringContaining(System.String)">
  9786. <summary>
  9787. Returns a constraint that succeeds if the actual
  9788. value contains the substring supplied as an argument.
  9789. </summary>
  9790. </member>
  9791. <member name="M:NUnit.Framework.Is.StringStarting(System.String)">
  9792. <summary>
  9793. Returns a constraint that succeeds if the actual
  9794. value starts with the substring supplied as an argument.
  9795. </summary>
  9796. </member>
  9797. <member name="M:NUnit.Framework.Is.StringEnding(System.String)">
  9798. <summary>
  9799. Returns a constraint that succeeds if the actual
  9800. value ends with the substring supplied as an argument.
  9801. </summary>
  9802. </member>
  9803. <member name="M:NUnit.Framework.Is.StringMatching(System.String)">
  9804. <summary>
  9805. Returns a constraint that succeeds if the actual
  9806. value matches the regular expression supplied as an argument.
  9807. </summary>
  9808. </member>
  9809. <member name="M:NUnit.Framework.Is.SamePath(System.String)">
  9810. <summary>
  9811. Returns a constraint that tests whether the path provided
  9812. is the same as an expected path after canonicalization.
  9813. </summary>
  9814. </member>
  9815. <member name="M:NUnit.Framework.Is.SubPath(System.String)">
  9816. <summary>
  9817. Returns a constraint that tests whether the path provided
  9818. is under an expected path after canonicalization.
  9819. </summary>
  9820. </member>
  9821. <member name="M:NUnit.Framework.Is.SamePathOrUnder(System.String)">
  9822. <summary>
  9823. Returns a constraint that tests whether the path provided
  9824. is the same path or under an expected path after canonicalization.
  9825. </summary>
  9826. </member>
  9827. <member name="M:NUnit.Framework.Is.InRange``1(``0,``0)">
  9828. <summary>
  9829. Returns a constraint that tests whether the actual value falls
  9830. within a specified range.
  9831. </summary>
  9832. </member>
  9833. <member name="P:NUnit.Framework.Is.Not">
  9834. <summary>
  9835. Returns a ConstraintExpression that negates any
  9836. following constraint.
  9837. </summary>
  9838. </member>
  9839. <member name="P:NUnit.Framework.Is.All">
  9840. <summary>
  9841. Returns a ConstraintExpression, which will apply
  9842. the following constraint to all members of a collection,
  9843. succeeding if all of them succeed.
  9844. </summary>
  9845. </member>
  9846. <member name="P:NUnit.Framework.Is.Null">
  9847. <summary>
  9848. Returns a constraint that tests for null
  9849. </summary>
  9850. </member>
  9851. <member name="P:NUnit.Framework.Is.True">
  9852. <summary>
  9853. Returns a constraint that tests for True
  9854. </summary>
  9855. </member>
  9856. <member name="P:NUnit.Framework.Is.False">
  9857. <summary>
  9858. Returns a constraint that tests for False
  9859. </summary>
  9860. </member>
  9861. <member name="P:NUnit.Framework.Is.Positive">
  9862. <summary>
  9863. Returns a constraint that tests for a positive value
  9864. </summary>
  9865. </member>
  9866. <member name="P:NUnit.Framework.Is.Negative">
  9867. <summary>
  9868. Returns a constraint that tests for a negative value
  9869. </summary>
  9870. </member>
  9871. <member name="P:NUnit.Framework.Is.NaN">
  9872. <summary>
  9873. Returns a constraint that tests for NaN
  9874. </summary>
  9875. </member>
  9876. <member name="P:NUnit.Framework.Is.Empty">
  9877. <summary>
  9878. Returns a constraint that tests for empty
  9879. </summary>
  9880. </member>
  9881. <member name="P:NUnit.Framework.Is.Unique">
  9882. <summary>
  9883. Returns a constraint that tests whether a collection
  9884. contains all unique items.
  9885. </summary>
  9886. </member>
  9887. <member name="P:NUnit.Framework.Is.BinarySerializable">
  9888. <summary>
  9889. Returns a constraint that tests whether an object graph is serializable in binary format.
  9890. </summary>
  9891. </member>
  9892. <member name="P:NUnit.Framework.Is.XmlSerializable">
  9893. <summary>
  9894. Returns a constraint that tests whether an object graph is serializable in xml format.
  9895. </summary>
  9896. </member>
  9897. <member name="P:NUnit.Framework.Is.Ordered">
  9898. <summary>
  9899. Returns a constraint that tests whether a collection is ordered
  9900. </summary>
  9901. </member>
  9902. <member name="T:NUnit.Framework.Iz">
  9903. <summary>
  9904. The Iz class is a synonym for Is intended for use in VB,
  9905. which regards Is as a keyword.
  9906. </summary>
  9907. </member>
  9908. <member name="T:NUnit.Framework.List">
  9909. <summary>
  9910. The List class is a helper class with properties and methods
  9911. that supply a number of constraints used with lists and collections.
  9912. </summary>
  9913. </member>
  9914. <member name="M:NUnit.Framework.List.Map(System.Collections.ICollection)">
  9915. <summary>
  9916. List.Map returns a ListMapper, which can be used to map
  9917. the original collection to another collection.
  9918. </summary>
  9919. <param name="actual"></param>
  9920. <returns></returns>
  9921. </member>
  9922. <member name="T:NUnit.Framework.ListMapper">
  9923. <summary>
  9924. ListMapper is used to transform a collection used as an actual argument
  9925. producing another collection to be used in the assertion.
  9926. </summary>
  9927. </member>
  9928. <member name="M:NUnit.Framework.ListMapper.#ctor(System.Collections.ICollection)">
  9929. <summary>
  9930. Construct a ListMapper based on a collection
  9931. </summary>
  9932. <param name="original">The collection to be transformed</param>
  9933. </member>
  9934. <member name="M:NUnit.Framework.ListMapper.Property(System.String)">
  9935. <summary>
  9936. Produces a collection containing all the values of a property
  9937. </summary>
  9938. <param name="name">The collection of property values</param>
  9939. <returns></returns>
  9940. </member>
  9941. <member name="T:NUnit.Framework.Randomizer">
  9942. <summary>
  9943. Randomizer returns a set of random values in a repeatable
  9944. way, to allow re-running of tests if necessary.
  9945. </summary>
  9946. </member>
  9947. <member name="M:NUnit.Framework.Randomizer.GetRandomizer(System.Reflection.MemberInfo)">
  9948. <summary>
  9949. Get a randomizer for a particular member, returning
  9950. one that has already been created if it exists.
  9951. This ensures that the same values are generated
  9952. each time the tests are reloaded.
  9953. </summary>
  9954. </member>
  9955. <member name="M:NUnit.Framework.Randomizer.GetRandomizer(System.Reflection.ParameterInfo)">
  9956. <summary>
  9957. Get a randomizer for a particular parameter, returning
  9958. one that has already been created if it exists.
  9959. This ensures that the same values are generated
  9960. each time the tests are reloaded.
  9961. </summary>
  9962. </member>
  9963. <member name="M:NUnit.Framework.Randomizer.#ctor">
  9964. <summary>
  9965. Construct a randomizer using a random seed
  9966. </summary>
  9967. </member>
  9968. <member name="M:NUnit.Framework.Randomizer.#ctor(System.Int32)">
  9969. <summary>
  9970. Construct a randomizer using a specified seed
  9971. </summary>
  9972. </member>
  9973. <member name="M:NUnit.Framework.Randomizer.GetDoubles(System.Int32)">
  9974. <summary>
  9975. Return an array of random doubles between 0.0 and 1.0.
  9976. </summary>
  9977. <param name="count"></param>
  9978. <returns></returns>
  9979. </member>
  9980. <member name="M:NUnit.Framework.Randomizer.GetDoubles(System.Double,System.Double,System.Int32)">
  9981. <summary>
  9982. Return an array of random doubles with values in a specified range.
  9983. </summary>
  9984. </member>
  9985. <member name="M:NUnit.Framework.Randomizer.GetInts(System.Int32,System.Int32,System.Int32)">
  9986. <summary>
  9987. Return an array of random ints with values in a specified range.
  9988. </summary>
  9989. </member>
  9990. <member name="P:NUnit.Framework.Randomizer.RandomSeed">
  9991. <summary>
  9992. Get a random seed for use in creating a randomizer.
  9993. </summary>
  9994. </member>
  9995. <member name="T:NUnit.Framework.SpecialValue">
  9996. <summary>
  9997. The SpecialValue enum is used to represent TestCase arguments
  9998. that cannot be used as arguments to an Attribute.
  9999. </summary>
  10000. </member>
  10001. <member name="F:NUnit.Framework.SpecialValue.Null">
  10002. <summary>
  10003. Null represents a null value, which cannot be used as an
  10004. argument to an attribute under .NET 1.x
  10005. </summary>
  10006. </member>
  10007. <member name="T:NUnit.Framework.StringAssert">
  10008. <summary>
  10009. Basic Asserts on strings.
  10010. </summary>
  10011. </member>
  10012. <member name="M:NUnit.Framework.StringAssert.Equals(System.Object,System.Object)">
  10013. <summary>
  10014. The Equals method throws an AssertionException. This is done
  10015. to make sure there is no mistake by calling this function.
  10016. </summary>
  10017. <param name="a"></param>
  10018. <param name="b"></param>
  10019. </member>
  10020. <member name="M:NUnit.Framework.StringAssert.ReferenceEquals(System.Object,System.Object)">
  10021. <summary>
  10022. override the default ReferenceEquals to throw an AssertionException. This
  10023. implementation makes sure there is no mistake in calling this function
  10024. as part of Assert.
  10025. </summary>
  10026. <param name="a"></param>
  10027. <param name="b"></param>
  10028. </member>
  10029. <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String,System.Object[])">
  10030. <summary>
  10031. Asserts that a string is found within another string.
  10032. </summary>
  10033. <param name="expected">The expected string</param>
  10034. <param name="actual">The string to be examined</param>
  10035. <param name="message">The message to display in case of failure</param>
  10036. <param name="args">Arguments used in formatting the message</param>
  10037. </member>
  10038. <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String)">
  10039. <summary>
  10040. Asserts that a string is found within another string.
  10041. </summary>
  10042. <param name="expected">The expected string</param>
  10043. <param name="actual">The string to be examined</param>
  10044. <param name="message">The message to display in case of failure</param>
  10045. </member>
  10046. <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String)">
  10047. <summary>
  10048. Asserts that a string is found within another string.
  10049. </summary>
  10050. <param name="expected">The expected string</param>
  10051. <param name="actual">The string to be examined</param>
  10052. </member>
  10053. <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String,System.Object[])">
  10054. <summary>
  10055. Asserts that a string is not found within another string.
  10056. </summary>
  10057. <param name="expected">The expected string</param>
  10058. <param name="actual">The string to be examined</param>
  10059. <param name="message">The message to display in case of failure</param>
  10060. <param name="args">Arguments used in formatting the message</param>
  10061. </member>
  10062. <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String)">
  10063. <summary>
  10064. Asserts that a string is found within another string.
  10065. </summary>
  10066. <param name="expected">The expected string</param>
  10067. <param name="actual">The string to be examined</param>
  10068. <param name="message">The message to display in case of failure</param>
  10069. </member>
  10070. <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String)">
  10071. <summary>
  10072. Asserts that a string is found within another string.
  10073. </summary>
  10074. <param name="expected">The expected string</param>
  10075. <param name="actual">The string to be examined</param>
  10076. </member>
  10077. <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String,System.Object[])">
  10078. <summary>
  10079. Asserts that a string starts with another string.
  10080. </summary>
  10081. <param name="expected">The expected string</param>
  10082. <param name="actual">The string to be examined</param>
  10083. <param name="message">The message to display in case of failure</param>
  10084. <param name="args">Arguments used in formatting the message</param>
  10085. </member>
  10086. <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String)">
  10087. <summary>
  10088. Asserts that a string starts with another string.
  10089. </summary>
  10090. <param name="expected">The expected string</param>
  10091. <param name="actual">The string to be examined</param>
  10092. <param name="message">The message to display in case of failure</param>
  10093. </member>
  10094. <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String)">
  10095. <summary>
  10096. Asserts that a string starts with another string.
  10097. </summary>
  10098. <param name="expected">The expected string</param>
  10099. <param name="actual">The string to be examined</param>
  10100. </member>
  10101. <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String,System.Object[])">
  10102. <summary>
  10103. Asserts that a string does not start with another string.
  10104. </summary>
  10105. <param name="expected">The expected string</param>
  10106. <param name="actual">The string to be examined</param>
  10107. <param name="message">The message to display in case of failure</param>
  10108. <param name="args">Arguments used in formatting the message</param>
  10109. </member>
  10110. <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String)">
  10111. <summary>
  10112. Asserts that a string does not start with another string.
  10113. </summary>
  10114. <param name="expected">The expected string</param>
  10115. <param name="actual">The string to be examined</param>
  10116. <param name="message">The message to display in case of failure</param>
  10117. </member>
  10118. <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String)">
  10119. <summary>
  10120. Asserts that a string does not start with another string.
  10121. </summary>
  10122. <param name="expected">The expected string</param>
  10123. <param name="actual">The string to be examined</param>
  10124. </member>
  10125. <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String,System.Object[])">
  10126. <summary>
  10127. Asserts that a string ends with another string.
  10128. </summary>
  10129. <param name="expected">The expected string</param>
  10130. <param name="actual">The string to be examined</param>
  10131. <param name="message">The message to display in case of failure</param>
  10132. <param name="args">Arguments used in formatting the message</param>
  10133. </member>
  10134. <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String)">
  10135. <summary>
  10136. Asserts that a string ends with another string.
  10137. </summary>
  10138. <param name="expected">The expected string</param>
  10139. <param name="actual">The string to be examined</param>
  10140. <param name="message">The message to display in case of failure</param>
  10141. </member>
  10142. <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String)">
  10143. <summary>
  10144. Asserts that a string ends with another string.
  10145. </summary>
  10146. <param name="expected">The expected string</param>
  10147. <param name="actual">The string to be examined</param>
  10148. </member>
  10149. <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String,System.Object[])">
  10150. <summary>
  10151. Asserts that a string does not end with another string.
  10152. </summary>
  10153. <param name="expected">The expected string</param>
  10154. <param name="actual">The string to be examined</param>
  10155. <param name="message">The message to display in case of failure</param>
  10156. <param name="args">Arguments used in formatting the message</param>
  10157. </member>
  10158. <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String)">
  10159. <summary>
  10160. Asserts that a string does not end with another string.
  10161. </summary>
  10162. <param name="expected">The expected string</param>
  10163. <param name="actual">The string to be examined</param>
  10164. <param name="message">The message to display in case of failure</param>
  10165. </member>
  10166. <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String)">
  10167. <summary>
  10168. Asserts that a string does not end with another string.
  10169. </summary>
  10170. <param name="expected">The expected string</param>
  10171. <param name="actual">The string to be examined</param>
  10172. </member>
  10173. <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
  10174. <summary>
  10175. Asserts that two strings are equal, without regard to case.
  10176. </summary>
  10177. <param name="expected">The expected string</param>
  10178. <param name="actual">The actual string</param>
  10179. <param name="message">The message to display in case of failure</param>
  10180. <param name="args">Arguments used in formatting the message</param>
  10181. </member>
  10182. <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String)">
  10183. <summary>
  10184. Asserts that two strings are equal, without regard to case.
  10185. </summary>
  10186. <param name="expected">The expected string</param>
  10187. <param name="actual">The actual string</param>
  10188. <param name="message">The message to display in case of failure</param>
  10189. </member>
  10190. <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String)">
  10191. <summary>
  10192. Asserts that two strings are equal, without regard to case.
  10193. </summary>
  10194. <param name="expected">The expected string</param>
  10195. <param name="actual">The actual string</param>
  10196. </member>
  10197. <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
  10198. <summary>
  10199. Asserts that two strings are not equal, without regard to case.
  10200. </summary>
  10201. <param name="expected">The expected string</param>
  10202. <param name="actual">The actual string</param>
  10203. <param name="message">The message to display in case of failure</param>
  10204. <param name="args">Arguments used in formatting the message</param>
  10205. </member>
  10206. <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String)">
  10207. <summary>
  10208. Asserts that two strings are Notequal, without regard to case.
  10209. </summary>
  10210. <param name="expected">The expected string</param>
  10211. <param name="actual">The actual string</param>
  10212. <param name="message">The message to display in case of failure</param>
  10213. </member>
  10214. <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String)">
  10215. <summary>
  10216. Asserts that two strings are not equal, without regard to case.
  10217. </summary>
  10218. <param name="expected">The expected string</param>
  10219. <param name="actual">The actual string</param>
  10220. </member>
  10221. <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String,System.Object[])">
  10222. <summary>
  10223. Asserts that a string matches an expected regular expression pattern.
  10224. </summary>
  10225. <param name="pattern">The regex pattern to be matched</param>
  10226. <param name="actual">The actual string</param>
  10227. <param name="message">The message to display in case of failure</param>
  10228. <param name="args">Arguments used in formatting the message</param>
  10229. </member>
  10230. <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String)">
  10231. <summary>
  10232. Asserts that a string matches an expected regular expression pattern.
  10233. </summary>
  10234. <param name="pattern">The regex pattern to be matched</param>
  10235. <param name="actual">The actual string</param>
  10236. <param name="message">The message to display in case of failure</param>
  10237. </member>
  10238. <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String)">
  10239. <summary>
  10240. Asserts that a string matches an expected regular expression pattern.
  10241. </summary>
  10242. <param name="pattern">The regex pattern to be matched</param>
  10243. <param name="actual">The actual string</param>
  10244. </member>
  10245. <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String,System.Object[])">
  10246. <summary>
  10247. Asserts that a string does not match an expected regular expression pattern.
  10248. </summary>
  10249. <param name="pattern">The regex pattern to be used</param>
  10250. <param name="actual">The actual string</param>
  10251. <param name="message">The message to display in case of failure</param>
  10252. <param name="args">Arguments used in formatting the message</param>
  10253. </member>
  10254. <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String)">
  10255. <summary>
  10256. Asserts that a string does not match an expected regular expression pattern.
  10257. </summary>
  10258. <param name="pattern">The regex pattern to be used</param>
  10259. <param name="actual">The actual string</param>
  10260. <param name="message">The message to display in case of failure</param>
  10261. </member>
  10262. <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String)">
  10263. <summary>
  10264. Asserts that a string does not match an expected regular expression pattern.
  10265. </summary>
  10266. <param name="pattern">The regex pattern to be used</param>
  10267. <param name="actual">The actual string</param>
  10268. </member>
  10269. <member name="T:NUnit.Framework.TestCaseData">
  10270. <summary>
  10271. The TestCaseData class represents a set of arguments
  10272. and other parameter info to be used for a parameterized
  10273. test case. It provides a number of instance modifiers
  10274. for use in initializing the test case.
  10275. Note: Instance modifiers are getters that return
  10276. the same instance after modifying it's state.
  10277. </summary>
  10278. </member>
  10279. <member name="F:NUnit.Framework.TestCaseData.arguments">
  10280. <summary>
  10281. The argument list to be provided to the test
  10282. </summary>
  10283. </member>
  10284. <member name="F:NUnit.Framework.TestCaseData.expectedResult">
  10285. <summary>
  10286. The expected result to be returned
  10287. </summary>
  10288. </member>
  10289. <member name="F:NUnit.Framework.TestCaseData.hasExpectedResult">
  10290. <summary>
  10291. Set to true if this has an expected result
  10292. </summary>
  10293. </member>
  10294. <member name="F:NUnit.Framework.TestCaseData.expectedExceptionType">
  10295. <summary>
  10296. The expected exception Type
  10297. </summary>
  10298. </member>
  10299. <member name="F:NUnit.Framework.TestCaseData.expectedExceptionName">
  10300. <summary>
  10301. The FullName of the expected exception
  10302. </summary>
  10303. </member>
  10304. <member name="F:NUnit.Framework.TestCaseData.testName">
  10305. <summary>
  10306. The name to be used for the test
  10307. </summary>
  10308. </member>
  10309. <member name="F:NUnit.Framework.TestCaseData.description">
  10310. <summary>
  10311. The description of the test
  10312. </summary>
  10313. </member>
  10314. <member name="F:NUnit.Framework.TestCaseData.properties">
  10315. <summary>
  10316. A dictionary of properties, used to add information
  10317. to tests without requiring the class to change.
  10318. </summary>
  10319. </member>
  10320. <member name="F:NUnit.Framework.TestCaseData.isIgnored">
  10321. <summary>
  10322. If true, indicates that the test case is to be ignored
  10323. </summary>
  10324. </member>
  10325. <member name="F:NUnit.Framework.TestCaseData.isExplicit">
  10326. <summary>
  10327. If true, indicates that the test case is marked explicit
  10328. </summary>
  10329. </member>
  10330. <member name="F:NUnit.Framework.TestCaseData.ignoreReason">
  10331. <summary>
  10332. The reason for ignoring a test case
  10333. </summary>
  10334. </member>
  10335. <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object[])">
  10336. <summary>
  10337. Initializes a new instance of the <see cref="T:TestCaseData"/> class.
  10338. </summary>
  10339. <param name="args">The arguments.</param>
  10340. </member>
  10341. <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object)">
  10342. <summary>
  10343. Initializes a new instance of the <see cref="T:TestCaseData"/> class.
  10344. </summary>
  10345. <param name="arg">The argument.</param>
  10346. </member>
  10347. <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object)">
  10348. <summary>
  10349. Initializes a new instance of the <see cref="T:TestCaseData"/> class.
  10350. </summary>
  10351. <param name="arg1">The first argument.</param>
  10352. <param name="arg2">The second argument.</param>
  10353. </member>
  10354. <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object,System.Object)">
  10355. <summary>
  10356. Initializes a new instance of the <see cref="T:TestCaseData"/> class.
  10357. </summary>
  10358. <param name="arg1">The first argument.</param>
  10359. <param name="arg2">The second argument.</param>
  10360. <param name="arg3">The third argument.</param>
  10361. </member>
  10362. <member name="M:NUnit.Framework.TestCaseData.Returns(System.Object)">
  10363. <summary>
  10364. Sets the expected result for the test
  10365. </summary>
  10366. <param name="result">The expected result</param>
  10367. <returns>A modified TestCaseData</returns>
  10368. </member>
  10369. <member name="M:NUnit.Framework.TestCaseData.Throws(System.Type)">
  10370. <summary>
  10371. Sets the expected exception type for the test
  10372. </summary>
  10373. <param name="exceptionType">Type of the expected exception.</param>
  10374. <returns>The modified TestCaseData instance</returns>
  10375. </member>
  10376. <member name="M:NUnit.Framework.TestCaseData.Throws(System.String)">
  10377. <summary>
  10378. Sets the expected exception type for the test
  10379. </summary>
  10380. <param name="exceptionName">FullName of the expected exception.</param>
  10381. <returns>The modified TestCaseData instance</returns>
  10382. </member>
  10383. <member name="M:NUnit.Framework.TestCaseData.SetName(System.String)">
  10384. <summary>
  10385. Sets the name of the test case
  10386. </summary>
  10387. <returns>The modified TestCaseData instance</returns>
  10388. </member>
  10389. <member name="M:NUnit.Framework.TestCaseData.SetDescription(System.String)">
  10390. <summary>
  10391. Sets the description for the test case
  10392. being constructed.
  10393. </summary>
  10394. <param name="description">The description.</param>
  10395. <returns>The modified TestCaseData instance.</returns>
  10396. </member>
  10397. <member name="M:NUnit.Framework.TestCaseData.SetCategory(System.String)">
  10398. <summary>
  10399. Applies a category to the test
  10400. </summary>
  10401. <param name="category"></param>
  10402. <returns></returns>
  10403. </member>
  10404. <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.String)">
  10405. <summary>
  10406. Applies a named property to the test
  10407. </summary>
  10408. <param name="propName"></param>
  10409. <param name="propValue"></param>
  10410. <returns></returns>
  10411. </member>
  10412. <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Int32)">
  10413. <summary>
  10414. Applies a named property to the test
  10415. </summary>
  10416. <param name="propName"></param>
  10417. <param name="propValue"></param>
  10418. <returns></returns>
  10419. </member>
  10420. <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Double)">
  10421. <summary>
  10422. Applies a named property to the test
  10423. </summary>
  10424. <param name="propName"></param>
  10425. <param name="propValue"></param>
  10426. <returns></returns>
  10427. </member>
  10428. <member name="M:NUnit.Framework.TestCaseData.Ignore">
  10429. <summary>
  10430. Ignores this TestCase.
  10431. </summary>
  10432. <returns></returns>
  10433. </member>
  10434. <member name="M:NUnit.Framework.TestCaseData.Ignore(System.String)">
  10435. <summary>
  10436. Ignores this TestCase, specifying the reason.
  10437. </summary>
  10438. <param name="reason">The reason.</param>
  10439. <returns></returns>
  10440. </member>
  10441. <member name="M:NUnit.Framework.TestCaseData.MakeExplicit">
  10442. <summary>
  10443. Marks this TestCase as Explicit
  10444. </summary>
  10445. <returns></returns>
  10446. </member>
  10447. <member name="M:NUnit.Framework.TestCaseData.MakeExplicit(System.String)">
  10448. <summary>
  10449. Marks this TestCase as Explicit, specifying the reason.
  10450. </summary>
  10451. <param name="reason">The reason.</param>
  10452. <returns></returns>
  10453. </member>
  10454. <member name="P:NUnit.Framework.TestCaseData.Arguments">
  10455. <summary>
  10456. Gets the argument list to be provided to the test
  10457. </summary>
  10458. </member>
  10459. <member name="P:NUnit.Framework.TestCaseData.Result">
  10460. <summary>
  10461. Gets the expected result
  10462. </summary>
  10463. </member>
  10464. <member name="P:NUnit.Framework.TestCaseData.HasExpectedResult">
  10465. <summary>
  10466. Returns true if the result has been set
  10467. </summary>
  10468. </member>
  10469. <member name="P:NUnit.Framework.TestCaseData.ExpectedException">
  10470. <summary>
  10471. Gets the expected exception Type
  10472. </summary>
  10473. </member>
  10474. <member name="P:NUnit.Framework.TestCaseData.ExpectedExceptionName">
  10475. <summary>
  10476. Gets the FullName of the expected exception
  10477. </summary>
  10478. </member>
  10479. <member name="P:NUnit.Framework.TestCaseData.TestName">
  10480. <summary>
  10481. Gets the name to be used for the test
  10482. </summary>
  10483. </member>
  10484. <member name="P:NUnit.Framework.TestCaseData.Description">
  10485. <summary>
  10486. Gets the description of the test
  10487. </summary>
  10488. </member>
  10489. <member name="P:NUnit.Framework.TestCaseData.Ignored">
  10490. <summary>
  10491. Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
  10492. </summary>
  10493. <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
  10494. </member>
  10495. <member name="P:NUnit.Framework.TestCaseData.Explicit">
  10496. <summary>
  10497. Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is explicit.
  10498. </summary>
  10499. <value><c>true</c> if explicit; otherwise, <c>false</c>.</value>
  10500. </member>
  10501. <member name="P:NUnit.Framework.TestCaseData.IgnoreReason">
  10502. <summary>
  10503. Gets the ignore reason.
  10504. </summary>
  10505. <value>The ignore reason.</value>
  10506. </member>
  10507. <member name="P:NUnit.Framework.TestCaseData.Categories">
  10508. <summary>
  10509. Gets a list of categories associated with this test.
  10510. </summary>
  10511. </member>
  10512. <member name="P:NUnit.Framework.TestCaseData.Properties">
  10513. <summary>
  10514. Gets the property dictionary for this test
  10515. </summary>
  10516. </member>
  10517. <member name="T:NUnit.Framework.TestContext">
  10518. <summary>
  10519. Provide the context information of the current test
  10520. </summary>
  10521. </member>
  10522. <member name="M:NUnit.Framework.TestContext.#ctor(System.Collections.IDictionary)">
  10523. <summary>
  10524. Constructs a TestContext using the provided context dictionary
  10525. </summary>
  10526. <param name="context">A context dictionary</param>
  10527. </member>
  10528. <member name="P:NUnit.Framework.TestContext.CurrentContext">
  10529. <summary>
  10530. Get the current test context. This is created
  10531. as needed. The user may save the context for
  10532. use within a test, but it should not be used
  10533. outside the test for which it is created.
  10534. </summary>
  10535. </member>
  10536. <member name="P:NUnit.Framework.TestContext.Test">
  10537. <summary>
  10538. Gets a TestAdapter representing the currently executing test in this context.
  10539. </summary>
  10540. </member>
  10541. <member name="P:NUnit.Framework.TestContext.Result">
  10542. <summary>
  10543. Gets a ResultAdapter representing the current result for the test
  10544. executing in this context.
  10545. </summary>
  10546. </member>
  10547. <member name="P:NUnit.Framework.TestContext.TestDirectory">
  10548. <summary>
  10549. Gets the directory containing the current test assembly.
  10550. </summary>
  10551. </member>
  10552. <member name="P:NUnit.Framework.TestContext.WorkDirectory">
  10553. <summary>
  10554. Gets the directory to be used for outputing files created
  10555. by this test run.
  10556. </summary>
  10557. </member>
  10558. <member name="T:NUnit.Framework.TestContext.TestAdapter">
  10559. <summary>
  10560. TestAdapter adapts a Test for consumption by
  10561. the user test code.
  10562. </summary>
  10563. </member>
  10564. <member name="M:NUnit.Framework.TestContext.TestAdapter.#ctor(System.Collections.IDictionary)">
  10565. <summary>
  10566. Constructs a TestAdapter for this context
  10567. </summary>
  10568. <param name="context">The context dictionary</param>
  10569. </member>
  10570. <member name="P:NUnit.Framework.TestContext.TestAdapter.Name">
  10571. <summary>
  10572. The name of the test.
  10573. </summary>
  10574. </member>
  10575. <member name="P:NUnit.Framework.TestContext.TestAdapter.FullName">
  10576. <summary>
  10577. The FullName of the test
  10578. </summary>
  10579. </member>
  10580. <member name="P:NUnit.Framework.TestContext.TestAdapter.Properties">
  10581. <summary>
  10582. The properties of the test.
  10583. </summary>
  10584. </member>
  10585. <member name="T:NUnit.Framework.TestContext.ResultAdapter">
  10586. <summary>
  10587. ResultAdapter adapts a TestResult for consumption by
  10588. the user test code.
  10589. </summary>
  10590. </member>
  10591. <member name="M:NUnit.Framework.TestContext.ResultAdapter.#ctor(System.Collections.IDictionary)">
  10592. <summary>
  10593. Construct a ResultAdapter for a context
  10594. </summary>
  10595. <param name="context">The context holding the result</param>
  10596. </member>
  10597. <member name="P:NUnit.Framework.TestContext.ResultAdapter.State">
  10598. <summary>
  10599. The TestState of current test. This maps to the ResultState
  10600. used in nunit.core and is subject to change in the future.
  10601. </summary>
  10602. </member>
  10603. <member name="P:NUnit.Framework.TestContext.ResultAdapter.Status">
  10604. <summary>
  10605. The TestStatus of current test. This enum will be used
  10606. in future versions of NUnit and so is to be preferred
  10607. to the TestState value.
  10608. </summary>
  10609. </member>
  10610. <member name="T:NUnit.Framework.TestState">
  10611. <summary>
  10612. The ResultState enum indicates the result of running a test
  10613. </summary>
  10614. </member>
  10615. <member name="F:NUnit.Framework.TestState.Inconclusive">
  10616. <summary>
  10617. The result is inconclusive
  10618. </summary>
  10619. </member>
  10620. <member name="F:NUnit.Framework.TestState.NotRunnable">
  10621. <summary>
  10622. The test was not runnable.
  10623. </summary>
  10624. </member>
  10625. <member name="F:NUnit.Framework.TestState.Skipped">
  10626. <summary>
  10627. The test has been skipped.
  10628. </summary>
  10629. </member>
  10630. <member name="F:NUnit.Framework.TestState.Ignored">
  10631. <summary>
  10632. The test has been ignored.
  10633. </summary>
  10634. </member>
  10635. <member name="F:NUnit.Framework.TestState.Success">
  10636. <summary>
  10637. The test succeeded
  10638. </summary>
  10639. </member>
  10640. <member name="F:NUnit.Framework.TestState.Failure">
  10641. <summary>
  10642. The test failed
  10643. </summary>
  10644. </member>
  10645. <member name="F:NUnit.Framework.TestState.Error">
  10646. <summary>
  10647. The test encountered an unexpected exception
  10648. </summary>
  10649. </member>
  10650. <member name="F:NUnit.Framework.TestState.Cancelled">
  10651. <summary>
  10652. The test was cancelled by the user
  10653. </summary>
  10654. </member>
  10655. <member name="T:NUnit.Framework.TestStatus">
  10656. <summary>
  10657. The TestStatus enum indicates the result of running a test
  10658. </summary>
  10659. </member>
  10660. <member name="F:NUnit.Framework.TestStatus.Inconclusive">
  10661. <summary>
  10662. The test was inconclusive
  10663. </summary>
  10664. </member>
  10665. <member name="F:NUnit.Framework.TestStatus.Skipped">
  10666. <summary>
  10667. The test has skipped
  10668. </summary>
  10669. </member>
  10670. <member name="F:NUnit.Framework.TestStatus.Passed">
  10671. <summary>
  10672. The test succeeded
  10673. </summary>
  10674. </member>
  10675. <member name="F:NUnit.Framework.TestStatus.Failed">
  10676. <summary>
  10677. The test failed
  10678. </summary>
  10679. </member>
  10680. <member name="T:NUnit.Framework.Text">
  10681. <summary>
  10682. Helper class with static methods used to supply constraints
  10683. that operate on strings.
  10684. </summary>
  10685. </member>
  10686. <member name="M:NUnit.Framework.Text.Contains(System.String)">
  10687. <summary>
  10688. Returns a constraint that succeeds if the actual
  10689. value contains the substring supplied as an argument.
  10690. </summary>
  10691. </member>
  10692. <member name="M:NUnit.Framework.Text.DoesNotContain(System.String)">
  10693. <summary>
  10694. Returns a constraint that fails if the actual
  10695. value contains the substring supplied as an argument.
  10696. </summary>
  10697. </member>
  10698. <member name="M:NUnit.Framework.Text.StartsWith(System.String)">
  10699. <summary>
  10700. Returns a constraint that succeeds if the actual
  10701. value starts with the substring supplied as an argument.
  10702. </summary>
  10703. </member>
  10704. <member name="M:NUnit.Framework.Text.DoesNotStartWith(System.String)">
  10705. <summary>
  10706. Returns a constraint that fails if the actual
  10707. value starts with the substring supplied as an argument.
  10708. </summary>
  10709. </member>
  10710. <member name="M:NUnit.Framework.Text.EndsWith(System.String)">
  10711. <summary>
  10712. Returns a constraint that succeeds if the actual
  10713. value ends with the substring supplied as an argument.
  10714. </summary>
  10715. </member>
  10716. <member name="M:NUnit.Framework.Text.DoesNotEndWith(System.String)">
  10717. <summary>
  10718. Returns a constraint that fails if the actual
  10719. value ends with the substring supplied as an argument.
  10720. </summary>
  10721. </member>
  10722. <member name="M:NUnit.Framework.Text.Matches(System.String)">
  10723. <summary>
  10724. Returns a constraint that succeeds if the actual
  10725. value matches the Regex pattern supplied as an argument.
  10726. </summary>
  10727. </member>
  10728. <member name="M:NUnit.Framework.Text.DoesNotMatch(System.String)">
  10729. <summary>
  10730. Returns a constraint that fails if the actual
  10731. value matches the pattern supplied as an argument.
  10732. </summary>
  10733. </member>
  10734. <member name="P:NUnit.Framework.Text.All">
  10735. <summary>
  10736. Returns a ConstraintExpression, which will apply
  10737. the following constraint to all members of a collection,
  10738. succeeding if all of them succeed.
  10739. </summary>
  10740. </member>
  10741. <member name="T:NUnit.Framework.TextMessageWriter">
  10742. <summary>
  10743. TextMessageWriter writes constraint descriptions and messages
  10744. in displayable form as a text stream. It tailors the display
  10745. of individual message components to form the standard message
  10746. format of NUnit assertion failure messages.
  10747. </summary>
  10748. </member>
  10749. <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Expected">
  10750. <summary>
  10751. Prefix used for the expected value line of a message
  10752. </summary>
  10753. </member>
  10754. <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Actual">
  10755. <summary>
  10756. Prefix used for the actual value line of a message
  10757. </summary>
  10758. </member>
  10759. <member name="F:NUnit.Framework.TextMessageWriter.PrefixLength">
  10760. <summary>
  10761. Length of a message prefix
  10762. </summary>
  10763. </member>
  10764. <member name="M:NUnit.Framework.TextMessageWriter.#ctor">
  10765. <summary>
  10766. Construct a TextMessageWriter
  10767. </summary>
  10768. </member>
  10769. <member name="M:NUnit.Framework.TextMessageWriter.#ctor(System.String,System.Object[])">
  10770. <summary>
  10771. Construct a TextMessageWriter, specifying a user message
  10772. and optional formatting arguments.
  10773. </summary>
  10774. <param name="userMessage"></param>
  10775. <param name="args"></param>
  10776. </member>
  10777. <member name="M:NUnit.Framework.TextMessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
  10778. <summary>
  10779. Method to write single line message with optional args, usually
  10780. written to precede the general failure message, at a givel
  10781. indentation level.
  10782. </summary>
  10783. <param name="level">The indentation level of the message</param>
  10784. <param name="message">The message to be written</param>
  10785. <param name="args">Any arguments used in formatting the message</param>
  10786. </member>
  10787. <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
  10788. <summary>
  10789. Display Expected and Actual lines for a constraint. This
  10790. is called by MessageWriter's default implementation of
  10791. WriteMessageTo and provides the generic two-line display.
  10792. </summary>
  10793. <param name="constraint">The constraint that failed</param>
  10794. </member>
  10795. <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object)">
  10796. <summary>
  10797. Display Expected and Actual lines for given values. This
  10798. method may be called by constraints that need more control over
  10799. the display of actual and expected values than is provided
  10800. by the default implementation.
  10801. </summary>
  10802. <param name="expected">The expected value</param>
  10803. <param name="actual">The actual value causing the failure</param>
  10804. </member>
  10805. <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)">
  10806. <summary>
  10807. Display Expected and Actual lines for given values, including
  10808. a tolerance value on the expected line.
  10809. </summary>
  10810. <param name="expected">The expected value</param>
  10811. <param name="actual">The actual value causing the failure</param>
  10812. <param name="tolerance">The tolerance within which the test was made</param>
  10813. </member>
  10814. <member name="M:NUnit.Framework.TextMessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
  10815. <summary>
  10816. Display the expected and actual string values on separate lines.
  10817. If the mismatch parameter is >=0, an additional line is displayed
  10818. line containing a caret that points to the mismatch point.
  10819. </summary>
  10820. <param name="expected">The expected string value</param>
  10821. <param name="actual">The actual string value</param>
  10822. <param name="mismatch">The point at which the strings don't match or -1</param>
  10823. <param name="ignoreCase">If true, case is ignored in string comparisons</param>
  10824. <param name="clipping">If true, clip the strings to fit the max line length</param>
  10825. </member>
  10826. <member name="M:NUnit.Framework.TextMessageWriter.WriteConnector(System.String)">
  10827. <summary>
  10828. Writes the text for a connector.
  10829. </summary>
  10830. <param name="connector">The connector.</param>
  10831. </member>
  10832. <member name="M:NUnit.Framework.TextMessageWriter.WritePredicate(System.String)">
  10833. <summary>
  10834. Writes the text for a predicate.
  10835. </summary>
  10836. <param name="predicate">The predicate.</param>
  10837. </member>
  10838. <member name="M:NUnit.Framework.TextMessageWriter.WriteModifier(System.String)">
  10839. <summary>
  10840. Write the text for a modifier.
  10841. </summary>
  10842. <param name="modifier">The modifier.</param>
  10843. </member>
  10844. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedValue(System.Object)">
  10845. <summary>
  10846. Writes the text for an expected value.
  10847. </summary>
  10848. <param name="expected">The expected value.</param>
  10849. </member>
  10850. <member name="M:NUnit.Framework.TextMessageWriter.WriteActualValue(System.Object)">
  10851. <summary>
  10852. Writes the text for an actual value.
  10853. </summary>
  10854. <param name="actual">The actual value.</param>
  10855. </member>
  10856. <member name="M:NUnit.Framework.TextMessageWriter.WriteValue(System.Object)">
  10857. <summary>
  10858. Writes the text for a generalized value.
  10859. </summary>
  10860. <param name="val">The value.</param>
  10861. </member>
  10862. <member name="M:NUnit.Framework.TextMessageWriter.WriteCollectionElements(System.Collections.IEnumerable,System.Int32,System.Int32)">
  10863. <summary>
  10864. Writes the text for a collection value,
  10865. starting at a particular point, to a max length
  10866. </summary>
  10867. <param name="collection">The collection containing elements to write.</param>
  10868. <param name="start">The starting point of the elements to write</param>
  10869. <param name="max">The maximum number of elements to write</param>
  10870. </member>
  10871. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(NUnit.Framework.Constraints.Constraint)">
  10872. <summary>
  10873. Write the generic 'Expected' line for a constraint
  10874. </summary>
  10875. <param name="constraint">The constraint that failed</param>
  10876. </member>
  10877. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object)">
  10878. <summary>
  10879. Write the generic 'Expected' line for a given value
  10880. </summary>
  10881. <param name="expected">The expected value</param>
  10882. </member>
  10883. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object,NUnit.Framework.Constraints.Tolerance)">
  10884. <summary>
  10885. Write the generic 'Expected' line for a given value
  10886. and tolerance.
  10887. </summary>
  10888. <param name="expected">The expected value</param>
  10889. <param name="tolerance">The tolerance within which the test was made</param>
  10890. </member>
  10891. <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(NUnit.Framework.Constraints.Constraint)">
  10892. <summary>
  10893. Write the generic 'Actual' line for a constraint
  10894. </summary>
  10895. <param name="constraint">The constraint for which the actual value is to be written</param>
  10896. </member>
  10897. <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(System.Object)">
  10898. <summary>
  10899. Write the generic 'Actual' line for a given value
  10900. </summary>
  10901. <param name="actual">The actual value causing a failure</param>
  10902. </member>
  10903. <member name="P:NUnit.Framework.TextMessageWriter.MaxLineLength">
  10904. <summary>
  10905. Gets or sets the maximum line length for this writer
  10906. </summary>
  10907. </member>
  10908. <member name="T:NUnit.Framework.Throws">
  10909. <summary>
  10910. Helper class with properties and methods that supply
  10911. constraints that operate on exceptions.
  10912. </summary>
  10913. </member>
  10914. <member name="M:NUnit.Framework.Throws.TypeOf(System.Type)">
  10915. <summary>
  10916. Creates a constraint specifying the exact type of exception expected
  10917. </summary>
  10918. </member>
  10919. <member name="M:NUnit.Framework.Throws.TypeOf``1">
  10920. <summary>
  10921. Creates a constraint specifying the exact type of exception expected
  10922. </summary>
  10923. </member>
  10924. <member name="M:NUnit.Framework.Throws.InstanceOf(System.Type)">
  10925. <summary>
  10926. Creates a constraint specifying the type of exception expected
  10927. </summary>
  10928. </member>
  10929. <member name="M:NUnit.Framework.Throws.InstanceOf``1">
  10930. <summary>
  10931. Creates a constraint specifying the type of exception expected
  10932. </summary>
  10933. </member>
  10934. <member name="P:NUnit.Framework.Throws.Exception">
  10935. <summary>
  10936. Creates a constraint specifying an expected exception
  10937. </summary>
  10938. </member>
  10939. <member name="P:NUnit.Framework.Throws.InnerException">
  10940. <summary>
  10941. Creates a constraint specifying an exception with a given InnerException
  10942. </summary>
  10943. </member>
  10944. <member name="P:NUnit.Framework.Throws.TargetInvocationException">
  10945. <summary>
  10946. Creates a constraint specifying an expected TargetInvocationException
  10947. </summary>
  10948. </member>
  10949. <member name="P:NUnit.Framework.Throws.ArgumentException">
  10950. <summary>
  10951. Creates a constraint specifying an expected TargetInvocationException
  10952. </summary>
  10953. </member>
  10954. <member name="P:NUnit.Framework.Throws.InvalidOperationException">
  10955. <summary>
  10956. Creates a constraint specifying an expected TargetInvocationException
  10957. </summary>
  10958. </member>
  10959. <member name="P:NUnit.Framework.Throws.Nothing">
  10960. <summary>
  10961. Creates a constraint specifying that no exception is thrown
  10962. </summary>
  10963. </member>
  10964. </members>
  10965. </doc>