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.ActionTargets">
  8. <summary>
  9. The different targets a test action attribute can be applied to
  10. </summary>
  11. </member>
  12. <member name="F:NUnit.Framework.ActionTargets.Default">
  13. <summary>
  14. Default target, which is determined by where the action attribute is attached
  15. </summary>
  16. </member>
  17. <member name="F:NUnit.Framework.ActionTargets.Test">
  18. <summary>
  19. Target a individual test case
  20. </summary>
  21. </member>
  22. <member name="F:NUnit.Framework.ActionTargets.Suite">
  23. <summary>
  24. Target a suite of test cases
  25. </summary>
  26. </member>
  27. <member name="T:NUnit.Framework.TestDelegate">
  28. <summary>
  29. Delegate used by tests that execute code and
  30. capture any thrown exception.
  31. </summary>
  32. </member>
  33. <member name="T:NUnit.Framework.Assert">
  34. <summary>
  35. The Assert class contains a collection of static methods that
  36. implement the most common assertions used in NUnit.
  37. </summary>
  38. </member>
  39. <member name="M:NUnit.Framework.Assert.#ctor">
  40. <summary>
  41. We don't actually want any instances of this object, but some people
  42. like to inherit from it to add other static methods. Hence, the
  43. protected constructor disallows any instances of this object.
  44. </summary>
  45. </member>
  46. <member name="M:NUnit.Framework.Assert.Equals(System.Object,System.Object)">
  47. <summary>
  48. The Equals method throws an AssertionException. This is done
  49. to make sure there is no mistake by calling this function.
  50. </summary>
  51. <param name="a"></param>
  52. <param name="b"></param>
  53. </member>
  54. <member name="M:NUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
  55. <summary>
  56. override the default ReferenceEquals to throw an AssertionException. This
  57. implementation makes sure there is no mistake in calling this function
  58. as part of Assert.
  59. </summary>
  60. <param name="a"></param>
  61. <param name="b"></param>
  62. </member>
  63. <member name="M:NUnit.Framework.Assert.Pass(System.String,System.Object[])">
  64. <summary>
  65. Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
  66. that are passed in. This allows a test to be cut short, with a result
  67. of success returned to NUnit.
  68. </summary>
  69. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  70. <param name="args">Arguments to be used in formatting the message</param>
  71. </member>
  72. <member name="M:NUnit.Framework.Assert.Pass(System.String)">
  73. <summary>
  74. Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
  75. that are passed in. This allows a test to be cut short, with a result
  76. of success returned to NUnit.
  77. </summary>
  78. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  79. </member>
  80. <member name="M:NUnit.Framework.Assert.Pass">
  81. <summary>
  82. Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
  83. that are passed in. This allows a test to be cut short, with a result
  84. of success returned to NUnit.
  85. </summary>
  86. </member>
  87. <member name="M:NUnit.Framework.Assert.Fail(System.String,System.Object[])">
  88. <summary>
  89. Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message and arguments
  90. that are passed in. This is used by the other Assert functions.
  91. </summary>
  92. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  93. <param name="args">Arguments to be used in formatting the message</param>
  94. </member>
  95. <member name="M:NUnit.Framework.Assert.Fail(System.String)">
  96. <summary>
  97. Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message that is
  98. passed in. This is used by the other Assert functions.
  99. </summary>
  100. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  101. </member>
  102. <member name="M:NUnit.Framework.Assert.Fail">
  103. <summary>
  104. Throws an <see cref="T:NUnit.Framework.AssertionException"/>.
  105. This is used by the other Assert functions.
  106. </summary>
  107. </member>
  108. <member name="M:NUnit.Framework.Assert.Ignore(System.String,System.Object[])">
  109. <summary>
  110. Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message and arguments
  111. that are passed in. This causes the test to be reported as ignored.
  112. </summary>
  113. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  114. <param name="args">Arguments to be used in formatting the message</param>
  115. </member>
  116. <member name="M:NUnit.Framework.Assert.Ignore(System.String)">
  117. <summary>
  118. Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message that is
  119. passed in. This causes the test to be reported as ignored.
  120. </summary>
  121. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  122. </member>
  123. <member name="M:NUnit.Framework.Assert.Ignore">
  124. <summary>
  125. Throws an <see cref="T:NUnit.Framework.IgnoreException"/>.
  126. This causes the test to be reported as ignored.
  127. </summary>
  128. </member>
  129. <member name="M:NUnit.Framework.Assert.Inconclusive(System.String,System.Object[])">
  130. <summary>
  131. Throws an <see cref="T:NUnit.Framework.InconclusiveException"/> with the message and arguments
  132. that are passed in. This causes the test to be reported as inconclusive.
  133. </summary>
  134. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.InconclusiveException"/> with.</param>
  135. <param name="args">Arguments to be used in formatting the message</param>
  136. </member>
  137. <member name="M:NUnit.Framework.Assert.Inconclusive(System.String)">
  138. <summary>
  139. Throws an <see cref="T:NUnit.Framework.InconclusiveException"/> with the message that is
  140. passed in. This causes the test to be reported as inconclusive.
  141. </summary>
  142. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.InconclusiveException"/> with.</param>
  143. </member>
  144. <member name="M:NUnit.Framework.Assert.Inconclusive">
  145. <summary>
  146. Throws an <see cref="T:NUnit.Framework.InconclusiveException"/>.
  147. This causes the test to be reported as Inconclusive.
  148. </summary>
  149. </member>
  150. <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
  151. <summary>
  152. Apply a constraint to an actual value, succeeding if the constraint
  153. is satisfied and throwing an assertion exception on failure.
  154. </summary>
  155. <param name="actual">The actual value to test</param>
  156. <param name="expression">A Constraint to be applied</param>
  157. </member>
  158. <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  159. <summary>
  160. Apply a constraint to an actual value, succeeding if the constraint
  161. is satisfied and throwing an assertion exception on failure.
  162. </summary>
  163. <param name="actual">The actual value to test</param>
  164. <param name="expression">A Constraint to be applied</param>
  165. <param name="message">The message that will be displayed on failure</param>
  166. </member>
  167. <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  168. <summary>
  169. Apply a constraint to an actual value, succeeding if the constraint
  170. is satisfied and throwing an assertion exception on failure.
  171. </summary>
  172. <param name="actual">The actual value to test</param>
  173. <param name="expression">A Constraint expression to be applied</param>
  174. <param name="message">The message that will be displayed on failure</param>
  175. <param name="args">Arguments to be used in formatting the message</param>
  176. </member>
  177. <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])">
  178. <summary>
  179. Asserts that a condition is true. If the condition is false the method throws
  180. an <see cref="T:NUnit.Framework.AssertionException"/>.
  181. </summary>
  182. <param name="condition">The evaluated condition</param>
  183. <param name="message">The message to display if the condition is false</param>
  184. <param name="args">Arguments to be used in formatting the message</param>
  185. </member>
  186. <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String)">
  187. <summary>
  188. Asserts that a condition is true. If the condition is false the method throws
  189. an <see cref="T:NUnit.Framework.AssertionException"/>.
  190. </summary>
  191. <param name="condition">The evaluated condition</param>
  192. <param name="message">The message to display if the condition is false</param>
  193. </member>
  194. <member name="M:NUnit.Framework.Assert.That(System.Boolean)">
  195. <summary>
  196. Asserts that a condition is true. If the condition is false the method throws
  197. an <see cref="T:NUnit.Framework.AssertionException"/>.
  198. </summary>
  199. <param name="condition">The evaluated condition</param>
  200. </member>
  201. <member name="M:NUnit.Framework.Assert.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint)">
  202. <summary>
  203. Apply a constraint to an actual value, succeeding if the constraint
  204. is satisfied and throwing an assertion exception on failure.
  205. </summary>
  206. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  207. <param name="expr">A Constraint expression to be applied</param>
  208. </member>
  209. <member name="M:NUnit.Framework.Assert.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  210. <summary>
  211. Apply a constraint to an actual value, succeeding if the constraint
  212. is satisfied and throwing an assertion exception on failure.
  213. </summary>
  214. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  215. <param name="expr">A Constraint expression to be applied</param>
  216. <param name="message">The message that will be displayed on failure</param>
  217. </member>
  218. <member name="M:NUnit.Framework.Assert.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  219. <summary>
  220. Apply a constraint to an actual value, succeeding if the constraint
  221. is satisfied and throwing an assertion exception on failure.
  222. </summary>
  223. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  224. <param name="expr">A Constraint expression to be applied</param>
  225. <param name="message">The message that will be displayed on failure</param>
  226. <param name="args">Arguments to be used in formatting the message</param>
  227. </member>
  228. <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
  229. <summary>
  230. Apply a constraint to a referenced value, succeeding if the constraint
  231. is satisfied and throwing an assertion exception on failure.
  232. </summary>
  233. <param name="actual">The actual value to test</param>
  234. <param name="expression">A Constraint to be applied</param>
  235. </member>
  236. <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  237. <summary>
  238. Apply a constraint to a referenced value, succeeding if the constraint
  239. is satisfied and throwing an assertion exception on failure.
  240. </summary>
  241. <param name="actual">The actual value to test</param>
  242. <param name="expression">A Constraint to be applied</param>
  243. <param name="message">The message that will be displayed on failure</param>
  244. </member>
  245. <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  246. <summary>
  247. Apply a constraint to a referenced value, succeeding if the constraint
  248. is satisfied and throwing an assertion exception on failure.
  249. </summary>
  250. <param name="actual">The actual value to test</param>
  251. <param name="expression">A Constraint to be applied</param>
  252. <param name="message">The message that will be displayed on failure</param>
  253. <param name="args">Arguments to be used in formatting the message</param>
  254. </member>
  255. <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
  256. <summary>
  257. Asserts that the code represented by a delegate throws an exception
  258. that satisfies the constraint provided.
  259. </summary>
  260. <param name="code">A TestDelegate to be executed</param>
  261. <param name="constraint">A ThrowsConstraint used in the test</param>
  262. </member>
  263. <member name="M:NUnit.Framework.Assert.ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
  264. <summary>
  265. Apply a constraint to an actual value, succeeding if the constraint
  266. is satisfied and throwing an assertion exception on failure.
  267. Used as a synonym for That in rare cases where a private setter
  268. causes a Visual Basic compilation error.
  269. </summary>
  270. <param name="actual">The actual value to test</param>
  271. <param name="expression">A Constraint to be applied</param>
  272. </member>
  273. <member name="M:NUnit.Framework.Assert.ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  274. <summary>
  275. Apply a constraint to an actual value, succeeding if the constraint
  276. is satisfied and throwing an assertion exception on failure.
  277. Used as a synonym for That in rare cases where a private setter
  278. causes a Visual Basic compilation error.
  279. </summary>
  280. <param name="actual">The actual value to test</param>
  281. <param name="expression">A Constraint to be applied</param>
  282. <param name="message">The message that will be displayed on failure</param>
  283. </member>
  284. <member name="M:NUnit.Framework.Assert.ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  285. <summary>
  286. Apply a constraint to an actual value, succeeding if the constraint
  287. is satisfied and throwing an assertion exception on failure.
  288. Used as a synonym for That in rare cases where a private setter
  289. causes a Visual Basic compilation error.
  290. </summary>
  291. <remarks>
  292. This method is provided for use by VB developers needing to test
  293. the value of properties with private setters.
  294. </remarks>
  295. <param name="actual">The actual value to test</param>
  296. <param name="expression">A Constraint expression to be applied</param>
  297. <param name="message">The message that will be displayed on failure</param>
  298. <param name="args">Arguments to be used in formatting the message</param>
  299. </member>
  300. <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String,System.Object[])">
  301. <summary>
  302. Verifies that a delegate throws a particular exception when called.
  303. </summary>
  304. <param name="expression">A constraint to be satisfied by the exception</param>
  305. <param name="code">A TestDelegate</param>
  306. <param name="message">The message that will be displayed on failure</param>
  307. <param name="args">Arguments to be used in formatting the message</param>
  308. </member>
  309. <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String)">
  310. <summary>
  311. Verifies that a delegate throws a particular exception when called.
  312. </summary>
  313. <param name="expression">A constraint to be satisfied by the exception</param>
  314. <param name="code">A TestDelegate</param>
  315. <param name="message">The message that will be displayed on failure</param>
  316. </member>
  317. <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate)">
  318. <summary>
  319. Verifies that a delegate throws a particular exception when called.
  320. </summary>
  321. <param name="expression">A constraint to be satisfied by the exception</param>
  322. <param name="code">A TestDelegate</param>
  323. </member>
  324. <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])">
  325. <summary>
  326. Verifies that a delegate throws a particular exception when called.
  327. </summary>
  328. <param name="expectedExceptionType">The exception Type expected</param>
  329. <param name="code">A TestDelegate</param>
  330. <param name="message">The message that will be displayed on failure</param>
  331. <param name="args">Arguments to be used in formatting the message</param>
  332. </member>
  333. <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String)">
  334. <summary>
  335. Verifies that a delegate throws a particular exception when called.
  336. </summary>
  337. <param name="expectedExceptionType">The exception Type expected</param>
  338. <param name="code">A TestDelegate</param>
  339. <param name="message">The message that will be displayed on failure</param>
  340. </member>
  341. <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate)">
  342. <summary>
  343. Verifies that a delegate throws a particular exception when called.
  344. </summary>
  345. <param name="expectedExceptionType">The exception Type expected</param>
  346. <param name="code">A TestDelegate</param>
  347. </member>
  348. <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String,System.Object[])">
  349. <summary>
  350. Verifies that a delegate throws a particular exception when called.
  351. </summary>
  352. <typeparam name="T">Type of the expected exception</typeparam>
  353. <param name="code">A TestDelegate</param>
  354. <param name="message">The message that will be displayed on failure</param>
  355. <param name="args">Arguments to be used in formatting the message</param>
  356. </member>
  357. <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String)">
  358. <summary>
  359. Verifies that a delegate throws a particular exception when called.
  360. </summary>
  361. <typeparam name="T">Type of the expected exception</typeparam>
  362. <param name="code">A TestDelegate</param>
  363. <param name="message">The message that will be displayed on failure</param>
  364. </member>
  365. <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate)">
  366. <summary>
  367. Verifies that a delegate throws a particular exception when called.
  368. </summary>
  369. <typeparam name="T">Type of the expected exception</typeparam>
  370. <param name="code">A TestDelegate</param>
  371. </member>
  372. <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String,System.Object[])">
  373. <summary>
  374. Verifies that a delegate throws an exception when called
  375. and returns it.
  376. </summary>
  377. <param name="code">A TestDelegate</param>
  378. <param name="message">The message that will be displayed on failure</param>
  379. <param name="args">Arguments to be used in formatting the message</param>
  380. </member>
  381. <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String)">
  382. <summary>
  383. Verifies that a delegate throws an exception when called
  384. and returns it.
  385. </summary>
  386. <param name="code">A TestDelegate</param>
  387. <param name="message">The message that will be displayed on failure</param>
  388. </member>
  389. <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate)">
  390. <summary>
  391. Verifies that a delegate throws an exception when called
  392. and returns it.
  393. </summary>
  394. <param name="code">A TestDelegate</param>
  395. </member>
  396. <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])">
  397. <summary>
  398. Verifies that a delegate throws an exception of a certain Type
  399. or one derived from it when called and returns it.
  400. </summary>
  401. <param name="expectedExceptionType">The expected Exception Type</param>
  402. <param name="code">A TestDelegate</param>
  403. <param name="message">The message that will be displayed on failure</param>
  404. <param name="args">Arguments to be used in formatting the message</param>
  405. </member>
  406. <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String)">
  407. <summary>
  408. Verifies that a delegate throws an exception of a certain Type
  409. or one derived from it when called and returns it.
  410. </summary>
  411. <param name="expectedExceptionType">The expected Exception Type</param>
  412. <param name="code">A TestDelegate</param>
  413. <param name="message">The message that will be displayed on failure</param>
  414. </member>
  415. <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate)">
  416. <summary>
  417. Verifies that a delegate throws an exception of a certain Type
  418. or one derived from it when called and returns it.
  419. </summary>
  420. <param name="expectedExceptionType">The expected Exception Type</param>
  421. <param name="code">A TestDelegate</param>
  422. </member>
  423. <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String,System.Object[])">
  424. <summary>
  425. Verifies that a delegate throws an exception of a certain Type
  426. or one derived from it when called and returns it.
  427. </summary>
  428. <typeparam name="T">The expected Exception Type</typeparam>
  429. <param name="code">A TestDelegate</param>
  430. <param name="message">The message that will be displayed on failure</param>
  431. <param name="args">Arguments to be used in formatting the message</param>
  432. </member>
  433. <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String)">
  434. <summary>
  435. Verifies that a delegate throws an exception of a certain Type
  436. or one derived from it when called and returns it.
  437. </summary>
  438. <typeparam name="T">The expected Exception Type</typeparam>
  439. <param name="code">A TestDelegate</param>
  440. <param name="message">The message that will be displayed on failure</param>
  441. </member>
  442. <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate)">
  443. <summary>
  444. Verifies that a delegate throws an exception of a certain Type
  445. or one derived from it when called and returns it.
  446. </summary>
  447. <typeparam name="T">The expected Exception Type</typeparam>
  448. <param name="code">A TestDelegate</param>
  449. </member>
  450. <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String,System.Object[])">
  451. <summary>
  452. Verifies that a delegate does not throw an exception
  453. </summary>
  454. <param name="code">A TestDelegate</param>
  455. <param name="message">The message that will be displayed on failure</param>
  456. <param name="args">Arguments to be used in formatting the message</param>
  457. </member>
  458. <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String)">
  459. <summary>
  460. Verifies that a delegate does not throw an exception.
  461. </summary>
  462. <param name="code">A TestDelegate</param>
  463. <param name="message">The message that will be displayed on failure</param>
  464. </member>
  465. <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate)">
  466. <summary>
  467. Verifies that a delegate does not throw an exception.
  468. </summary>
  469. <param name="code">A TestDelegate</param>
  470. </member>
  471. <member name="M:NUnit.Framework.Assert.True(System.Boolean,System.String,System.Object[])">
  472. <summary>
  473. Asserts that a condition is true. If the condition is false the method throws
  474. an <see cref="T:NUnit.Framework.AssertionException"/>.
  475. </summary>
  476. <param name="condition">The evaluated condition</param>
  477. <param name="message">The message to display in case of failure</param>
  478. <param name="args">Array of objects to be used in formatting the message</param>
  479. </member>
  480. <member name="M:NUnit.Framework.Assert.True(System.Boolean,System.String)">
  481. <summary>
  482. Asserts that a condition is true. If the condition is false the method throws
  483. an <see cref="T:NUnit.Framework.AssertionException"/>.
  484. </summary>
  485. <param name="condition">The evaluated condition</param>
  486. <param name="message">The message to display in case of failure</param>
  487. </member>
  488. <member name="M:NUnit.Framework.Assert.True(System.Boolean)">
  489. <summary>
  490. Asserts that a condition is true. If the condition is false the method throws
  491. an <see cref="T:NUnit.Framework.AssertionException"/>.
  492. </summary>
  493. <param name="condition">The evaluated condition</param>
  494. </member>
  495. <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
  496. <summary>
  497. Asserts that a condition is true. If the condition is false the method throws
  498. an <see cref="T:NUnit.Framework.AssertionException"/>.
  499. </summary>
  500. <param name="condition">The evaluated condition</param>
  501. <param name="message">The message to display in case of failure</param>
  502. <param name="args">Array of objects to be used in formatting the message</param>
  503. </member>
  504. <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
  505. <summary>
  506. Asserts that a condition is true. If the condition is false the method throws
  507. an <see cref="T:NUnit.Framework.AssertionException"/>.
  508. </summary>
  509. <param name="condition">The evaluated condition</param>
  510. <param name="message">The message to display in case of failure</param>
  511. </member>
  512. <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean)">
  513. <summary>
  514. Asserts that a condition is true. If the condition is false the method throws
  515. an <see cref="T:NUnit.Framework.AssertionException"/>.
  516. </summary>
  517. <param name="condition">The evaluated condition</param>
  518. </member>
  519. <member name="M:NUnit.Framework.Assert.False(System.Boolean,System.String,System.Object[])">
  520. <summary>
  521. Asserts that a condition is false. If the condition is true the method throws
  522. an <see cref="T:NUnit.Framework.AssertionException"/>.
  523. </summary>
  524. <param name="condition">The evaluated condition</param>
  525. <param name="message">The message to display in case of failure</param>
  526. <param name="args">Array of objects to be used in formatting the message</param>
  527. </member>
  528. <member name="M:NUnit.Framework.Assert.False(System.Boolean,System.String)">
  529. <summary>
  530. Asserts that a condition is false. If the condition is true the method throws
  531. an <see cref="T:NUnit.Framework.AssertionException"/>.
  532. </summary>
  533. <param name="condition">The evaluated condition</param>
  534. <param name="message">The message to display in case of failure</param>
  535. </member>
  536. <member name="M:NUnit.Framework.Assert.False(System.Boolean)">
  537. <summary>
  538. Asserts that a condition is false. If the condition is true the method throws
  539. an <see cref="T:NUnit.Framework.AssertionException"/>.
  540. </summary>
  541. <param name="condition">The evaluated condition</param>
  542. </member>
  543. <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
  544. <summary>
  545. Asserts that a condition is false. If the condition is true the method throws
  546. an <see cref="T:NUnit.Framework.AssertionException"/>.
  547. </summary>
  548. <param name="condition">The evaluated condition</param>
  549. <param name="message">The message to display in case of failure</param>
  550. <param name="args">Array of objects to be used in formatting the message</param>
  551. </member>
  552. <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
  553. <summary>
  554. Asserts that a condition is false. If the condition is true the method throws
  555. an <see cref="T:NUnit.Framework.AssertionException"/>.
  556. </summary>
  557. <param name="condition">The evaluated condition</param>
  558. <param name="message">The message to display in case of failure</param>
  559. </member>
  560. <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean)">
  561. <summary>
  562. Asserts that a condition is false. If the condition is true the method throws
  563. an <see cref="T:NUnit.Framework.AssertionException"/>.
  564. </summary>
  565. <param name="condition">The evaluated condition</param>
  566. </member>
  567. <member name="M:NUnit.Framework.Assert.NotNull(System.Object,System.String,System.Object[])">
  568. <summary>
  569. Verifies that the object that is passed in is not equal to <code>null</code>
  570. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  571. is thrown.
  572. </summary>
  573. <param name="anObject">The object that is to be tested</param>
  574. <param name="message">The message to display in case of failure</param>
  575. <param name="args">Array of objects to be used in formatting the message</param>
  576. </member>
  577. <member name="M:NUnit.Framework.Assert.NotNull(System.Object,System.String)">
  578. <summary>
  579. Verifies that the object that is passed in is not equal to <code>null</code>
  580. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  581. is thrown.
  582. </summary>
  583. <param name="anObject">The object that is to be tested</param>
  584. <param name="message">The message to display in case of failure</param>
  585. </member>
  586. <member name="M:NUnit.Framework.Assert.NotNull(System.Object)">
  587. <summary>
  588. Verifies that the object that is passed in is not equal to <code>null</code>
  589. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  590. is thrown.
  591. </summary>
  592. <param name="anObject">The object that is to be tested</param>
  593. </member>
  594. <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
  595. <summary>
  596. Verifies that the object that is passed in is not equal to <code>null</code>
  597. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  598. is thrown.
  599. </summary>
  600. <param name="anObject">The object that is to be tested</param>
  601. <param name="message">The message to display in case of failure</param>
  602. <param name="args">Array of objects to be used in formatting the message</param>
  603. </member>
  604. <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
  605. <summary>
  606. Verifies that the object that is passed in is not equal to <code>null</code>
  607. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  608. is thrown.
  609. </summary>
  610. <param name="anObject">The object that is to be tested</param>
  611. <param name="message">The message to display in case of failure</param>
  612. </member>
  613. <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object)">
  614. <summary>
  615. Verifies that the object that is passed in is not equal to <code>null</code>
  616. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  617. is thrown.
  618. </summary>
  619. <param name="anObject">The object that is to be tested</param>
  620. </member>
  621. <member name="M:NUnit.Framework.Assert.Null(System.Object,System.String,System.Object[])">
  622. <summary>
  623. Verifies that the object that is passed in is equal to <code>null</code>
  624. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  625. is thrown.
  626. </summary>
  627. <param name="anObject">The object that is to be tested</param>
  628. <param name="message">The message to display in case of failure</param>
  629. <param name="args">Array of objects to be used in formatting the message</param>
  630. </member>
  631. <member name="M:NUnit.Framework.Assert.Null(System.Object,System.String)">
  632. <summary>
  633. Verifies that the object that is passed in is equal to <code>null</code>
  634. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  635. is thrown.
  636. </summary>
  637. <param name="anObject">The object that is to be tested</param>
  638. <param name="message">The message to display in case of failure</param>
  639. </member>
  640. <member name="M:NUnit.Framework.Assert.Null(System.Object)">
  641. <summary>
  642. Verifies that the object that is passed in is equal to <code>null</code>
  643. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  644. is thrown.
  645. </summary>
  646. <param name="anObject">The object that is to be tested</param>
  647. </member>
  648. <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
  649. <summary>
  650. Verifies that the object that is passed in is equal to <code>null</code>
  651. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  652. is thrown.
  653. </summary>
  654. <param name="anObject">The object that is to be tested</param>
  655. <param name="message">The message to display in case of failure</param>
  656. <param name="args">Array of objects to be used in formatting the message</param>
  657. </member>
  658. <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String)">
  659. <summary>
  660. Verifies that the object that is passed in is equal to <code>null</code>
  661. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  662. is thrown.
  663. </summary>
  664. <param name="anObject">The object that is to be tested</param>
  665. <param name="message">The message to display in case of failure</param>
  666. </member>
  667. <member name="M:NUnit.Framework.Assert.IsNull(System.Object)">
  668. <summary>
  669. Verifies that the object that is passed in is equal to <code>null</code>
  670. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  671. is thrown.
  672. </summary>
  673. <param name="anObject">The object that is to be tested</param>
  674. </member>
  675. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
  676. <summary>
  677. Verifies that two ints are equal. If they are not, then an
  678. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  679. </summary>
  680. <param name="expected">The expected value</param>
  681. <param name="actual">The actual value</param>
  682. <param name="message">The message to display in case of failure</param>
  683. <param name="args">Array of objects to be used in formatting the message</param>
  684. </member>
  685. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
  686. <summary>
  687. Verifies that two ints are equal. If they are not, then an
  688. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  689. </summary>
  690. <param name="expected">The expected value</param>
  691. <param name="actual">The actual value</param>
  692. <param name="message">The message to display in case of failure</param>
  693. </member>
  694. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
  695. <summary>
  696. Verifies that two ints are equal. If they are not, then an
  697. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  698. </summary>
  699. <param name="expected">The expected value</param>
  700. <param name="actual">The actual value</param>
  701. </member>
  702. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String,System.Object[])">
  703. <summary>
  704. Verifies that two longs are equal. If they are not, then an
  705. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  706. </summary>
  707. <param name="expected">The expected value</param>
  708. <param name="actual">The actual value</param>
  709. <param name="message">The message to display in case of failure</param>
  710. <param name="args">Array of objects to be used in formatting the message</param>
  711. </member>
  712. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String)">
  713. <summary>
  714. Verifies that two longs are equal. If they are not, then an
  715. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  716. </summary>
  717. <param name="expected">The expected value</param>
  718. <param name="actual">The actual value</param>
  719. <param name="message">The message to display in case of failure</param>
  720. </member>
  721. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64)">
  722. <summary>
  723. Verifies that two longs are equal. If they are not, then an
  724. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  725. </summary>
  726. <param name="expected">The expected value</param>
  727. <param name="actual">The actual value</param>
  728. </member>
  729. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  730. <summary>
  731. Verifies that two unsigned ints are equal. If they are not, then an
  732. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  733. </summary>
  734. <param name="expected">The expected value</param>
  735. <param name="actual">The actual value</param>
  736. <param name="message">The message to display in case of failure</param>
  737. <param name="args">Array of objects to be used in formatting the message</param>
  738. </member>
  739. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String)">
  740. <summary>
  741. Verifies that two unsigned ints are equal. If they are not, then an
  742. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  743. </summary>
  744. <param name="expected">The expected value</param>
  745. <param name="actual">The actual value</param>
  746. <param name="message">The message to display in case of failure</param>
  747. </member>
  748. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32)">
  749. <summary>
  750. Verifies that two unsigned ints are equal. If they are not, then an
  751. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  752. </summary>
  753. <param name="expected">The expected value</param>
  754. <param name="actual">The actual value</param>
  755. </member>
  756. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  757. <summary>
  758. Verifies that two unsigned longs are equal. If they are not, then an
  759. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  760. </summary>
  761. <param name="expected">The expected value</param>
  762. <param name="actual">The actual value</param>
  763. <param name="message">The message to display in case of failure</param>
  764. <param name="args">Array of objects to be used in formatting the message</param>
  765. </member>
  766. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String)">
  767. <summary>
  768. Verifies that two unsigned longs are equal. If they are not, then an
  769. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  770. </summary>
  771. <param name="expected">The expected value</param>
  772. <param name="actual">The actual value</param>
  773. <param name="message">The message to display in case of failure</param>
  774. </member>
  775. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64)">
  776. <summary>
  777. Verifies that two unsigned longs are equal. If they are not, then an
  778. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  779. </summary>
  780. <param name="expected">The expected value</param>
  781. <param name="actual">The actual value</param>
  782. </member>
  783. <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  784. <summary>
  785. Verifies that two decimals are equal. If they are not, then an
  786. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  787. </summary>
  788. <param name="expected">The expected value</param>
  789. <param name="actual">The actual value</param>
  790. <param name="message">The message to display in case of failure</param>
  791. <param name="args">Array of objects to be used in formatting the message</param>
  792. </member>
  793. <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
  794. <summary>
  795. Verifies that two decimals are equal. If they are not, then an
  796. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  797. </summary>
  798. <param name="expected">The expected value</param>
  799. <param name="actual">The actual value</param>
  800. <param name="message">The message to display in case of failure</param>
  801. </member>
  802. <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
  803. <summary>
  804. Verifies that two decimals are equal. If they are not, then an
  805. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  806. </summary>
  807. <param name="expected">The expected value</param>
  808. <param name="actual">The actual value</param>
  809. </member>
  810. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
  811. <summary>
  812. Verifies that two doubles are equal considering a delta. If the
  813. expected value is infinity then the delta value is ignored. If
  814. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  815. thrown.
  816. </summary>
  817. <param name="expected">The expected value</param>
  818. <param name="actual">The actual value</param>
  819. <param name="delta">The maximum acceptable difference between the
  820. the expected and the actual</param>
  821. <param name="message">The message to display in case of failure</param>
  822. <param name="args">Array of objects to be used in formatting the message</param>
  823. </member>
  824. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
  825. <summary>
  826. Verifies that two doubles are equal considering a delta. If the
  827. expected value is infinity then the delta value is ignored. If
  828. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  829. thrown.
  830. </summary>
  831. <param name="expected">The expected value</param>
  832. <param name="actual">The actual value</param>
  833. <param name="delta">The maximum acceptable difference between the
  834. the expected and the actual</param>
  835. <param name="message">The message to display in case of failure</param>
  836. </member>
  837. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
  838. <summary>
  839. Verifies that two doubles are equal considering a delta. If the
  840. expected value is infinity then the delta value is ignored. If
  841. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  842. thrown.
  843. </summary>
  844. <param name="expected">The expected value</param>
  845. <param name="actual">The actual value</param>
  846. <param name="delta">The maximum acceptable difference between the
  847. the expected and the actual</param>
  848. </member>
  849. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String,System.Object[])">
  850. <summary>
  851. Verifies that two doubles are equal considering a delta. If the
  852. expected value is infinity then the delta value is ignored. If
  853. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  854. thrown.
  855. </summary>
  856. <param name="expected">The expected value</param>
  857. <param name="actual">The actual value</param>
  858. <param name="delta">The maximum acceptable difference between the
  859. the expected and the actual</param>
  860. <param name="message">The message to display in case of failure</param>
  861. <param name="args">Array of objects to be used in formatting the message</param>
  862. </member>
  863. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String)">
  864. <summary>
  865. Verifies that two doubles are equal considering a delta. If the
  866. expected value is infinity then the delta value is ignored. If
  867. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  868. thrown.
  869. </summary>
  870. <param name="expected">The expected value</param>
  871. <param name="actual">The actual value</param>
  872. <param name="delta">The maximum acceptable difference between the
  873. the expected and the actual</param>
  874. <param name="message">The message to display in case of failure</param>
  875. </member>
  876. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double)">
  877. <summary>
  878. Verifies that two doubles are equal considering a delta. If the
  879. expected value is infinity then the delta value is ignored. If
  880. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  881. thrown.
  882. </summary>
  883. <param name="expected">The expected value</param>
  884. <param name="actual">The actual value</param>
  885. <param name="delta">The maximum acceptable difference between the
  886. the expected and the actual</param>
  887. </member>
  888. <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
  889. <summary>
  890. Verifies that two objects are equal. Two objects are considered
  891. equal if both are null, or if both have the same value. NUnit
  892. has special semantics for some object types.
  893. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  894. </summary>
  895. <param name="expected">The value that is expected</param>
  896. <param name="actual">The actual value</param>
  897. <param name="message">The message to display in case of failure</param>
  898. <param name="args">Array of objects to be used in formatting the message</param>
  899. </member>
  900. <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
  901. <summary>
  902. Verifies that two objects are equal. Two objects are considered
  903. equal if both are null, or if both have the same value. NUnit
  904. has special semantics for some object types.
  905. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  906. </summary>
  907. <param name="expected">The value that is expected</param>
  908. <param name="actual">The actual value</param>
  909. <param name="message">The message to display in case of failure</param>
  910. </member>
  911. <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
  912. <summary>
  913. Verifies that two objects are equal. Two objects are considered
  914. equal if both are null, or if both have the same value. NUnit
  915. has special semantics for some object types.
  916. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  917. </summary>
  918. <param name="expected">The value that is expected</param>
  919. <param name="actual">The actual value</param>
  920. </member>
  921. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
  922. <summary>
  923. Verifies that two ints are not equal. If they are equal, then an
  924. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  925. </summary>
  926. <param name="expected">The expected value</param>
  927. <param name="actual">The actual value</param>
  928. <param name="message">The message to display in case of failure</param>
  929. <param name="args">Array of objects to be used in formatting the message</param>
  930. </member>
  931. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
  932. <summary>
  933. Verifies that two ints are not equal. If they are equal, then an
  934. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  935. </summary>
  936. <param name="expected">The expected value</param>
  937. <param name="actual">The actual value</param>
  938. <param name="message">The message to display in case of failure</param>
  939. </member>
  940. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
  941. <summary>
  942. Verifies that two ints are not equal. If they are equal, then an
  943. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  944. </summary>
  945. <param name="expected">The expected value</param>
  946. <param name="actual">The actual value</param>
  947. </member>
  948. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String,System.Object[])">
  949. <summary>
  950. Verifies that two longs are not equal. If they are equal, then an
  951. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  952. </summary>
  953. <param name="expected">The expected value</param>
  954. <param name="actual">The actual value</param>
  955. <param name="message">The message to display in case of failure</param>
  956. <param name="args">Array of objects to be used in formatting the message</param>
  957. </member>
  958. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String)">
  959. <summary>
  960. Verifies that two longs are not equal. If they are equal, then an
  961. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  962. </summary>
  963. <param name="expected">The expected value</param>
  964. <param name="actual">The actual value</param>
  965. <param name="message">The message to display in case of failure</param>
  966. </member>
  967. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64)">
  968. <summary>
  969. Verifies that two longs are not equal. If they are equal, then an
  970. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  971. </summary>
  972. <param name="expected">The expected value</param>
  973. <param name="actual">The actual value</param>
  974. </member>
  975. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  976. <summary>
  977. Verifies that two unsigned ints are not equal. If they are equal, then an
  978. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  979. </summary>
  980. <param name="expected">The expected value</param>
  981. <param name="actual">The actual value</param>
  982. <param name="message">The message to display in case of failure</param>
  983. <param name="args">Array of objects to be used in formatting the message</param>
  984. </member>
  985. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
  986. <summary>
  987. Verifies that two unsigned ints are not equal. If they are equal, then an
  988. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  989. </summary>
  990. <param name="expected">The expected value</param>
  991. <param name="actual">The actual value</param>
  992. <param name="message">The message to display in case of failure</param>
  993. </member>
  994. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
  995. <summary>
  996. Verifies that two unsigned ints are not equal. If they are equal, then an
  997. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  998. </summary>
  999. <param name="expected">The expected value</param>
  1000. <param name="actual">The actual value</param>
  1001. </member>
  1002. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  1003. <summary>
  1004. Verifies that two unsigned longs are not equal. If they are equal, then an
  1005. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1006. </summary>
  1007. <param name="expected">The expected value</param>
  1008. <param name="actual">The actual value</param>
  1009. <param name="message">The message to display in case of failure</param>
  1010. <param name="args">Array of objects to be used in formatting the message</param>
  1011. </member>
  1012. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String)">
  1013. <summary>
  1014. Verifies that two unsigned longs are not equal. If they are equal, then an
  1015. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1016. </summary>
  1017. <param name="expected">The expected value</param>
  1018. <param name="actual">The actual value</param>
  1019. <param name="message">The message to display in case of failure</param>
  1020. </member>
  1021. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64)">
  1022. <summary>
  1023. Verifies that two unsigned longs are not equal. If they are equal, then an
  1024. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1025. </summary>
  1026. <param name="expected">The expected value</param>
  1027. <param name="actual">The actual value</param>
  1028. </member>
  1029. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  1030. <summary>
  1031. Verifies that two decimals are not equal. If they are equal, then an
  1032. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1033. </summary>
  1034. <param name="expected">The expected value</param>
  1035. <param name="actual">The actual value</param>
  1036. <param name="message">The message to display in case of failure</param>
  1037. <param name="args">Array of objects to be used in formatting the message</param>
  1038. </member>
  1039. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
  1040. <summary>
  1041. Verifies that two decimals are not equal. If they are equal, then an
  1042. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1043. </summary>
  1044. <param name="expected">The expected value</param>
  1045. <param name="actual">The actual value</param>
  1046. <param name="message">The message to display in case of failure</param>
  1047. </member>
  1048. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
  1049. <summary>
  1050. Verifies that two decimals are not equal. If they are equal, then an
  1051. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1052. </summary>
  1053. <param name="expected">The expected value</param>
  1054. <param name="actual">The actual value</param>
  1055. </member>
  1056. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
  1057. <summary>
  1058. Verifies that two floats are not equal. If they are equal, then an
  1059. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1060. </summary>
  1061. <param name="expected">The expected value</param>
  1062. <param name="actual">The actual value</param>
  1063. <param name="message">The message to display in case of failure</param>
  1064. <param name="args">Array of objects to be used in formatting the message</param>
  1065. </member>
  1066. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
  1067. <summary>
  1068. Verifies that two floats are not equal. If they are equal, then an
  1069. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1070. </summary>
  1071. <param name="expected">The expected value</param>
  1072. <param name="actual">The actual value</param>
  1073. <param name="message">The message to display in case of failure</param>
  1074. </member>
  1075. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
  1076. <summary>
  1077. Verifies that two floats are not equal. If they are equal, then an
  1078. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1079. </summary>
  1080. <param name="expected">The expected value</param>
  1081. <param name="actual">The actual value</param>
  1082. </member>
  1083. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
  1084. <summary>
  1085. Verifies that two doubles are not equal. If they are equal, then an
  1086. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1087. </summary>
  1088. <param name="expected">The expected value</param>
  1089. <param name="actual">The actual value</param>
  1090. <param name="message">The message to display in case of failure</param>
  1091. <param name="args">Array of objects to be used in formatting the message</param>
  1092. </member>
  1093. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
  1094. <summary>
  1095. Verifies that two doubles are not equal. If they are equal, then an
  1096. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1097. </summary>
  1098. <param name="expected">The expected value</param>
  1099. <param name="actual">The actual value</param>
  1100. <param name="message">The message to display in case of failure</param>
  1101. </member>
  1102. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
  1103. <summary>
  1104. Verifies that two doubles are not equal. If they are equal, then an
  1105. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1106. </summary>
  1107. <param name="expected">The expected value</param>
  1108. <param name="actual">The actual value</param>
  1109. </member>
  1110. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
  1111. <summary>
  1112. Verifies that two objects are not equal. Two objects are considered
  1113. equal if both are null, or if both have the same value. NUnit
  1114. has special semantics for some object types.
  1115. If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1116. </summary>
  1117. <param name="expected">The value that is expected</param>
  1118. <param name="actual">The actual value</param>
  1119. <param name="message">The message to display in case of failure</param>
  1120. <param name="args">Array of objects to be used in formatting the message</param>
  1121. </member>
  1122. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
  1123. <summary>
  1124. Verifies that two objects are not equal. Two objects are considered
  1125. equal if both are null, or if both have the same value. NUnit
  1126. has special semantics for some object types.
  1127. If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1128. </summary>
  1129. <param name="expected">The value that is expected</param>
  1130. <param name="actual">The actual value</param>
  1131. <param name="message">The message to display in case of failure</param>
  1132. </member>
  1133. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
  1134. <summary>
  1135. Verifies that two objects are not equal. Two objects are considered
  1136. equal if both are null, or if both have the same value. NUnit
  1137. has special semantics for some object types.
  1138. If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1139. </summary>
  1140. <param name="expected">The value that is expected</param>
  1141. <param name="actual">The actual value</param>
  1142. </member>
  1143. <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
  1144. <summary>
  1145. Asserts that two objects refer to the same object. If they
  1146. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1147. </summary>
  1148. <param name="expected">The expected object</param>
  1149. <param name="actual">The actual object</param>
  1150. <param name="message">The message to display in case of failure</param>
  1151. <param name="args">Array of objects to be used in formatting the message</param>
  1152. </member>
  1153. <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
  1154. <summary>
  1155. Asserts that two objects refer to the same object. If they
  1156. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1157. </summary>
  1158. <param name="expected">The expected object</param>
  1159. <param name="actual">The actual object</param>
  1160. <param name="message">The message to display in case of failure</param>
  1161. </member>
  1162. <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object)">
  1163. <summary>
  1164. Asserts that two objects refer to the same object. If they
  1165. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1166. </summary>
  1167. <param name="expected">The expected object</param>
  1168. <param name="actual">The actual object</param>
  1169. </member>
  1170. <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String,System.Object[])">
  1171. <summary>
  1172. Asserts that two objects do not refer to the same object. If they
  1173. are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1174. </summary>
  1175. <param name="expected">The expected object</param>
  1176. <param name="actual">The actual object</param>
  1177. <param name="message">The message to display in case of failure</param>
  1178. <param name="args">Array of objects to be used in formatting the message</param>
  1179. </member>
  1180. <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String)">
  1181. <summary>
  1182. Asserts that two objects do not refer to the same object. If they
  1183. are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1184. </summary>
  1185. <param name="expected">The expected object</param>
  1186. <param name="actual">The actual object</param>
  1187. <param name="message">The message to display in case of failure</param>
  1188. </member>
  1189. <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object)">
  1190. <summary>
  1191. Asserts that two objects do not refer to the same object. If they
  1192. are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1193. </summary>
  1194. <param name="expected">The expected object</param>
  1195. <param name="actual">The actual object</param>
  1196. </member>
  1197. <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
  1198. <summary>
  1199. Verifies that the double that is passed in is an <code>NaN</code> value.
  1200. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1201. is thrown.
  1202. </summary>
  1203. <param name="aDouble">The value that is to be tested</param>
  1204. <param name="message">The message to display in case of failure</param>
  1205. <param name="args">Array of objects to be used in formatting the message</param>
  1206. </member>
  1207. <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String)">
  1208. <summary>
  1209. Verifies that the double that is passed in is an <code>NaN</code> value.
  1210. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1211. is thrown.
  1212. </summary>
  1213. <param name="aDouble">The value that is to be tested</param>
  1214. <param name="message">The message to display in case of failure</param>
  1215. </member>
  1216. <member name="M:NUnit.Framework.Assert.IsNaN(System.Double)">
  1217. <summary>
  1218. Verifies that the double that is passed in is an <code>NaN</code> value.
  1219. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1220. is thrown.
  1221. </summary>
  1222. <param name="aDouble">The value that is to be tested</param>
  1223. </member>
  1224. <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String,System.Object[])">
  1225. <summary>
  1226. Verifies that the double that is passed in is an <code>NaN</code> value.
  1227. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1228. is thrown.
  1229. </summary>
  1230. <param name="aDouble">The value that is to be tested</param>
  1231. <param name="message">The message to display in case of failure</param>
  1232. <param name="args">Array of objects to be used in formatting the message</param>
  1233. </member>
  1234. <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String)">
  1235. <summary>
  1236. Verifies that the double that is passed in is an <code>NaN</code> value.
  1237. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1238. is thrown.
  1239. </summary>
  1240. <param name="aDouble">The value that is to be tested</param>
  1241. <param name="message">The message to display in case of failure</param>
  1242. </member>
  1243. <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double})">
  1244. <summary>
  1245. Verifies that the double that is passed in is an <code>NaN</code> value.
  1246. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1247. is thrown.
  1248. </summary>
  1249. <param name="aDouble">The value that is to be tested</param>
  1250. </member>
  1251. <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
  1252. <summary>
  1253. Assert that a string is empty - that is equal to string.Empty
  1254. </summary>
  1255. <param name="aString">The string to be tested</param>
  1256. <param name="message">The message to display in case of failure</param>
  1257. <param name="args">Array of objects to be used in formatting the message</param>
  1258. </member>
  1259. <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String)">
  1260. <summary>
  1261. Assert that a string is empty - that is equal to string.Empty
  1262. </summary>
  1263. <param name="aString">The string to be tested</param>
  1264. <param name="message">The message to display in case of failure</param>
  1265. </member>
  1266. <member name="M:NUnit.Framework.Assert.IsEmpty(System.String)">
  1267. <summary>
  1268. Assert that a string is empty - that is equal to string.Empty
  1269. </summary>
  1270. <param name="aString">The string to be tested</param>
  1271. </member>
  1272. <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
  1273. <summary>
  1274. Assert that an array, list or other collection is empty
  1275. </summary>
  1276. <param name="collection">An array, list or other collection implementing ICollection</param>
  1277. <param name="message">The message to display in case of failure</param>
  1278. <param name="args">Array of objects to be used in formatting the message</param>
  1279. </member>
  1280. <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.IEnumerable,System.String)">
  1281. <summary>
  1282. Assert that an array, list or other collection is empty
  1283. </summary>
  1284. <param name="collection">An array, list or other collection implementing ICollection</param>
  1285. <param name="message">The message to display in case of failure</param>
  1286. </member>
  1287. <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.IEnumerable)">
  1288. <summary>
  1289. Assert that an array, list or other collection is empty
  1290. </summary>
  1291. <param name="collection">An array, list or other collection implementing ICollection</param>
  1292. </member>
  1293. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
  1294. <summary>
  1295. Assert that a string is not empty - that is not equal to string.Empty
  1296. </summary>
  1297. <param name="aString">The string to be tested</param>
  1298. <param name="message">The message to display in case of failure</param>
  1299. <param name="args">Array of objects to be used in formatting the message</param>
  1300. </member>
  1301. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
  1302. <summary>
  1303. Assert that a string is not empty - that is not equal to string.Empty
  1304. </summary>
  1305. <param name="aString">The string to be tested</param>
  1306. <param name="message">The message to display in case of failure</param>
  1307. </member>
  1308. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String)">
  1309. <summary>
  1310. Assert that a string is not empty - that is not equal to string.Empty
  1311. </summary>
  1312. <param name="aString">The string to be tested</param>
  1313. </member>
  1314. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
  1315. <summary>
  1316. Assert that an array, list or other collection is not empty
  1317. </summary>
  1318. <param name="collection">An array, list or other collection implementing ICollection</param>
  1319. <param name="message">The message to display in case of failure</param>
  1320. <param name="args">Array of objects to be used in formatting the message</param>
  1321. </member>
  1322. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.IEnumerable,System.String)">
  1323. <summary>
  1324. Assert that an array, list or other collection is not empty
  1325. </summary>
  1326. <param name="collection">An array, list or other collection implementing ICollection</param>
  1327. <param name="message">The message to display in case of failure</param>
  1328. </member>
  1329. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.IEnumerable)">
  1330. <summary>
  1331. Assert that an array, list or other collection is not empty
  1332. </summary>
  1333. <param name="collection">An array, list or other collection implementing ICollection</param>
  1334. </member>
  1335. <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String,System.Object[])">
  1336. <summary>
  1337. Assert that a string is either null or equal to string.Empty
  1338. </summary>
  1339. <param name="aString">The string to be tested</param>
  1340. <param name="message">The message to display in case of failure</param>
  1341. <param name="args">Array of objects to be used in formatting the message</param>
  1342. </member>
  1343. <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String)">
  1344. <summary>
  1345. Assert that a string is either null or equal to string.Empty
  1346. </summary>
  1347. <param name="aString">The string to be tested</param>
  1348. <param name="message">The message to display in case of failure</param>
  1349. </member>
  1350. <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String)">
  1351. <summary>
  1352. Assert that a string is either null or equal to string.Empty
  1353. </summary>
  1354. <param name="aString">The string to be tested</param>
  1355. </member>
  1356. <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String,System.Object[])">
  1357. <summary>
  1358. Assert that a string is not null or empty
  1359. </summary>
  1360. <param name="aString">The string to be tested</param>
  1361. <param name="message">The message to display in case of failure</param>
  1362. <param name="args">Array of objects to be used in formatting the message</param>
  1363. </member>
  1364. <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String)">
  1365. <summary>
  1366. Assert that a string is not null or empty
  1367. </summary>
  1368. <param name="aString">The string to be tested</param>
  1369. <param name="message">The message to display in case of failure</param>
  1370. </member>
  1371. <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String)">
  1372. <summary>
  1373. Assert that a string is not null or empty
  1374. </summary>
  1375. <param name="aString">The string to be tested</param>
  1376. </member>
  1377. <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
  1378. <summary>
  1379. Asserts that an object may be assigned a value of a given Type.
  1380. </summary>
  1381. <param name="expected">The expected Type.</param>
  1382. <param name="actual">The object under examination</param>
  1383. <param name="message">The message to display in case of failure</param>
  1384. <param name="args">Array of objects to be used in formatting the message</param>
  1385. </member>
  1386. <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
  1387. <summary>
  1388. Asserts that an object may be assigned a value of a given Type.
  1389. </summary>
  1390. <param name="expected">The expected Type.</param>
  1391. <param name="actual">The object under examination</param>
  1392. <param name="message">The message to display in case of failure</param>
  1393. </member>
  1394. <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
  1395. <summary>
  1396. Asserts that an object may be assigned a value of a given Type.
  1397. </summary>
  1398. <param name="expected">The expected Type.</param>
  1399. <param name="actual">The object under examination</param>
  1400. </member>
  1401. <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String,System.Object[])">
  1402. <summary>
  1403. Asserts that an object may be assigned a value of a given Type.
  1404. </summary>
  1405. <typeparam name="T">The expected Type.</typeparam>
  1406. <param name="actual">The object under examination</param>
  1407. <param name="message">The message to display in case of failure</param>
  1408. <param name="args">Array of objects to be used in formatting the message</param>
  1409. </member>
  1410. <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String)">
  1411. <summary>
  1412. Asserts that an object may be assigned a value of a given Type.
  1413. </summary>
  1414. <typeparam name="T">The expected Type.</typeparam>
  1415. <param name="actual">The object under examination</param>
  1416. <param name="message">The message to display in case of failure</param>
  1417. </member>
  1418. <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object)">
  1419. <summary>
  1420. Asserts that an object may be assigned a value of a given Type.
  1421. </summary>
  1422. <typeparam name="T">The expected Type.</typeparam>
  1423. <param name="actual">The object under examination</param>
  1424. </member>
  1425. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
  1426. <summary>
  1427. Asserts that an object may not be assigned a value of a given Type.
  1428. </summary>
  1429. <param name="expected">The expected Type.</param>
  1430. <param name="actual">The object under examination</param>
  1431. <param name="message">The message to display in case of failure</param>
  1432. <param name="args">Array of objects to be used in formatting the message</param>
  1433. </member>
  1434. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
  1435. <summary>
  1436. Asserts that an object may not be assigned a value of a given Type.
  1437. </summary>
  1438. <param name="expected">The expected Type.</param>
  1439. <param name="actual">The object under examination</param>
  1440. <param name="message">The message to display in case of failure</param>
  1441. </member>
  1442. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
  1443. <summary>
  1444. Asserts that an object may not be assigned a value of a given Type.
  1445. </summary>
  1446. <param name="expected">The expected Type.</param>
  1447. <param name="actual">The object under examination</param>
  1448. </member>
  1449. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String,System.Object[])">
  1450. <summary>
  1451. Asserts that an object may not be assigned a value of a given Type.
  1452. </summary>
  1453. <typeparam name="T">The expected Type.</typeparam>
  1454. <param name="actual">The object under examination</param>
  1455. <param name="message">The message to display in case of failure</param>
  1456. <param name="args">Array of objects to be used in formatting the message</param>
  1457. </member>
  1458. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String)">
  1459. <summary>
  1460. Asserts that an object may not be assigned a value of a given Type.
  1461. </summary>
  1462. <typeparam name="T">The expected Type.</typeparam>
  1463. <param name="actual">The object under examination</param>
  1464. <param name="message">The message to display in case of failure</param>
  1465. </member>
  1466. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object)">
  1467. <summary>
  1468. Asserts that an object may not be assigned a value of a given Type.
  1469. </summary>
  1470. <typeparam name="T">The expected Type.</typeparam>
  1471. <param name="actual">The object under examination</param>
  1472. </member>
  1473. <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String,System.Object[])">
  1474. <summary>
  1475. Asserts that an object is an instance of a given type.
  1476. </summary>
  1477. <param name="expected">The expected Type</param>
  1478. <param name="actual">The object being examined</param>
  1479. <param name="message">The message to display in case of failure</param>
  1480. <param name="args">Array of objects to be used in formatting the message</param>
  1481. </member>
  1482. <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String)">
  1483. <summary>
  1484. Asserts that an object is an instance of a given type.
  1485. </summary>
  1486. <param name="expected">The expected Type</param>
  1487. <param name="actual">The object being examined</param>
  1488. <param name="message">The message to display in case of failure</param>
  1489. </member>
  1490. <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object)">
  1491. <summary>
  1492. Asserts that an object is an instance of a given type.
  1493. </summary>
  1494. <param name="expected">The expected Type</param>
  1495. <param name="actual">The object being examined</param>
  1496. </member>
  1497. <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
  1498. <summary>
  1499. Asserts that an object is an instance of a given type.
  1500. </summary>
  1501. <param name="expected">The expected Type</param>
  1502. <param name="actual">The object being examined</param>
  1503. <param name="message">The message to display in case of failure</param>
  1504. <param name="args">Array of objects to be used in formatting the message</param>
  1505. </member>
  1506. <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
  1507. <summary>
  1508. Asserts that an object is an instance of a given type.
  1509. </summary>
  1510. <param name="expected">The expected Type</param>
  1511. <param name="actual">The object being examined</param>
  1512. <param name="message">The message to display in case of failure</param>
  1513. </member>
  1514. <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
  1515. <summary>
  1516. Asserts that an object is an instance of a given type.
  1517. </summary>
  1518. <param name="expected">The expected Type</param>
  1519. <param name="actual">The object being examined</param>
  1520. </member>
  1521. <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String,System.Object[])">
  1522. <summary>
  1523. Asserts that an object is an instance of a given type.
  1524. </summary>
  1525. <typeparam name="T">The expected Type</typeparam>
  1526. <param name="actual">The object being examined</param>
  1527. <param name="message">The message to display in case of failure</param>
  1528. <param name="args">Array of objects to be used in formatting the message</param>
  1529. </member>
  1530. <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String)">
  1531. <summary>
  1532. Asserts that an object is an instance of a given type.
  1533. </summary>
  1534. <typeparam name="T">The expected Type</typeparam>
  1535. <param name="actual">The object being examined</param>
  1536. <param name="message">The message to display in case of failure</param>
  1537. </member>
  1538. <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object)">
  1539. <summary>
  1540. Asserts that an object is an instance of a given type.
  1541. </summary>
  1542. <typeparam name="T">The expected Type</typeparam>
  1543. <param name="actual">The object being examined</param>
  1544. </member>
  1545. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String,System.Object[])">
  1546. <summary>
  1547. Asserts that an object is not an instance of a given type.
  1548. </summary>
  1549. <param name="expected">The expected Type</param>
  1550. <param name="actual">The object being examined</param>
  1551. <param name="message">The message to display in case of failure</param>
  1552. <param name="args">Array of objects to be used in formatting the message</param>
  1553. </member>
  1554. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String)">
  1555. <summary>
  1556. Asserts that an object is not an instance of a given type.
  1557. </summary>
  1558. <param name="expected">The expected Type</param>
  1559. <param name="actual">The object being examined</param>
  1560. <param name="message">The message to display in case of failure</param>
  1561. </member>
  1562. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object)">
  1563. <summary>
  1564. Asserts that an object is not an instance of a given type.
  1565. </summary>
  1566. <param name="expected">The expected Type</param>
  1567. <param name="actual">The object being examined</param>
  1568. </member>
  1569. <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
  1570. <summary>
  1571. Asserts that an object is not an instance of a given type.
  1572. </summary>
  1573. <param name="expected">The expected Type</param>
  1574. <param name="actual">The object being examined</param>
  1575. <param name="message">The message to display in case of failure</param>
  1576. <param name="args">Array of objects to be used in formatting the message</param>
  1577. </member>
  1578. <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
  1579. <summary>
  1580. Asserts that an object is not an instance of a given type.
  1581. </summary>
  1582. <param name="expected">The expected Type</param>
  1583. <param name="actual">The object being examined</param>
  1584. <param name="message">The message to display in case of failure</param>
  1585. </member>
  1586. <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
  1587. <summary>
  1588. Asserts that an object is not an instance of a given type.
  1589. </summary>
  1590. <param name="expected">The expected Type</param>
  1591. <param name="actual">The object being examined</param>
  1592. </member>
  1593. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String,System.Object[])">
  1594. <summary>
  1595. Asserts that an object is not an instance of a given type.
  1596. </summary>
  1597. <typeparam name="T">The expected Type</typeparam>
  1598. <param name="actual">The object being examined</param>
  1599. <param name="message">The message to display in case of failure</param>
  1600. <param name="args">Array of objects to be used in formatting the message</param>
  1601. </member>
  1602. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String)">
  1603. <summary>
  1604. Asserts that an object is not an instance of a given type.
  1605. </summary>
  1606. <typeparam name="T">The expected Type</typeparam>
  1607. <param name="actual">The object being examined</param>
  1608. <param name="message">The message to display in case of failure</param>
  1609. </member>
  1610. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object)">
  1611. <summary>
  1612. Asserts that an object is not an instance of a given type.
  1613. </summary>
  1614. <typeparam name="T">The expected Type</typeparam>
  1615. <param name="actual">The object being examined</param>
  1616. </member>
  1617. <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
  1618. <summary>
  1619. Verifies that the first value is greater than the second
  1620. value. If it is not, then an
  1621. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1622. </summary>
  1623. <param name="arg1">The first value, expected to be greater</param>
  1624. <param name="arg2">The second value, expected to be less</param>
  1625. <param name="message">The message to display in case of failure</param>
  1626. <param name="args">Array of objects to be used in formatting the message</param>
  1627. </member>
  1628. <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
  1629. <summary>
  1630. Verifies that the first value is greater than the second
  1631. value. If it is not, then an
  1632. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1633. </summary>
  1634. <param name="arg1">The first value, expected to be greater</param>
  1635. <param name="arg2">The second value, expected to be less</param>
  1636. <param name="message">The message to display in case of failure</param>
  1637. </member>
  1638. <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
  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. </member>
  1647. <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
  1648. <summary>
  1649. Verifies that the first value is greater than the second
  1650. value. If it is not, then an
  1651. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1652. </summary>
  1653. <param name="arg1">The first value, expected to be greater</param>
  1654. <param name="arg2">The second value, expected to be less</param>
  1655. <param name="message">The message to display in case of failure</param>
  1656. <param name="args">Array of objects to be used in formatting the message</param>
  1657. </member>
  1658. <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
  1659. <summary>
  1660. Verifies that the first value is greater than the second
  1661. value. If it is not, then an
  1662. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1663. </summary>
  1664. <param name="arg1">The first value, expected to be greater</param>
  1665. <param name="arg2">The second value, expected to be less</param>
  1666. <param name="message">The message to display in case of failure</param>
  1667. </member>
  1668. <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
  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. </member>
  1677. <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
  1678. <summary>
  1679. Verifies that the first value is greater than the second
  1680. value. If it is not, then an
  1681. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1682. </summary>
  1683. <param name="arg1">The first value, expected to be greater</param>
  1684. <param name="arg2">The second value, expected to be less</param>
  1685. <param name="message">The message to display in case of failure</param>
  1686. <param name="args">Array of objects to be used in formatting the message</param>
  1687. </member>
  1688. <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
  1689. <summary>
  1690. Verifies that the first value is greater than the second
  1691. value. If it is not, then an
  1692. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1693. </summary>
  1694. <param name="arg1">The first value, expected to be greater</param>
  1695. <param name="arg2">The second value, expected to be less</param>
  1696. <param name="message">The message to display in case of failure</param>
  1697. </member>
  1698. <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
  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. </member>
  1707. <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String,System.Object[])">
  1708. <summary>
  1709. Verifies that the first value is greater than the second
  1710. value. If it is not, then an
  1711. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1712. </summary>
  1713. <param name="arg1">The first value, expected to be greater</param>
  1714. <param name="arg2">The second value, expected to be less</param>
  1715. <param name="message">The message to display in case of failure</param>
  1716. <param name="args">Array of objects to be used in formatting the message</param>
  1717. </member>
  1718. <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String)">
  1719. <summary>
  1720. Verifies that the first value is greater than the second
  1721. value. If it is not, then an
  1722. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1723. </summary>
  1724. <param name="arg1">The first value, expected to be greater</param>
  1725. <param name="arg2">The second value, expected to be less</param>
  1726. <param name="message">The message to display in case of failure</param>
  1727. </member>
  1728. <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64)">
  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. </member>
  1737. <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
  1738. <summary>
  1739. Verifies that the first value is greater than the second
  1740. value. If it is not, then an
  1741. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1742. </summary>
  1743. <param name="arg1">The first value, expected to be greater</param>
  1744. <param name="arg2">The second value, expected to be less</param>
  1745. <param name="message">The message to display in case of failure</param>
  1746. <param name="args">Array of objects to be used in formatting the message</param>
  1747. </member>
  1748. <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
  1749. <summary>
  1750. Verifies that the first value is greater than the second
  1751. value. If it is not, then an
  1752. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1753. </summary>
  1754. <param name="arg1">The first value, expected to be greater</param>
  1755. <param name="arg2">The second value, expected to be less</param>
  1756. <param name="message">The message to display in case of failure</param>
  1757. </member>
  1758. <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
  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. </member>
  1767. <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
  1768. <summary>
  1769. Verifies that the first value is greater than the second
  1770. value. If it is not, then an
  1771. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1772. </summary>
  1773. <param name="arg1">The first value, expected to be greater</param>
  1774. <param name="arg2">The second value, expected to be less</param>
  1775. <param name="message">The message to display in case of failure</param>
  1776. <param name="args">Array of objects to be used in formatting the message</param>
  1777. </member>
  1778. <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
  1779. <summary>
  1780. Verifies that the first value is greater than the second
  1781. value. If it is not, then an
  1782. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1783. </summary>
  1784. <param name="arg1">The first value, expected to be greater</param>
  1785. <param name="arg2">The second value, expected to be less</param>
  1786. <param name="message">The message to display in case of failure</param>
  1787. </member>
  1788. <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double)">
  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. </member>
  1797. <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
  1798. <summary>
  1799. Verifies that the first value is greater than the second
  1800. value. If it is not, then an
  1801. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1802. </summary>
  1803. <param name="arg1">The first value, expected to be greater</param>
  1804. <param name="arg2">The second value, expected to be less</param>
  1805. <param name="message">The message to display in case of failure</param>
  1806. <param name="args">Array of objects to be used in formatting the message</param>
  1807. </member>
  1808. <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
  1809. <summary>
  1810. Verifies that the first value is greater than the second
  1811. value. If it is not, then an
  1812. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1813. </summary>
  1814. <param name="arg1">The first value, expected to be greater</param>
  1815. <param name="arg2">The second value, expected to be less</param>
  1816. <param name="message">The message to display in case of failure</param>
  1817. </member>
  1818. <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single)">
  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. </member>
  1827. <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
  1828. <summary>
  1829. Verifies that the first value is greater than the second
  1830. value. If it is not, then an
  1831. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1832. </summary>
  1833. <param name="arg1">The first value, expected to be greater</param>
  1834. <param name="arg2">The second value, expected to be less</param>
  1835. <param name="message">The message to display in case of failure</param>
  1836. <param name="args">Array of objects to be used in formatting the message</param>
  1837. </member>
  1838. <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
  1839. <summary>
  1840. Verifies that the first value is greater than the second
  1841. value. If it is not, then an
  1842. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1843. </summary>
  1844. <param name="arg1">The first value, expected to be greater</param>
  1845. <param name="arg2">The second value, expected to be less</param>
  1846. <param name="message">The message to display in case of failure</param>
  1847. </member>
  1848. <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
  1849. <summary>
  1850. Verifies that the first value is greater 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 greater</param>
  1855. <param name="arg2">The second value, expected to be less</param>
  1856. </member>
  1857. <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
  1858. <summary>
  1859. Verifies that the first value is less than the second
  1860. value. If it is not, then an
  1861. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1862. </summary>
  1863. <param name="arg1">The first value, expected to be less</param>
  1864. <param name="arg2">The second value, expected to be greater</param>
  1865. <param name="message">The message to display in case of failure</param>
  1866. <param name="args">Array of objects to be used in formatting the message</param>
  1867. </member>
  1868. <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
  1869. <summary>
  1870. Verifies that the first value is less than the second
  1871. value. If it is not, then an
  1872. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1873. </summary>
  1874. <param name="arg1">The first value, expected to be less</param>
  1875. <param name="arg2">The second value, expected to be greater</param>
  1876. <param name="message">The message to display in case of failure</param>
  1877. </member>
  1878. <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32)">
  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. </member>
  1887. <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
  1888. <summary>
  1889. Verifies that the first value is less than the second
  1890. value. If it is not, then an
  1891. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1892. </summary>
  1893. <param name="arg1">The first value, expected to be less</param>
  1894. <param name="arg2">The second value, expected to be greater</param>
  1895. <param name="message">The message to display in case of failure</param>
  1896. <param name="args">Array of objects to be used in formatting the message</param>
  1897. </member>
  1898. <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
  1899. <summary>
  1900. Verifies that the first value is less than the second
  1901. value. If it is not, then an
  1902. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1903. </summary>
  1904. <param name="arg1">The first value, expected to be less</param>
  1905. <param name="arg2">The second value, expected to be greater</param>
  1906. <param name="message">The message to display in case of failure</param>
  1907. </member>
  1908. <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
  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. </member>
  1917. <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
  1918. <summary>
  1919. Verifies that the first value is less than the second
  1920. value. If it is not, then an
  1921. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1922. </summary>
  1923. <param name="arg1">The first value, expected to be less</param>
  1924. <param name="arg2">The second value, expected to be greater</param>
  1925. <param name="message">The message to display in case of failure</param>
  1926. <param name="args">Array of objects to be used in formatting the message</param>
  1927. </member>
  1928. <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
  1929. <summary>
  1930. Verifies that the first value is less than the second
  1931. value. If it is not, then an
  1932. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1933. </summary>
  1934. <param name="arg1">The first value, expected to be less</param>
  1935. <param name="arg2">The second value, expected to be greater</param>
  1936. <param name="message">The message to display in case of failure</param>
  1937. </member>
  1938. <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64)">
  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. </member>
  1947. <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String,System.Object[])">
  1948. <summary>
  1949. Verifies that the first value is less than the second
  1950. value. If it is not, then an
  1951. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1952. </summary>
  1953. <param name="arg1">The first value, expected to be less</param>
  1954. <param name="arg2">The second value, expected to be greater</param>
  1955. <param name="message">The message to display in case of failure</param>
  1956. <param name="args">Array of objects to be used in formatting the message</param>
  1957. </member>
  1958. <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String)">
  1959. <summary>
  1960. Verifies that the first value is less than the second
  1961. value. If it is not, then an
  1962. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1963. </summary>
  1964. <param name="arg1">The first value, expected to be less</param>
  1965. <param name="arg2">The second value, expected to be greater</param>
  1966. <param name="message">The message to display in case of failure</param>
  1967. </member>
  1968. <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64)">
  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. </member>
  1977. <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
  1978. <summary>
  1979. Verifies that the first value is less than the second
  1980. value. If it is not, then an
  1981. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1982. </summary>
  1983. <param name="arg1">The first value, expected to be less</param>
  1984. <param name="arg2">The second value, expected to be greater</param>
  1985. <param name="message">The message to display in case of failure</param>
  1986. <param name="args">Array of objects to be used in formatting the message</param>
  1987. </member>
  1988. <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
  1989. <summary>
  1990. Verifies that the first value is less than the second
  1991. value. If it is not, then an
  1992. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1993. </summary>
  1994. <param name="arg1">The first value, expected to be less</param>
  1995. <param name="arg2">The second value, expected to be greater</param>
  1996. <param name="message">The message to display in case of failure</param>
  1997. </member>
  1998. <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
  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. </member>
  2007. <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
  2008. <summary>
  2009. Verifies that the first value is less than the second
  2010. value. If it is not, then an
  2011. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2012. </summary>
  2013. <param name="arg1">The first value, expected to be less</param>
  2014. <param name="arg2">The second value, expected to be greater</param>
  2015. <param name="message">The message to display in case of failure</param>
  2016. <param name="args">Array of objects to be used in formatting the message</param>
  2017. </member>
  2018. <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
  2019. <summary>
  2020. Verifies that the first value is less than the second
  2021. value. If it is not, then an
  2022. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2023. </summary>
  2024. <param name="arg1">The first value, expected to be less</param>
  2025. <param name="arg2">The second value, expected to be greater</param>
  2026. <param name="message">The message to display in case of failure</param>
  2027. </member>
  2028. <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double)">
  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. </member>
  2037. <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
  2038. <summary>
  2039. Verifies that the first value is less than the second
  2040. value. If it is not, then an
  2041. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2042. </summary>
  2043. <param name="arg1">The first value, expected to be less</param>
  2044. <param name="arg2">The second value, expected to be greater</param>
  2045. <param name="message">The message to display in case of failure</param>
  2046. <param name="args">Array of objects to be used in formatting the message</param>
  2047. </member>
  2048. <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
  2049. <summary>
  2050. Verifies that the first value is less than the second
  2051. value. If it is not, then an
  2052. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2053. </summary>
  2054. <param name="arg1">The first value, expected to be less</param>
  2055. <param name="arg2">The second value, expected to be greater</param>
  2056. <param name="message">The message to display in case of failure</param>
  2057. </member>
  2058. <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single)">
  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. </member>
  2067. <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
  2068. <summary>
  2069. Verifies that the first value is less than the second
  2070. value. If it is not, then an
  2071. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2072. </summary>
  2073. <param name="arg1">The first value, expected to be less</param>
  2074. <param name="arg2">The second value, expected to be greater</param>
  2075. <param name="message">The message to display in case of failure</param>
  2076. <param name="args">Array of objects to be used in formatting the message</param>
  2077. </member>
  2078. <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
  2079. <summary>
  2080. Verifies that the first value is less than the second
  2081. value. If it is not, then an
  2082. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2083. </summary>
  2084. <param name="arg1">The first value, expected to be less</param>
  2085. <param name="arg2">The second value, expected to be greater</param>
  2086. <param name="message">The message to display in case of failure</param>
  2087. </member>
  2088. <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
  2089. <summary>
  2090. Verifies that the first value is less than the 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 less</param>
  2095. <param name="arg2">The second value, expected to be greater</param>
  2096. </member>
  2097. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
  2098. <summary>
  2099. Verifies that the first value is greater than or equal tothe second
  2100. value. If it is not, then an
  2101. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2102. </summary>
  2103. <param name="arg1">The first value, expected to be greater</param>
  2104. <param name="arg2">The second value, expected to be less</param>
  2105. <param name="message">The message to display in case of failure</param>
  2106. <param name="args">Array of objects to be used in formatting the message</param>
  2107. </member>
  2108. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String)">
  2109. <summary>
  2110. Verifies that the first value is greater than or equal tothe second
  2111. value. If it is not, then an
  2112. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2113. </summary>
  2114. <param name="arg1">The first value, expected to be greater</param>
  2115. <param name="arg2">The second value, expected to be less</param>
  2116. <param name="message">The message to display in case of failure</param>
  2117. </member>
  2118. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32)">
  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. </member>
  2127. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  2128. <summary>
  2129. Verifies that the first value is greater than or equal tothe second
  2130. value. If it is not, then an
  2131. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2132. </summary>
  2133. <param name="arg1">The first value, expected to be greater</param>
  2134. <param name="arg2">The second value, expected to be less</param>
  2135. <param name="message">The message to display in case of failure</param>
  2136. <param name="args">Array of objects to be used in formatting the message</param>
  2137. </member>
  2138. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String)">
  2139. <summary>
  2140. Verifies that the first value is greater than or equal tothe second
  2141. value. If it is not, then an
  2142. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2143. </summary>
  2144. <param name="arg1">The first value, expected to be greater</param>
  2145. <param name="arg2">The second value, expected to be less</param>
  2146. <param name="message">The message to display in case of failure</param>
  2147. </member>
  2148. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32)">
  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. </member>
  2157. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
  2158. <summary>
  2159. Verifies that the first value is greater than or equal tothe second
  2160. value. If it is not, then an
  2161. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2162. </summary>
  2163. <param name="arg1">The first value, expected to be greater</param>
  2164. <param name="arg2">The second value, expected to be less</param>
  2165. <param name="message">The message to display in case of failure</param>
  2166. <param name="args">Array of objects to be used in formatting the message</param>
  2167. </member>
  2168. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String)">
  2169. <summary>
  2170. Verifies that the first value is greater than or equal tothe second
  2171. value. If it is not, then an
  2172. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2173. </summary>
  2174. <param name="arg1">The first value, expected to be greater</param>
  2175. <param name="arg2">The second value, expected to be less</param>
  2176. <param name="message">The message to display in case of failure</param>
  2177. </member>
  2178. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64)">
  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. </member>
  2187. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  2188. <summary>
  2189. Verifies that the first value is greater than or equal tothe second
  2190. value. If it is not, then an
  2191. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2192. </summary>
  2193. <param name="arg1">The first value, expected to be greater</param>
  2194. <param name="arg2">The second value, expected to be less</param>
  2195. <param name="message">The message to display in case of failure</param>
  2196. <param name="args">Array of objects to be used in formatting the message</param>
  2197. </member>
  2198. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String)">
  2199. <summary>
  2200. Verifies that the first value is greater than or equal tothe second
  2201. value. If it is not, then an
  2202. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2203. </summary>
  2204. <param name="arg1">The first value, expected to be greater</param>
  2205. <param name="arg2">The second value, expected to be less</param>
  2206. <param name="message">The message to display in case of failure</param>
  2207. </member>
  2208. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64)">
  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. </member>
  2217. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  2218. <summary>
  2219. Verifies that the first value is greater than or equal tothe second
  2220. value. If it is not, then an
  2221. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2222. </summary>
  2223. <param name="arg1">The first value, expected to be greater</param>
  2224. <param name="arg2">The second value, expected to be less</param>
  2225. <param name="message">The message to display in case of failure</param>
  2226. <param name="args">Array of objects to be used in formatting the message</param>
  2227. </member>
  2228. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String)">
  2229. <summary>
  2230. Verifies that the first value is greater than or equal tothe second
  2231. value. If it is not, then an
  2232. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2233. </summary>
  2234. <param name="arg1">The first value, expected to be greater</param>
  2235. <param name="arg2">The second value, expected to be less</param>
  2236. <param name="message">The message to display in case of failure</param>
  2237. </member>
  2238. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal)">
  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. </member>
  2247. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String,System.Object[])">
  2248. <summary>
  2249. Verifies that the first value is greater than or equal tothe second
  2250. value. If it is not, then an
  2251. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2252. </summary>
  2253. <param name="arg1">The first value, expected to be greater</param>
  2254. <param name="arg2">The second value, expected to be less</param>
  2255. <param name="message">The message to display in case of failure</param>
  2256. <param name="args">Array of objects to be used in formatting the message</param>
  2257. </member>
  2258. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String)">
  2259. <summary>
  2260. Verifies that the first value is greater than or equal tothe second
  2261. value. If it is not, then an
  2262. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2263. </summary>
  2264. <param name="arg1">The first value, expected to be greater</param>
  2265. <param name="arg2">The second value, expected to be less</param>
  2266. <param name="message">The message to display in case of failure</param>
  2267. </member>
  2268. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double)">
  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. </member>
  2277. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String,System.Object[])">
  2278. <summary>
  2279. Verifies that the first value is greater than or equal tothe second
  2280. value. If it is not, then an
  2281. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2282. </summary>
  2283. <param name="arg1">The first value, expected to be greater</param>
  2284. <param name="arg2">The second value, expected to be less</param>
  2285. <param name="message">The message to display in case of failure</param>
  2286. <param name="args">Array of objects to be used in formatting the message</param>
  2287. </member>
  2288. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String)">
  2289. <summary>
  2290. Verifies that the first value is greater than or equal tothe second
  2291. value. If it is not, then an
  2292. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2293. </summary>
  2294. <param name="arg1">The first value, expected to be greater</param>
  2295. <param name="arg2">The second value, expected to be less</param>
  2296. <param name="message">The message to display in case of failure</param>
  2297. </member>
  2298. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single)">
  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. </member>
  2307. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
  2308. <summary>
  2309. Verifies that the first value is greater than or equal tothe second
  2310. value. If it is not, then an
  2311. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2312. </summary>
  2313. <param name="arg1">The first value, expected to be greater</param>
  2314. <param name="arg2">The second value, expected to be less</param>
  2315. <param name="message">The message to display in case of failure</param>
  2316. <param name="args">Array of objects to be used in formatting the message</param>
  2317. </member>
  2318. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String)">
  2319. <summary>
  2320. Verifies that the first value is greater than or equal tothe second
  2321. value. If it is not, then an
  2322. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2323. </summary>
  2324. <param name="arg1">The first value, expected to be greater</param>
  2325. <param name="arg2">The second value, expected to be less</param>
  2326. <param name="message">The message to display in case of failure</param>
  2327. </member>
  2328. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable)">
  2329. <summary>
  2330. Verifies that the first value is greater than or equal tothe 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 greater</param>
  2335. <param name="arg2">The second value, expected to be less</param>
  2336. </member>
  2337. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
  2338. <summary>
  2339. Verifies that the first value is less than or equal to the second
  2340. value. If it is not, then an
  2341. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2342. </summary>
  2343. <param name="arg1">The first value, expected to be less</param>
  2344. <param name="arg2">The second value, expected to be greater</param>
  2345. <param name="message">The message to display in case of failure</param>
  2346. <param name="args">Array of objects to be used in formatting the message</param>
  2347. </member>
  2348. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String)">
  2349. <summary>
  2350. Verifies that the first value is less than or equal to the second
  2351. value. If it is not, then an
  2352. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2353. </summary>
  2354. <param name="arg1">The first value, expected to be less</param>
  2355. <param name="arg2">The second value, expected to be greater</param>
  2356. <param name="message">The message to display in case of failure</param>
  2357. </member>
  2358. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32)">
  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. </member>
  2367. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  2368. <summary>
  2369. Verifies that the first value is less than or equal to the second
  2370. value. If it is not, then an
  2371. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2372. </summary>
  2373. <param name="arg1">The first value, expected to be less</param>
  2374. <param name="arg2">The second value, expected to be greater</param>
  2375. <param name="message">The message to display in case of failure</param>
  2376. <param name="args">Array of objects to be used in formatting the message</param>
  2377. </member>
  2378. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String)">
  2379. <summary>
  2380. Verifies that the first value is less than or equal to the second
  2381. value. If it is not, then an
  2382. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2383. </summary>
  2384. <param name="arg1">The first value, expected to be less</param>
  2385. <param name="arg2">The second value, expected to be greater</param>
  2386. <param name="message">The message to display in case of failure</param>
  2387. </member>
  2388. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32)">
  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. </member>
  2397. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
  2398. <summary>
  2399. Verifies that the first value is less than or equal to the second
  2400. value. If it is not, then an
  2401. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2402. </summary>
  2403. <param name="arg1">The first value, expected to be less</param>
  2404. <param name="arg2">The second value, expected to be greater</param>
  2405. <param name="message">The message to display in case of failure</param>
  2406. <param name="args">Array of objects to be used in formatting the message</param>
  2407. </member>
  2408. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String)">
  2409. <summary>
  2410. Verifies that the first value is less than or equal to the second
  2411. value. If it is not, then an
  2412. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2413. </summary>
  2414. <param name="arg1">The first value, expected to be less</param>
  2415. <param name="arg2">The second value, expected to be greater</param>
  2416. <param name="message">The message to display in case of failure</param>
  2417. </member>
  2418. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64)">
  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. </member>
  2427. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  2428. <summary>
  2429. Verifies that the first value is less than or equal to the second
  2430. value. If it is not, then an
  2431. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2432. </summary>
  2433. <param name="arg1">The first value, expected to be less</param>
  2434. <param name="arg2">The second value, expected to be greater</param>
  2435. <param name="message">The message to display in case of failure</param>
  2436. <param name="args">Array of objects to be used in formatting the message</param>
  2437. </member>
  2438. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String)">
  2439. <summary>
  2440. Verifies that the first value is less than or equal to the second
  2441. value. If it is not, then an
  2442. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2443. </summary>
  2444. <param name="arg1">The first value, expected to be less</param>
  2445. <param name="arg2">The second value, expected to be greater</param>
  2446. <param name="message">The message to display in case of failure</param>
  2447. </member>
  2448. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64)">
  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. </member>
  2457. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  2458. <summary>
  2459. Verifies that the first value is less than or equal to the second
  2460. value. If it is not, then an
  2461. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2462. </summary>
  2463. <param name="arg1">The first value, expected to be less</param>
  2464. <param name="arg2">The second value, expected to be greater</param>
  2465. <param name="message">The message to display in case of failure</param>
  2466. <param name="args">Array of objects to be used in formatting the message</param>
  2467. </member>
  2468. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String)">
  2469. <summary>
  2470. Verifies that the first value is less than or equal to the second
  2471. value. If it is not, then an
  2472. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2473. </summary>
  2474. <param name="arg1">The first value, expected to be less</param>
  2475. <param name="arg2">The second value, expected to be greater</param>
  2476. <param name="message">The message to display in case of failure</param>
  2477. </member>
  2478. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal)">
  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. </member>
  2487. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String,System.Object[])">
  2488. <summary>
  2489. Verifies that the first value is less than or equal to the second
  2490. value. If it is not, then an
  2491. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2492. </summary>
  2493. <param name="arg1">The first value, expected to be less</param>
  2494. <param name="arg2">The second value, expected to be greater</param>
  2495. <param name="message">The message to display in case of failure</param>
  2496. <param name="args">Array of objects to be used in formatting the message</param>
  2497. </member>
  2498. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String)">
  2499. <summary>
  2500. Verifies that the first value is less than or equal to the second
  2501. value. If it is not, then an
  2502. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2503. </summary>
  2504. <param name="arg1">The first value, expected to be less</param>
  2505. <param name="arg2">The second value, expected to be greater</param>
  2506. <param name="message">The message to display in case of failure</param>
  2507. </member>
  2508. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double)">
  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. </member>
  2517. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String,System.Object[])">
  2518. <summary>
  2519. Verifies that the first value is less than or equal to the second
  2520. value. If it is not, then an
  2521. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2522. </summary>
  2523. <param name="arg1">The first value, expected to be less</param>
  2524. <param name="arg2">The second value, expected to be greater</param>
  2525. <param name="message">The message to display in case of failure</param>
  2526. <param name="args">Array of objects to be used in formatting the message</param>
  2527. </member>
  2528. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String)">
  2529. <summary>
  2530. Verifies that the first value is less than or equal to the second
  2531. value. If it is not, then an
  2532. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2533. </summary>
  2534. <param name="arg1">The first value, expected to be less</param>
  2535. <param name="arg2">The second value, expected to be greater</param>
  2536. <param name="message">The message to display in case of failure</param>
  2537. </member>
  2538. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single)">
  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. </member>
  2547. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
  2548. <summary>
  2549. Verifies that the first value is less than or equal to the second
  2550. value. If it is not, then an
  2551. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2552. </summary>
  2553. <param name="arg1">The first value, expected to be less</param>
  2554. <param name="arg2">The second value, expected to be greater</param>
  2555. <param name="message">The message to display in case of failure</param>
  2556. <param name="args">Array of objects to be used in formatting the message</param>
  2557. </member>
  2558. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String)">
  2559. <summary>
  2560. Verifies that the first value is less than or equal to the second
  2561. value. If it is not, then an
  2562. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2563. </summary>
  2564. <param name="arg1">The first value, expected to be less</param>
  2565. <param name="arg2">The second value, expected to be greater</param>
  2566. <param name="message">The message to display in case of failure</param>
  2567. </member>
  2568. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable)">
  2569. <summary>
  2570. Verifies that the first value is less than or equal to the second
  2571. value. If it is not, then an
  2572. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2573. </summary>
  2574. <param name="arg1">The first value, expected to be less</param>
  2575. <param name="arg2">The second value, expected to be greater</param>
  2576. </member>
  2577. <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String,System.Object[])">
  2578. <summary>
  2579. Asserts that an object is contained in a list.
  2580. </summary>
  2581. <param name="expected">The expected object</param>
  2582. <param name="actual">The list to be examined</param>
  2583. <param name="message">The message to display in case of failure</param>
  2584. <param name="args">Array of objects to be used in formatting the message</param>
  2585. </member>
  2586. <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String)">
  2587. <summary>
  2588. Asserts that an object is contained in a list.
  2589. </summary>
  2590. <param name="expected">The expected object</param>
  2591. <param name="actual">The list to be examined</param>
  2592. <param name="message">The message to display in case of failure</param>
  2593. </member>
  2594. <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection)">
  2595. <summary>
  2596. Asserts that an object is contained in a list.
  2597. </summary>
  2598. <param name="expected">The expected object</param>
  2599. <param name="actual">The list to be examined</param>
  2600. </member>
  2601. <member name="M:NUnit.Framework.Assert.AssertDoublesAreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
  2602. <summary>
  2603. Helper for Assert.AreEqual(double expected, double actual, ...)
  2604. allowing code generation to work consistently.
  2605. </summary>
  2606. <param name="expected">The expected value</param>
  2607. <param name="actual">The actual value</param>
  2608. <param name="delta">The maximum acceptable difference between the
  2609. the expected and the actual</param>
  2610. <param name="message">The message to display in case of failure</param>
  2611. <param name="args">Array of objects to be used in formatting the message</param>
  2612. </member>
  2613. <member name="P:NUnit.Framework.Assert.Counter">
  2614. <summary>
  2615. Gets the number of assertions executed so far and
  2616. resets the counter to zero.
  2617. </summary>
  2618. </member>
  2619. <member name="T:NUnit.Framework.AssertionHelper">
  2620. <summary>
  2621. AssertionHelper is an optional base class for user tests,
  2622. allowing the use of shorter names for constraints and
  2623. asserts and avoiding conflict with the definition of
  2624. <see cref="T:NUnit.Framework.Is"/>, from which it inherits much of its
  2625. behavior, in certain mock object frameworks.
  2626. </summary>
  2627. </member>
  2628. <member name="T:NUnit.Framework.Constraints.ConstraintFactory">
  2629. <summary>
  2630. Helper class with properties and methods that supply
  2631. a number of constraints used in Asserts.
  2632. </summary>
  2633. </member>
  2634. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Exactly(System.Int32)">
  2635. <summary>
  2636. Returns a ConstraintExpression, which will apply
  2637. the following constraint to all members of a collection,
  2638. succeeding only if a specified number of them succeed.
  2639. </summary>
  2640. </member>
  2641. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Property(System.String)">
  2642. <summary>
  2643. Returns a new PropertyConstraintExpression, which will either
  2644. test for the existence of the named property on the object
  2645. being tested or apply any following constraint to that property.
  2646. </summary>
  2647. </member>
  2648. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Attribute(System.Type)">
  2649. <summary>
  2650. Returns a new AttributeConstraint checking for the
  2651. presence of a particular attribute on an object.
  2652. </summary>
  2653. </member>
  2654. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Attribute``1">
  2655. <summary>
  2656. Returns a new AttributeConstraint checking for the
  2657. presence of a particular attribute on an object.
  2658. </summary>
  2659. </member>
  2660. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EqualTo(System.Object)">
  2661. <summary>
  2662. Returns a constraint that tests two items for equality
  2663. </summary>
  2664. </member>
  2665. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SameAs(System.Object)">
  2666. <summary>
  2667. Returns a constraint that tests that two references are the same object
  2668. </summary>
  2669. </member>
  2670. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThan(System.Object)">
  2671. <summary>
  2672. Returns a constraint that tests whether the
  2673. actual value is greater than the suppled argument
  2674. </summary>
  2675. </member>
  2676. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThanOrEqualTo(System.Object)">
  2677. <summary>
  2678. Returns a constraint that tests whether the
  2679. actual value is greater than or equal to the suppled argument
  2680. </summary>
  2681. </member>
  2682. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AtLeast(System.Object)">
  2683. <summary>
  2684. Returns a constraint that tests whether the
  2685. actual value is greater than or equal to the suppled argument
  2686. </summary>
  2687. </member>
  2688. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.LessThan(System.Object)">
  2689. <summary>
  2690. Returns a constraint that tests whether the
  2691. actual value is less than the suppled argument
  2692. </summary>
  2693. </member>
  2694. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.LessThanOrEqualTo(System.Object)">
  2695. <summary>
  2696. Returns a constraint that tests whether the
  2697. actual value is less than or equal to the suppled argument
  2698. </summary>
  2699. </member>
  2700. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AtMost(System.Object)">
  2701. <summary>
  2702. Returns a constraint that tests whether the
  2703. actual value is less than or equal to the suppled argument
  2704. </summary>
  2705. </member>
  2706. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf(System.Type)">
  2707. <summary>
  2708. Returns a constraint that tests whether the actual
  2709. value is of the exact type supplied as an argument.
  2710. </summary>
  2711. </member>
  2712. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf``1">
  2713. <summary>
  2714. Returns a constraint that tests whether the actual
  2715. value is of the exact type supplied as an argument.
  2716. </summary>
  2717. </member>
  2718. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf(System.Type)">
  2719. <summary>
  2720. Returns a constraint that tests whether the actual value
  2721. is of the type supplied as an argument or a derived type.
  2722. </summary>
  2723. </member>
  2724. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf``1">
  2725. <summary>
  2726. Returns a constraint that tests whether the actual value
  2727. is of the type supplied as an argument or a derived type.
  2728. </summary>
  2729. </member>
  2730. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType(System.Type)">
  2731. <summary>
  2732. Returns a constraint that tests whether the actual value
  2733. is of the type supplied as an argument or a derived type.
  2734. </summary>
  2735. </member>
  2736. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType``1">
  2737. <summary>
  2738. Returns a constraint that tests whether the actual value
  2739. is of the type supplied as an argument or a derived type.
  2740. </summary>
  2741. </member>
  2742. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom(System.Type)">
  2743. <summary>
  2744. Returns a constraint that tests whether the actual value
  2745. is assignable from the type supplied as an argument.
  2746. </summary>
  2747. </member>
  2748. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom``1">
  2749. <summary>
  2750. Returns a constraint that tests whether the actual value
  2751. is assignable from the type supplied as an argument.
  2752. </summary>
  2753. </member>
  2754. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo(System.Type)">
  2755. <summary>
  2756. Returns a constraint that tests whether the actual value
  2757. is assignable from the type supplied as an argument.
  2758. </summary>
  2759. </member>
  2760. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo``1">
  2761. <summary>
  2762. Returns a constraint that tests whether the actual value
  2763. is assignable from the type supplied as an argument.
  2764. </summary>
  2765. </member>
  2766. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EquivalentTo(System.Collections.IEnumerable)">
  2767. <summary>
  2768. Returns a constraint that tests whether the actual value
  2769. is a collection containing the same elements as the
  2770. collection supplied as an argument.
  2771. </summary>
  2772. </member>
  2773. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SubsetOf(System.Collections.IEnumerable)">
  2774. <summary>
  2775. Returns a constraint that tests whether the actual value
  2776. is a subset of the collection supplied as an argument.
  2777. </summary>
  2778. </member>
  2779. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Member(System.Object)">
  2780. <summary>
  2781. Returns a new CollectionContainsConstraint checking for the
  2782. presence of a particular object in the collection.
  2783. </summary>
  2784. </member>
  2785. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.Object)">
  2786. <summary>
  2787. Returns a new CollectionContainsConstraint checking for the
  2788. presence of a particular object in the collection.
  2789. </summary>
  2790. </member>
  2791. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.String)">
  2792. <summary>
  2793. Returns a new ContainsConstraint. This constraint
  2794. will, in turn, make use of the appropriate second-level
  2795. constraint, depending on the type of the actual argument.
  2796. This overload is only used if the item sought is a string,
  2797. since any other type implies that we are looking for a
  2798. collection member.
  2799. </summary>
  2800. </member>
  2801. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringContaining(System.String)">
  2802. <summary>
  2803. Returns a constraint that succeeds if the actual
  2804. value contains the substring supplied as an argument.
  2805. </summary>
  2806. </member>
  2807. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.ContainsSubstring(System.String)">
  2808. <summary>
  2809. Returns a constraint that succeeds if the actual
  2810. value contains the substring supplied as an argument.
  2811. </summary>
  2812. </member>
  2813. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotContain(System.String)">
  2814. <summary>
  2815. Returns a constraint that fails if the actual
  2816. value contains the substring supplied as an argument.
  2817. </summary>
  2818. </member>
  2819. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StartsWith(System.String)">
  2820. <summary>
  2821. Returns a constraint that succeeds if the actual
  2822. value starts with the substring supplied as an argument.
  2823. </summary>
  2824. </member>
  2825. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringStarting(System.String)">
  2826. <summary>
  2827. Returns a constraint that succeeds if the actual
  2828. value starts with the substring supplied as an argument.
  2829. </summary>
  2830. </member>
  2831. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotStartWith(System.String)">
  2832. <summary>
  2833. Returns a constraint that fails if the actual
  2834. value starts with the substring supplied as an argument.
  2835. </summary>
  2836. </member>
  2837. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EndsWith(System.String)">
  2838. <summary>
  2839. Returns a constraint that succeeds if the actual
  2840. value ends with the substring supplied as an argument.
  2841. </summary>
  2842. </member>
  2843. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringEnding(System.String)">
  2844. <summary>
  2845. Returns a constraint that succeeds if the actual
  2846. value ends with the substring supplied as an argument.
  2847. </summary>
  2848. </member>
  2849. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotEndWith(System.String)">
  2850. <summary>
  2851. Returns a constraint that fails if the actual
  2852. value ends with the substring supplied as an argument.
  2853. </summary>
  2854. </member>
  2855. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Matches(System.String)">
  2856. <summary>
  2857. Returns a constraint that succeeds if the actual
  2858. value matches the regular expression supplied as an argument.
  2859. </summary>
  2860. </member>
  2861. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringMatching(System.String)">
  2862. <summary>
  2863. Returns a constraint that succeeds if the actual
  2864. value matches the regular expression supplied as an argument.
  2865. </summary>
  2866. </member>
  2867. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotMatch(System.String)">
  2868. <summary>
  2869. Returns a constraint that fails if the actual
  2870. value matches the pattern supplied as an argument.
  2871. </summary>
  2872. </member>
  2873. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SamePath(System.String)">
  2874. <summary>
  2875. Returns a constraint that tests whether the path provided
  2876. is the same as an expected path after canonicalization.
  2877. </summary>
  2878. </member>
  2879. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SubPath(System.String)">
  2880. <summary>
  2881. Returns a constraint that tests whether the path provided
  2882. is the same path or under an expected path after canonicalization.
  2883. </summary>
  2884. </member>
  2885. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SamePathOrUnder(System.String)">
  2886. <summary>
  2887. Returns a constraint that tests whether the path provided
  2888. is the same path or under an expected path after canonicalization.
  2889. </summary>
  2890. </member>
  2891. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InRange``1(``0,``0)">
  2892. <summary>
  2893. Returns a constraint that tests whether the actual value falls
  2894. within a specified range.
  2895. </summary>
  2896. </member>
  2897. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Not">
  2898. <summary>
  2899. Returns a ConstraintExpression that negates any
  2900. following constraint.
  2901. </summary>
  2902. </member>
  2903. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.No">
  2904. <summary>
  2905. Returns a ConstraintExpression that negates any
  2906. following constraint.
  2907. </summary>
  2908. </member>
  2909. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.All">
  2910. <summary>
  2911. Returns a ConstraintExpression, which will apply
  2912. the following constraint to all members of a collection,
  2913. succeeding if all of them succeed.
  2914. </summary>
  2915. </member>
  2916. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Some">
  2917. <summary>
  2918. Returns a ConstraintExpression, which will apply
  2919. the following constraint to all members of a collection,
  2920. succeeding if at least one of them succeeds.
  2921. </summary>
  2922. </member>
  2923. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.None">
  2924. <summary>
  2925. Returns a ConstraintExpression, which will apply
  2926. the following constraint to all members of a collection,
  2927. succeeding if all of them fail.
  2928. </summary>
  2929. </member>
  2930. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Length">
  2931. <summary>
  2932. Returns a new ConstraintExpression, which will apply the following
  2933. constraint to the Length property of the object being tested.
  2934. </summary>
  2935. </member>
  2936. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Count">
  2937. <summary>
  2938. Returns a new ConstraintExpression, which will apply the following
  2939. constraint to the Count property of the object being tested.
  2940. </summary>
  2941. </member>
  2942. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Message">
  2943. <summary>
  2944. Returns a new ConstraintExpression, which will apply the following
  2945. constraint to the Message property of the object being tested.
  2946. </summary>
  2947. </member>
  2948. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.InnerException">
  2949. <summary>
  2950. Returns a new ConstraintExpression, which will apply the following
  2951. constraint to the InnerException property of the object being tested.
  2952. </summary>
  2953. </member>
  2954. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Null">
  2955. <summary>
  2956. Returns a constraint that tests for null
  2957. </summary>
  2958. </member>
  2959. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.True">
  2960. <summary>
  2961. Returns a constraint that tests for True
  2962. </summary>
  2963. </member>
  2964. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.False">
  2965. <summary>
  2966. Returns a constraint that tests for False
  2967. </summary>
  2968. </member>
  2969. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Positive">
  2970. <summary>
  2971. Returns a constraint that tests for a positive value
  2972. </summary>
  2973. </member>
  2974. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Negative">
  2975. <summary>
  2976. Returns a constraint that tests for a negative value
  2977. </summary>
  2978. </member>
  2979. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.NaN">
  2980. <summary>
  2981. Returns a constraint that tests for NaN
  2982. </summary>
  2983. </member>
  2984. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Empty">
  2985. <summary>
  2986. Returns a constraint that tests for empty
  2987. </summary>
  2988. </member>
  2989. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Unique">
  2990. <summary>
  2991. Returns a constraint that tests whether a collection
  2992. contains all unique items.
  2993. </summary>
  2994. </member>
  2995. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.BinarySerializable">
  2996. <summary>
  2997. Returns a constraint that tests whether an object graph is serializable in binary format.
  2998. </summary>
  2999. </member>
  3000. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.XmlSerializable">
  3001. <summary>
  3002. Returns a constraint that tests whether an object graph is serializable in xml format.
  3003. </summary>
  3004. </member>
  3005. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Ordered">
  3006. <summary>
  3007. Returns a constraint that tests whether a collection is ordered
  3008. </summary>
  3009. </member>
  3010. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
  3011. <summary>
  3012. Apply a constraint to an actual value, succeeding if the constraint
  3013. is satisfied and throwing an assertion exception on failure. Works
  3014. identically to Assert.That.
  3015. </summary>
  3016. <param name="actual">The actual value to test</param>
  3017. <param name="expression">A Constraint to be applied</param>
  3018. </member>
  3019. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  3020. <summary>
  3021. Apply a constraint to an actual value, succeeding if the constraint
  3022. is satisfied and throwing an assertion exception on failure. Works
  3023. identically to Assert.That.
  3024. </summary>
  3025. <param name="actual">The actual value to test</param>
  3026. <param name="expression">A Constraint to be applied</param>
  3027. <param name="message">The message to be displayed in case of failure</param>
  3028. </member>
  3029. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  3030. <summary>
  3031. Apply a constraint to an actual value, succeeding if the constraint
  3032. is satisfied and throwing an assertion exception on failure. Works
  3033. identically to Assert.That.
  3034. </summary>
  3035. <param name="actual">The actual value to test</param>
  3036. <param name="expression">A Constraint to be applied</param>
  3037. <param name="message">The message to be displayed in case of failure</param>
  3038. <param name="args">Arguments to use in formatting the message</param>
  3039. </member>
  3040. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String,System.Object[])">
  3041. <summary>
  3042. Asserts that a condition is true. If the condition is false the method throws
  3043. an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to
  3044. <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])"/>.
  3045. </summary>
  3046. <param name="condition">The evaluated condition</param>
  3047. <param name="message">The message to display if the condition is false</param>
  3048. <param name="args">Arguments to be used in formatting the message</param>
  3049. </member>
  3050. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String)">
  3051. <summary>
  3052. Asserts that a condition is true. If the condition is false the method throws
  3053. an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to
  3054. <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String)"/>.
  3055. </summary>
  3056. <param name="condition">The evaluated condition</param>
  3057. <param name="message">The message to display if the condition is false</param>
  3058. </member>
  3059. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean)">
  3060. <summary>
  3061. Asserts that a condition is true. If the condition is false the method throws
  3062. an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to <see cref="M:NUnit.Framework.Assert.That(System.Boolean)"/>.
  3063. </summary>
  3064. <param name="condition">The evaluated condition</param>
  3065. </member>
  3066. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint)">
  3067. <summary>
  3068. Apply a constraint to an actual value, succeeding if the constraint
  3069. is satisfied and throwing an assertion exception on failure.
  3070. </summary>
  3071. <param name="expr">A Constraint expression to be applied</param>
  3072. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  3073. </member>
  3074. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  3075. <summary>
  3076. Apply a constraint to an actual value, succeeding if the constraint
  3077. is satisfied and throwing an assertion exception on failure.
  3078. </summary>
  3079. <param name="expr">A Constraint expression to be applied</param>
  3080. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  3081. <param name="message">The message that will be displayed on failure</param>
  3082. </member>
  3083. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  3084. <summary>
  3085. Apply a constraint to an actual value, succeeding if the constraint
  3086. is satisfied and throwing an assertion exception on failure.
  3087. </summary>
  3088. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  3089. <param name="expr">A Constraint expression to be applied</param>
  3090. <param name="message">The message that will be displayed on failure</param>
  3091. <param name="args">Arguments to be used in formatting the message</param>
  3092. </member>
  3093. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
  3094. <summary>
  3095. Apply a constraint to a referenced value, succeeding if the constraint
  3096. is satisfied and throwing an assertion exception on failure.
  3097. </summary>
  3098. <param name="actual">The actual value to test</param>
  3099. <param name="expression">A Constraint to be applied</param>
  3100. </member>
  3101. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  3102. <summary>
  3103. Apply a constraint to a referenced value, succeeding if the constraint
  3104. is satisfied and throwing an assertion exception on failure.
  3105. </summary>
  3106. <param name="actual">The actual value to test</param>
  3107. <param name="expression">A Constraint to be applied</param>
  3108. <param name="message">The message that will be displayed on failure</param>
  3109. </member>
  3110. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  3111. <summary>
  3112. Apply a constraint to a referenced value, succeeding if the constraint
  3113. is satisfied and throwing an assertion exception on failure.
  3114. </summary>
  3115. <param name="actual">The actual value to test</param>
  3116. <param name="expression">A Constraint to be applied</param>
  3117. <param name="message">The message that will be displayed on failure</param>
  3118. <param name="args">Arguments to be used in formatting the message</param>
  3119. </member>
  3120. <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
  3121. <summary>
  3122. Asserts that the code represented by a delegate throws an exception
  3123. that satisfies the constraint provided.
  3124. </summary>
  3125. <param name="code">A TestDelegate to be executed</param>
  3126. <param name="constraint">A ThrowsConstraint used in the test</param>
  3127. </member>
  3128. <member name="M:NUnit.Framework.AssertionHelper.Map(System.Collections.ICollection)">
  3129. <summary>
  3130. Returns a ListMapper based on a collection.
  3131. </summary>
  3132. <param name="original">The original collection</param>
  3133. <returns></returns>
  3134. </member>
  3135. <member name="T:NUnit.Framework.Assume">
  3136. <summary>
  3137. Provides static methods to express the assumptions
  3138. that must be met for a test to give a meaningful
  3139. result. If an assumption is not met, the test
  3140. should produce an inconclusive result.
  3141. </summary>
  3142. </member>
  3143. <member name="M:NUnit.Framework.Assume.Equals(System.Object,System.Object)">
  3144. <summary>
  3145. The Equals method throws an AssertionException. This is done
  3146. to make sure there is no mistake by calling this function.
  3147. </summary>
  3148. <param name="a"></param>
  3149. <param name="b"></param>
  3150. </member>
  3151. <member name="M:NUnit.Framework.Assume.ReferenceEquals(System.Object,System.Object)">
  3152. <summary>
  3153. override the default ReferenceEquals to throw an AssertionException. This
  3154. implementation makes sure there is no mistake in calling this function
  3155. as part of Assert.
  3156. </summary>
  3157. <param name="a"></param>
  3158. <param name="b"></param>
  3159. </member>
  3160. <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
  3161. <summary>
  3162. Apply a constraint to an actual value, succeeding if the constraint
  3163. is satisfied and throwing an InconclusiveException on failure.
  3164. </summary>
  3165. <param name="expression">A Constraint expression to be applied</param>
  3166. <param name="actual">The actual value to test</param>
  3167. </member>
  3168. <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  3169. <summary>
  3170. Apply a constraint to an actual value, succeeding if the constraint
  3171. is satisfied and throwing an InconclusiveException on failure.
  3172. </summary>
  3173. <param name="expression">A Constraint expression to be applied</param>
  3174. <param name="actual">The actual value to test</param>
  3175. <param name="message">The message that will be displayed on failure</param>
  3176. </member>
  3177. <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  3178. <summary>
  3179. Apply a constraint to an actual value, succeeding if the constraint
  3180. is satisfied and throwing an InconclusiveException on failure.
  3181. </summary>
  3182. <param name="expression">A Constraint expression to be applied</param>
  3183. <param name="actual">The actual value to test</param>
  3184. <param name="message">The message that will be displayed on failure</param>
  3185. <param name="args">Arguments to be used in formatting the message</param>
  3186. </member>
  3187. <member name="M:NUnit.Framework.Assume.That(System.Boolean,System.String,System.Object[])">
  3188. <summary>
  3189. Asserts that a condition is true. If the condition is false the method throws
  3190. an <see cref="T:NUnit.Framework.InconclusiveException"/>.
  3191. </summary>
  3192. <param name="condition">The evaluated condition</param>
  3193. <param name="message">The message to display if the condition is false</param>
  3194. <param name="args">Arguments to be used in formatting the message</param>
  3195. </member>
  3196. <member name="M:NUnit.Framework.Assume.That(System.Boolean,System.String)">
  3197. <summary>
  3198. Asserts that a condition is true. If the condition is false the method throws
  3199. an <see cref="T:NUnit.Framework.InconclusiveException"/>.
  3200. </summary>
  3201. <param name="condition">The evaluated condition</param>
  3202. <param name="message">The message to display if the condition is false</param>
  3203. </member>
  3204. <member name="M:NUnit.Framework.Assume.That(System.Boolean)">
  3205. <summary>
  3206. Asserts that a condition is true. If the condition is false the
  3207. method throws an <see cref="T:NUnit.Framework.InconclusiveException"/>.
  3208. </summary>
  3209. <param name="condition">The evaluated condition</param>
  3210. </member>
  3211. <member name="M:NUnit.Framework.Assume.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint)">
  3212. <summary>
  3213. Apply a constraint to an actual value, succeeding if the constraint
  3214. is satisfied and throwing an InconclusiveException on failure.
  3215. </summary>
  3216. <param name="expr">A Constraint expression to be applied</param>
  3217. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  3218. </member>
  3219. <member name="M:NUnit.Framework.Assume.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  3220. <summary>
  3221. Apply a constraint to an actual value, succeeding if the constraint
  3222. is satisfied and throwing an InconclusiveException on failure.
  3223. </summary>
  3224. <param name="expr">A Constraint expression to be applied</param>
  3225. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  3226. <param name="message">The message that will be displayed on failure</param>
  3227. </member>
  3228. <member name="M:NUnit.Framework.Assume.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  3229. <summary>
  3230. Apply a constraint to an actual value, succeeding if the constraint
  3231. is satisfied and throwing an InconclusiveException on failure.
  3232. </summary>
  3233. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  3234. <param name="expr">A Constraint expression to be applied</param>
  3235. <param name="message">The message that will be displayed on failure</param>
  3236. <param name="args">Arguments to be used in formatting the message</param>
  3237. </member>
  3238. <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
  3239. <summary>
  3240. Apply a constraint to a referenced value, succeeding if the constraint
  3241. is satisfied and throwing an InconclusiveException on failure.
  3242. </summary>
  3243. <param name="expression">A Constraint expression to be applied</param>
  3244. <param name="actual">The actual value to test</param>
  3245. </member>
  3246. <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  3247. <summary>
  3248. Apply a constraint to a referenced value, succeeding if the constraint
  3249. is satisfied and throwing an InconclusiveException on failure.
  3250. </summary>
  3251. <param name="expression">A Constraint expression to be applied</param>
  3252. <param name="actual">The actual value to test</param>
  3253. <param name="message">The message that will be displayed on failure</param>
  3254. </member>
  3255. <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  3256. <summary>
  3257. Apply a constraint to a referenced value, succeeding if the constraint
  3258. is satisfied and throwing an InconclusiveException on failure.
  3259. </summary>
  3260. <param name="expression">A Constraint expression to be applied</param>
  3261. <param name="actual">The actual value to test</param>
  3262. <param name="message">The message that will be displayed on failure</param>
  3263. <param name="args">Arguments to be used in formatting the message</param>
  3264. </member>
  3265. <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
  3266. <summary>
  3267. Asserts that the code represented by a delegate throws an exception
  3268. that satisfies the constraint provided.
  3269. </summary>
  3270. <param name="code">A TestDelegate to be executed</param>
  3271. <param name="constraint">A ThrowsConstraint used in the test</param>
  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.CollectionAssert">
  3282. <summary>
  3283. A set of Assert methods operationg on one or more collections
  3284. </summary>
  3285. </member>
  3286. <member name="M:NUnit.Framework.CollectionAssert.Equals(System.Object,System.Object)">
  3287. <summary>
  3288. The Equals method throws an AssertionException. This is done
  3289. to make sure there is no mistake by calling this function.
  3290. </summary>
  3291. <param name="a"></param>
  3292. <param name="b"></param>
  3293. </member>
  3294. <member name="M:NUnit.Framework.CollectionAssert.ReferenceEquals(System.Object,System.Object)">
  3295. <summary>
  3296. override the default ReferenceEquals to throw an AssertionException. This
  3297. implementation makes sure there is no mistake in calling this function
  3298. as part of Assert.
  3299. </summary>
  3300. <param name="a"></param>
  3301. <param name="b"></param>
  3302. </member>
  3303. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type)">
  3304. <summary>
  3305. Asserts that all items contained in collection are of the type specified by expectedType.
  3306. </summary>
  3307. <param name="collection">IEnumerable containing objects to be considered</param>
  3308. <param name="expectedType">System.Type that all objects in collection must be instances of</param>
  3309. </member>
  3310. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String)">
  3311. <summary>
  3312. Asserts that all items contained in collection are of the type specified by expectedType.
  3313. </summary>
  3314. <param name="collection">IEnumerable containing objects to be considered</param>
  3315. <param name="expectedType">System.Type that all objects in collection must be instances of</param>
  3316. <param name="message">The message that will be displayed on failure</param>
  3317. </member>
  3318. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String,System.Object[])">
  3319. <summary>
  3320. Asserts that all items contained in collection are of the type specified by expectedType.
  3321. </summary>
  3322. <param name="collection">IEnumerable containing objects to be considered</param>
  3323. <param name="expectedType">System.Type that all objects in collection must be instances of</param>
  3324. <param name="message">The message that will be displayed on failure</param>
  3325. <param name="args">Arguments to be used in formatting the message</param>
  3326. </member>
  3327. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable)">
  3328. <summary>
  3329. Asserts that all items contained in collection are not equal to null.
  3330. </summary>
  3331. <param name="collection">IEnumerable containing objects to be considered</param>
  3332. </member>
  3333. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String)">
  3334. <summary>
  3335. Asserts that all items contained in collection are not equal to null.
  3336. </summary>
  3337. <param name="collection">IEnumerable containing objects to be considered</param>
  3338. <param name="message">The message that will be displayed on failure</param>
  3339. </member>
  3340. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String,System.Object[])">
  3341. <summary>
  3342. Asserts that all items contained in collection are not equal to null.
  3343. </summary>
  3344. <param name="collection">IEnumerable of objects to be considered</param>
  3345. <param name="message">The message that will be displayed on failure</param>
  3346. <param name="args">Arguments to be used in formatting the message</param>
  3347. </member>
  3348. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable)">
  3349. <summary>
  3350. Ensures that every object contained in collection exists within the collection
  3351. once and only once.
  3352. </summary>
  3353. <param name="collection">IEnumerable of objects to be considered</param>
  3354. </member>
  3355. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String)">
  3356. <summary>
  3357. Ensures that every object contained in collection exists within the collection
  3358. once and only once.
  3359. </summary>
  3360. <param name="collection">IEnumerable of objects to be considered</param>
  3361. <param name="message">The message that will be displayed on failure</param>
  3362. </member>
  3363. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String,System.Object[])">
  3364. <summary>
  3365. Ensures that every object contained in collection exists within the collection
  3366. once and only once.
  3367. </summary>
  3368. <param name="collection">IEnumerable of objects to be considered</param>
  3369. <param name="message">The message that will be displayed on failure</param>
  3370. <param name="args">Arguments to be used in formatting the message</param>
  3371. </member>
  3372. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  3373. <summary>
  3374. Asserts that expected and actual are exactly equal. The collections must have the same count,
  3375. and contain the exact same objects in the same order.
  3376. </summary>
  3377. <param name="expected">The first IEnumerable of objects to be considered</param>
  3378. <param name="actual">The second IEnumerable of objects to be considered</param>
  3379. </member>
  3380. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
  3381. <summary>
  3382. Asserts that expected and actual are exactly equal. The collections must have the same count,
  3383. and contain the exact same objects in the same order.
  3384. If comparer is not null then it will be used to compare the objects.
  3385. </summary>
  3386. <param name="expected">The first IEnumerable of objects to be considered</param>
  3387. <param name="actual">The second IEnumerable of objects to be considered</param>
  3388. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  3389. </member>
  3390. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  3391. <summary>
  3392. Asserts that expected and actual are exactly equal. The collections must have the same count,
  3393. and contain the exact same objects in the same order.
  3394. </summary>
  3395. <param name="expected">The first IEnumerable of objects to be considered</param>
  3396. <param name="actual">The second IEnumerable of objects to be considered</param>
  3397. <param name="message">The message that will be displayed on failure</param>
  3398. </member>
  3399. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
  3400. <summary>
  3401. Asserts that expected and actual are exactly equal. The collections must have the same count,
  3402. and contain the exact same objects in the same order.
  3403. If comparer is not null then it will be used to compare the objects.
  3404. </summary>
  3405. <param name="expected">The first IEnumerable of objects to be considered</param>
  3406. <param name="actual">The second IEnumerable of objects to be considered</param>
  3407. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  3408. <param name="message">The message that will be displayed on failure</param>
  3409. </member>
  3410. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  3411. <summary>
  3412. Asserts that expected and actual are exactly equal. The collections must have the same count,
  3413. and contain the exact same objects in the same order.
  3414. </summary>
  3415. <param name="expected">The first IEnumerable of objects to be considered</param>
  3416. <param name="actual">The second IEnumerable of objects to be considered</param>
  3417. <param name="message">The message that will be displayed on failure</param>
  3418. <param name="args">Arguments to be used in formatting the message</param>
  3419. </member>
  3420. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
  3421. <summary>
  3422. Asserts that expected and actual are exactly equal. The collections must have the same count,
  3423. and contain the exact same objects in the same order.
  3424. If comparer is not null then it will be used to compare the objects.
  3425. </summary>
  3426. <param name="expected">The first IEnumerable of objects to be considered</param>
  3427. <param name="actual">The second IEnumerable of objects to be considered</param>
  3428. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  3429. <param name="message">The message that will be displayed on failure</param>
  3430. <param name="args">Arguments to be used in formatting the message</param>
  3431. </member>
  3432. <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  3433. <summary>
  3434. Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
  3435. </summary>
  3436. <param name="expected">The first IEnumerable of objects to be considered</param>
  3437. <param name="actual">The second IEnumerable of objects to be considered</param>
  3438. </member>
  3439. <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  3440. <summary>
  3441. Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
  3442. </summary>
  3443. <param name="expected">The first IEnumerable of objects to be considered</param>
  3444. <param name="actual">The second IEnumerable of objects to be considered</param>
  3445. <param name="message">The message that will be displayed on failure</param>
  3446. </member>
  3447. <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  3448. <summary>
  3449. Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
  3450. </summary>
  3451. <param name="expected">The first IEnumerable of objects to be considered</param>
  3452. <param name="actual">The second IEnumerable of objects to be considered</param>
  3453. <param name="message">The message that will be displayed on failure</param>
  3454. <param name="args">Arguments to be used in formatting the message</param>
  3455. </member>
  3456. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  3457. <summary>
  3458. Asserts that expected and actual are not exactly equal.
  3459. </summary>
  3460. <param name="expected">The first IEnumerable of objects to be considered</param>
  3461. <param name="actual">The second IEnumerable of objects to be considered</param>
  3462. </member>
  3463. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
  3464. <summary>
  3465. Asserts that expected and actual are not exactly equal.
  3466. If comparer is not null then it will be used to compare the objects.
  3467. </summary>
  3468. <param name="expected">The first IEnumerable of objects to be considered</param>
  3469. <param name="actual">The second IEnumerable of objects to be considered</param>
  3470. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  3471. </member>
  3472. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  3473. <summary>
  3474. Asserts that expected and actual are not exactly equal.
  3475. </summary>
  3476. <param name="expected">The first IEnumerable of objects to be considered</param>
  3477. <param name="actual">The second IEnumerable of objects to be considered</param>
  3478. <param name="message">The message that will be displayed on failure</param>
  3479. </member>
  3480. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
  3481. <summary>
  3482. Asserts that expected and actual are not exactly equal.
  3483. If comparer is not null then it will be used to compare the objects.
  3484. </summary>
  3485. <param name="expected">The first IEnumerable of objects to be considered</param>
  3486. <param name="actual">The second IEnumerable of objects to be considered</param>
  3487. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  3488. <param name="message">The message that will be displayed on failure</param>
  3489. </member>
  3490. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  3491. <summary>
  3492. Asserts that expected and actual are not exactly equal.
  3493. </summary>
  3494. <param name="expected">The first IEnumerable of objects to be considered</param>
  3495. <param name="actual">The second IEnumerable of objects to be considered</param>
  3496. <param name="message">The message that will be displayed on failure</param>
  3497. <param name="args">Arguments to be used in formatting the message</param>
  3498. </member>
  3499. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
  3500. <summary>
  3501. Asserts that expected and actual are not exactly equal.
  3502. If comparer is not null then it will be used to compare the objects.
  3503. </summary>
  3504. <param name="expected">The first IEnumerable of objects to be considered</param>
  3505. <param name="actual">The second IEnumerable of objects to be considered</param>
  3506. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  3507. <param name="message">The message that will be displayed on failure</param>
  3508. <param name="args">Arguments to be used in formatting the message</param>
  3509. </member>
  3510. <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  3511. <summary>
  3512. Asserts that expected and actual are not equivalent.
  3513. </summary>
  3514. <param name="expected">The first IEnumerable of objects to be considered</param>
  3515. <param name="actual">The second IEnumerable of objects to be considered</param>
  3516. </member>
  3517. <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  3518. <summary>
  3519. Asserts that expected and actual are not equivalent.
  3520. </summary>
  3521. <param name="expected">The first IEnumerable of objects to be considered</param>
  3522. <param name="actual">The second IEnumerable of objects to be considered</param>
  3523. <param name="message">The message that will be displayed on failure</param>
  3524. </member>
  3525. <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  3526. <summary>
  3527. Asserts that expected and actual are not equivalent.
  3528. </summary>
  3529. <param name="expected">The first IEnumerable of objects to be considered</param>
  3530. <param name="actual">The second IEnumerable of objects to be considered</param>
  3531. <param name="message">The message that will be displayed on failure</param>
  3532. <param name="args">Arguments to be used in formatting the message</param>
  3533. </member>
  3534. <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object)">
  3535. <summary>
  3536. Asserts that collection contains actual as an item.
  3537. </summary>
  3538. <param name="collection">IEnumerable of objects to be considered</param>
  3539. <param name="actual">Object to be found within collection</param>
  3540. </member>
  3541. <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String)">
  3542. <summary>
  3543. Asserts that collection contains actual as an item.
  3544. </summary>
  3545. <param name="collection">IEnumerable of objects to be considered</param>
  3546. <param name="actual">Object to be found within collection</param>
  3547. <param name="message">The message that will be displayed on failure</param>
  3548. </member>
  3549. <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
  3550. <summary>
  3551. Asserts that collection contains actual as an item.
  3552. </summary>
  3553. <param name="collection">IEnumerable of objects to be considered</param>
  3554. <param name="actual">Object to be found within collection</param>
  3555. <param name="message">The message that will be displayed on failure</param>
  3556. <param name="args">Arguments to be used in formatting the message</param>
  3557. </member>
  3558. <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object)">
  3559. <summary>
  3560. Asserts that collection does not contain actual as an item.
  3561. </summary>
  3562. <param name="collection">IEnumerable of objects to be considered</param>
  3563. <param name="actual">Object that cannot exist within collection</param>
  3564. </member>
  3565. <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String)">
  3566. <summary>
  3567. Asserts that collection does not contain actual as an item.
  3568. </summary>
  3569. <param name="collection">IEnumerable of objects to be considered</param>
  3570. <param name="actual">Object that cannot exist within collection</param>
  3571. <param name="message">The message that will be displayed on failure</param>
  3572. </member>
  3573. <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
  3574. <summary>
  3575. Asserts that collection does not contain actual as an item.
  3576. </summary>
  3577. <param name="collection">IEnumerable of objects to be considered</param>
  3578. <param name="actual">Object that cannot exist within collection</param>
  3579. <param name="message">The message that will be displayed on failure</param>
  3580. <param name="args">Arguments to be used in formatting the message</param>
  3581. </member>
  3582. <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  3583. <summary>
  3584. Asserts that the superset does not contain the subset
  3585. </summary>
  3586. <param name="subset">The IEnumerable subset to be considered</param>
  3587. <param name="superset">The IEnumerable superset to be considered</param>
  3588. </member>
  3589. <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  3590. <summary>
  3591. Asserts that the superset does not contain the subset
  3592. </summary>
  3593. <param name="subset">The IEnumerable subset to be considered</param>
  3594. <param name="superset">The IEnumerable superset to be considered</param>
  3595. <param name="message">The message that will be displayed on failure</param>
  3596. </member>
  3597. <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  3598. <summary>
  3599. Asserts that the superset does not contain the subset
  3600. </summary>
  3601. <param name="subset">The IEnumerable subset to be considered</param>
  3602. <param name="superset">The IEnumerable superset to be considered</param>
  3603. <param name="message">The message that will be displayed on failure</param>
  3604. <param name="args">Arguments to be used in formatting the message</param>
  3605. </member>
  3606. <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  3607. <summary>
  3608. Asserts that the superset contains the subset.
  3609. </summary>
  3610. <param name="subset">The IEnumerable subset to be considered</param>
  3611. <param name="superset">The IEnumerable superset to be considered</param>
  3612. </member>
  3613. <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  3614. <summary>
  3615. Asserts that the superset contains the subset.
  3616. </summary>
  3617. <param name="subset">The IEnumerable subset to be considered</param>
  3618. <param name="superset">The IEnumerable superset to be considered</param>
  3619. <param name="message">The message that will be displayed on failure</param>
  3620. </member>
  3621. <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  3622. <summary>
  3623. Asserts that the superset contains the subset.
  3624. </summary>
  3625. <param name="subset">The IEnumerable subset to be considered</param>
  3626. <param name="superset">The IEnumerable superset to be considered</param>
  3627. <param name="message">The message that will be displayed on failure</param>
  3628. <param name="args">Arguments to be used in formatting the message</param>
  3629. </member>
  3630. <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
  3631. <summary>
  3632. Assert that an array, list or other collection is empty
  3633. </summary>
  3634. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  3635. <param name="message">The message to be displayed on failure</param>
  3636. <param name="args">Arguments to be used in formatting the message</param>
  3637. </member>
  3638. <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String)">
  3639. <summary>
  3640. Assert that an array, list or other collection is empty
  3641. </summary>
  3642. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  3643. <param name="message">The message to be displayed on failure</param>
  3644. </member>
  3645. <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable)">
  3646. <summary>
  3647. Assert that an array,list or other collection is empty
  3648. </summary>
  3649. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  3650. </member>
  3651. <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
  3652. <summary>
  3653. Assert that an array, list or other collection is empty
  3654. </summary>
  3655. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  3656. <param name="message">The message to be displayed on failure</param>
  3657. <param name="args">Arguments to be used in formatting the message</param>
  3658. </member>
  3659. <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String)">
  3660. <summary>
  3661. Assert that an array, list or other collection is empty
  3662. </summary>
  3663. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  3664. <param name="message">The message to be displayed on failure</param>
  3665. </member>
  3666. <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable)">
  3667. <summary>
  3668. Assert that an array,list or other collection is empty
  3669. </summary>
  3670. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  3671. </member>
  3672. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String,System.Object[])">
  3673. <summary>
  3674. Assert that an array, list or other collection is ordered
  3675. </summary>
  3676. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  3677. <param name="message">The message to be displayed on failure</param>
  3678. <param name="args">Arguments to be used in formatting the message</param>
  3679. </member>
  3680. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String)">
  3681. <summary>
  3682. Assert that an array, list or other collection is ordered
  3683. </summary>
  3684. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  3685. <param name="message">The message to be displayed on failure</param>
  3686. </member>
  3687. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable)">
  3688. <summary>
  3689. Assert that an array, list or other collection is ordered
  3690. </summary>
  3691. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  3692. </member>
  3693. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
  3694. <summary>
  3695. Assert that an array, list or other collection is ordered
  3696. </summary>
  3697. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  3698. <param name="comparer">A custom comparer to perform the comparisons</param>
  3699. <param name="message">The message to be displayed on failure</param>
  3700. <param name="args">Arguments to be used in formatting the message</param>
  3701. </member>
  3702. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
  3703. <summary>
  3704. Assert that an array, list or other collection is ordered
  3705. </summary>
  3706. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  3707. <param name="comparer">A custom comparer to perform the comparisons</param>
  3708. <param name="message">The message to be displayed on failure</param>
  3709. </member>
  3710. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer)">
  3711. <summary>
  3712. Assert that an array, list or other collection is ordered
  3713. </summary>
  3714. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  3715. <param name="comparer">A custom comparer to perform the comparisons</param>
  3716. </member>
  3717. <member name="T:NUnit.Framework.Contains">
  3718. <summary>
  3719. Helper class with properties and methods that supply
  3720. a number of constraints used in Asserts.
  3721. </summary>
  3722. </member>
  3723. <member name="M:NUnit.Framework.Contains.Item(System.Object)">
  3724. <summary>
  3725. Returns a new CollectionContainsConstraint checking for the
  3726. presence of a particular object in the collection.
  3727. </summary>
  3728. </member>
  3729. <member name="M:NUnit.Framework.Contains.Substring(System.String)">
  3730. <summary>
  3731. Returns a constraint that succeeds if the actual
  3732. value contains the substring supplied as an argument.
  3733. </summary>
  3734. </member>
  3735. <member name="T:NUnit.Framework.DirectoryAssert">
  3736. <summary>
  3737. Summary description for DirectoryAssert
  3738. </summary>
  3739. </member>
  3740. <member name="M:NUnit.Framework.DirectoryAssert.Equals(System.Object,System.Object)">
  3741. <summary>
  3742. The Equals method throws an AssertionException. This is done
  3743. to make sure there is no mistake by calling this function.
  3744. </summary>
  3745. <param name="a"></param>
  3746. <param name="b"></param>
  3747. </member>
  3748. <member name="M:NUnit.Framework.DirectoryAssert.ReferenceEquals(System.Object,System.Object)">
  3749. <summary>
  3750. override the default ReferenceEquals to throw an AssertionException. This
  3751. implementation makes sure there is no mistake in calling this function
  3752. as part of Assert.
  3753. </summary>
  3754. <param name="a"></param>
  3755. <param name="b"></param>
  3756. </member>
  3757. <member name="M:NUnit.Framework.DirectoryAssert.#ctor">
  3758. <summary>
  3759. We don't actually want any instances of this object, but some people
  3760. like to inherit from it to add other static methods. Hence, the
  3761. protected constructor disallows any instances of this object.
  3762. </summary>
  3763. </member>
  3764. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
  3765. <summary>
  3766. Verifies that two directories are equal. Two directories are considered
  3767. equal if both are null, or if both have the same value byte for byte.
  3768. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3769. </summary>
  3770. <param name="expected">A directory containing the value that is expected</param>
  3771. <param name="actual">A directory containing the actual value</param>
  3772. <param name="message">The message to display if directories are not equal</param>
  3773. <param name="args">Arguments to be used in formatting the message</param>
  3774. </member>
  3775. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
  3776. <summary>
  3777. Verifies that two directories are equal. Two directories are considered
  3778. equal if both are null, or if both have the same value byte for byte.
  3779. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3780. </summary>
  3781. <param name="expected">A directory containing the value that is expected</param>
  3782. <param name="actual">A directory containing the actual value</param>
  3783. <param name="message">The message to display if directories are not equal</param>
  3784. </member>
  3785. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  3786. <summary>
  3787. Verifies that two directories are equal. Two directories are considered
  3788. equal if both are null, or if both have the same value byte for byte.
  3789. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3790. </summary>
  3791. <param name="expected">A directory containing the value that is expected</param>
  3792. <param name="actual">A directory containing the actual value</param>
  3793. </member>
  3794. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
  3795. <summary>
  3796. Verifies that two directories are equal. Two directories are considered
  3797. equal if both are null, or if both have the same value byte for byte.
  3798. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3799. </summary>
  3800. <param name="expected">A directory path string containing the value that is expected</param>
  3801. <param name="actual">A directory path string containing the actual value</param>
  3802. <param name="message">The message to display if directories are not equal</param>
  3803. <param name="args">Arguments to be used in formatting the message</param>
  3804. </member>
  3805. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String)">
  3806. <summary>
  3807. Verifies that two directories are equal. Two directories are considered
  3808. equal if both are null, or if both have the same value byte for byte.
  3809. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3810. </summary>
  3811. <param name="expected">A directory path string containing the value that is expected</param>
  3812. <param name="actual">A directory path string containing the actual value</param>
  3813. <param name="message">The message to display if directories are not equal</param>
  3814. </member>
  3815. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String)">
  3816. <summary>
  3817. Verifies that two directories are equal. Two directories are considered
  3818. equal if both are null, or if both have the same value byte for byte.
  3819. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3820. </summary>
  3821. <param name="expected">A directory path string containing the value that is expected</param>
  3822. <param name="actual">A directory path string containing the actual value</param>
  3823. </member>
  3824. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
  3825. <summary>
  3826. Asserts that two directories are not equal. If they are equal
  3827. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3828. </summary>
  3829. <param name="expected">A directory containing the value that is expected</param>
  3830. <param name="actual">A directory containing the actual value</param>
  3831. <param name="message">The message to display if directories are not equal</param>
  3832. <param name="args">Arguments to be used in formatting the message</param>
  3833. </member>
  3834. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
  3835. <summary>
  3836. Asserts that two directories are not equal. If they are equal
  3837. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3838. </summary>
  3839. <param name="expected">A directory containing the value that is expected</param>
  3840. <param name="actual">A directory containing the actual value</param>
  3841. <param name="message">The message to display if directories are not equal</param>
  3842. </member>
  3843. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  3844. <summary>
  3845. Asserts that two directories are not equal. If they are equal
  3846. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3847. </summary>
  3848. <param name="expected">A directory containing the value that is expected</param>
  3849. <param name="actual">A directory containing the actual value</param>
  3850. </member>
  3851. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])">
  3852. <summary>
  3853. Asserts that two directories are not equal. If they are equal
  3854. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3855. </summary>
  3856. <param name="expected">A directory path string containing the value that is expected</param>
  3857. <param name="actual">A directory path string containing the actual value</param>
  3858. <param name="message">The message to display if directories are equal</param>
  3859. <param name="args">Arguments to be used in formatting the message</param>
  3860. </member>
  3861. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.String)">
  3862. <summary>
  3863. Asserts that two directories are not equal. If they are equal
  3864. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3865. </summary>
  3866. <param name="expected">A directory path string containing the value that is expected</param>
  3867. <param name="actual">A directory path string containing the actual value</param>
  3868. <param name="message">The message to display if directories are equal</param>
  3869. </member>
  3870. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String)">
  3871. <summary>
  3872. Asserts that two directories are not equal. If they are equal
  3873. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3874. </summary>
  3875. <param name="expected">A directory path string containing the value that is expected</param>
  3876. <param name="actual">A directory path string containing the actual value</param>
  3877. </member>
  3878. <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo,System.String,System.Object[])">
  3879. <summary>
  3880. Asserts that the directory is empty. If it is not empty
  3881. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3882. </summary>
  3883. <param name="directory">A directory to search</param>
  3884. <param name="message">The message to display if directories are not equal</param>
  3885. <param name="args">Arguments to be used in formatting the message</param>
  3886. </member>
  3887. <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo,System.String)">
  3888. <summary>
  3889. Asserts that the directory is empty. If it is not empty
  3890. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3891. </summary>
  3892. <param name="directory">A directory to search</param>
  3893. <param name="message">The message to display if directories are not equal</param>
  3894. </member>
  3895. <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo)">
  3896. <summary>
  3897. Asserts that the directory is empty. If it is not empty
  3898. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3899. </summary>
  3900. <param name="directory">A directory to search</param>
  3901. </member>
  3902. <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String,System.String,System.Object[])">
  3903. <summary>
  3904. Asserts that the directory is empty. If it is not empty
  3905. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3906. </summary>
  3907. <param name="directory">A directory to search</param>
  3908. <param name="message">The message to display if directories are not equal</param>
  3909. <param name="args">Arguments to be used in formatting the message</param>
  3910. </member>
  3911. <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String,System.String)">
  3912. <summary>
  3913. Asserts that the directory is empty. If it is not empty
  3914. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3915. </summary>
  3916. <param name="directory">A directory to search</param>
  3917. <param name="message">The message to display if directories are not equal</param>
  3918. </member>
  3919. <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String)">
  3920. <summary>
  3921. Asserts that the directory is empty. If it is not empty
  3922. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3923. </summary>
  3924. <param name="directory">A directory to search</param>
  3925. </member>
  3926. <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo,System.String,System.Object[])">
  3927. <summary>
  3928. Asserts that the directory is not empty. If it is empty
  3929. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3930. </summary>
  3931. <param name="directory">A directory to search</param>
  3932. <param name="message">The message to display if directories are not equal</param>
  3933. <param name="args">Arguments to be used in formatting the message</param>
  3934. </member>
  3935. <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo,System.String)">
  3936. <summary>
  3937. Asserts that the directory is not empty. If it is empty
  3938. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3939. </summary>
  3940. <param name="directory">A directory to search</param>
  3941. <param name="message">The message to display if directories are not equal</param>
  3942. </member>
  3943. <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo)">
  3944. <summary>
  3945. Asserts that the directory is not empty. If it is empty
  3946. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3947. </summary>
  3948. <param name="directory">A directory to search</param>
  3949. </member>
  3950. <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String,System.String,System.Object[])">
  3951. <summary>
  3952. Asserts that the directory is not empty. If it is empty
  3953. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3954. </summary>
  3955. <param name="directory">A directory to search</param>
  3956. <param name="message">The message to display if directories are not equal</param>
  3957. <param name="args">Arguments to be used in formatting the message</param>
  3958. </member>
  3959. <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String,System.String)">
  3960. <summary>
  3961. Asserts that the directory is not empty. If it is empty
  3962. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3963. </summary>
  3964. <param name="directory">A directory to search</param>
  3965. <param name="message">The message to display if directories are not equal</param>
  3966. </member>
  3967. <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String)">
  3968. <summary>
  3969. Asserts that the directory is not empty. If it is empty
  3970. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3971. </summary>
  3972. <param name="directory">A directory to search</param>
  3973. </member>
  3974. <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
  3975. <summary>
  3976. Asserts that path contains actual as a subdirectory or
  3977. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3978. </summary>
  3979. <param name="directory">A directory to search</param>
  3980. <param name="actual">sub-directory asserted to exist under directory</param>
  3981. <param name="message">The message to display if directory is not within the path</param>
  3982. <param name="args">Arguments to be used in formatting the message</param>
  3983. </member>
  3984. <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
  3985. <summary>
  3986. Asserts that path contains actual as a subdirectory or
  3987. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3988. </summary>
  3989. <param name="directory">A directory to search</param>
  3990. <param name="actual">sub-directory asserted to exist under directory</param>
  3991. <param name="message">The message to display if directory is not within the path</param>
  3992. </member>
  3993. <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  3994. <summary>
  3995. Asserts that path contains actual as a subdirectory or
  3996. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3997. </summary>
  3998. <param name="directory">A directory to search</param>
  3999. <param name="actual">sub-directory asserted to exist under directory</param>
  4000. </member>
  4001. <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String,System.String,System.Object[])">
  4002. <summary>
  4003. Asserts that path contains actual as a subdirectory or
  4004. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4005. </summary>
  4006. <param name="directory">A directory to search</param>
  4007. <param name="actual">sub-directory asserted to exist under directory</param>
  4008. <param name="message">The message to display if directory is not within the path</param>
  4009. <param name="args">Arguments to be used in formatting the message</param>
  4010. </member>
  4011. <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String,System.String)">
  4012. <summary>
  4013. Asserts that path contains actual as a subdirectory or
  4014. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4015. </summary>
  4016. <param name="directory">A directory to search</param>
  4017. <param name="actual">sub-directory asserted to exist under directory</param>
  4018. <param name="message">The message to display if directory is not within the path</param>
  4019. </member>
  4020. <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String)">
  4021. <summary>
  4022. Asserts that path contains actual as a subdirectory or
  4023. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4024. </summary>
  4025. <param name="directory">A directory to search</param>
  4026. <param name="actual">sub-directory asserted to exist under directory</param>
  4027. </member>
  4028. <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
  4029. <summary>
  4030. Asserts that path does not contain actual as a subdirectory or
  4031. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4032. </summary>
  4033. <param name="directory">A directory to search</param>
  4034. <param name="actual">sub-directory asserted to exist under directory</param>
  4035. <param name="message">The message to display if directory is not within the path</param>
  4036. <param name="args">Arguments to be used in formatting the message</param>
  4037. </member>
  4038. <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
  4039. <summary>
  4040. Asserts that path does not contain actual as a subdirectory or
  4041. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4042. </summary>
  4043. <param name="directory">A directory to search</param>
  4044. <param name="actual">sub-directory asserted to exist under directory</param>
  4045. <param name="message">The message to display if directory is not within the path</param>
  4046. </member>
  4047. <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  4048. <summary>
  4049. Asserts that path does not contain actual as a subdirectory or
  4050. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4051. </summary>
  4052. <param name="directory">A directory to search</param>
  4053. <param name="actual">sub-directory asserted to exist under directory</param>
  4054. </member>
  4055. <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String,System.String,System.Object[])">
  4056. <summary>
  4057. Asserts that path does not contain actual as a subdirectory or
  4058. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4059. </summary>
  4060. <param name="directory">A directory to search</param>
  4061. <param name="actual">sub-directory asserted to exist under directory</param>
  4062. <param name="message">The message to display if directory is not within the path</param>
  4063. <param name="args">Arguments to be used in formatting the message</param>
  4064. </member>
  4065. <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String,System.String)">
  4066. <summary>
  4067. Asserts that path does not contain actual as a subdirectory or
  4068. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4069. </summary>
  4070. <param name="directory">A directory to search</param>
  4071. <param name="actual">sub-directory asserted to exist under directory</param>
  4072. <param name="message">The message to display if directory is not within the path</param>
  4073. </member>
  4074. <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String)">
  4075. <summary>
  4076. Asserts that path does not contain actual as a subdirectory or
  4077. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4078. </summary>
  4079. <param name="directory">A directory to search</param>
  4080. <param name="actual">sub-directory asserted to exist under directory</param>
  4081. </member>
  4082. <member name="T:NUnit.Framework.FileAssert">
  4083. <summary>
  4084. Summary description for FileAssert.
  4085. </summary>
  4086. </member>
  4087. <member name="M:NUnit.Framework.FileAssert.Equals(System.Object,System.Object)">
  4088. <summary>
  4089. The Equals method throws an AssertionException. This is done
  4090. to make sure there is no mistake by calling this function.
  4091. </summary>
  4092. <param name="a"></param>
  4093. <param name="b"></param>
  4094. </member>
  4095. <member name="M:NUnit.Framework.FileAssert.ReferenceEquals(System.Object,System.Object)">
  4096. <summary>
  4097. override the default ReferenceEquals to throw an AssertionException. This
  4098. implementation makes sure there is no mistake in calling this function
  4099. as part of Assert.
  4100. </summary>
  4101. <param name="a"></param>
  4102. <param name="b"></param>
  4103. </member>
  4104. <member name="M:NUnit.Framework.FileAssert.#ctor">
  4105. <summary>
  4106. We don't actually want any instances of this object, but some people
  4107. like to inherit from it to add other static methods. Hence, the
  4108. protected constructor disallows any instances of this object.
  4109. </summary>
  4110. </member>
  4111. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
  4112. <summary>
  4113. Verifies that two Streams are equal. Two Streams are considered
  4114. equal if both are null, or if both have the same value byte for byte.
  4115. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4116. </summary>
  4117. <param name="expected">The expected Stream</param>
  4118. <param name="actual">The actual Stream</param>
  4119. <param name="message">The message to display if Streams are not equal</param>
  4120. <param name="args">Arguments to be used in formatting the message</param>
  4121. </member>
  4122. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String)">
  4123. <summary>
  4124. Verifies that two Streams are equal. Two Streams are considered
  4125. equal if both are null, or if both have the same value byte for byte.
  4126. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4127. </summary>
  4128. <param name="expected">The expected Stream</param>
  4129. <param name="actual">The actual Stream</param>
  4130. <param name="message">The message to display if objects are not equal</param>
  4131. </member>
  4132. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream)">
  4133. <summary>
  4134. Verifies that two Streams are equal. Two Streams are considered
  4135. equal if both are null, or if both have the same value byte for byte.
  4136. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4137. </summary>
  4138. <param name="expected">The expected Stream</param>
  4139. <param name="actual">The actual Stream</param>
  4140. </member>
  4141. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
  4142. <summary>
  4143. Verifies that two files are equal. Two files are considered
  4144. equal if both are null, or if both have the same value byte for byte.
  4145. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4146. </summary>
  4147. <param name="expected">A file containing the value that is expected</param>
  4148. <param name="actual">A file containing the actual value</param>
  4149. <param name="message">The message to display if Streams are not equal</param>
  4150. <param name="args">Arguments to be used in formatting the message</param>
  4151. </member>
  4152. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
  4153. <summary>
  4154. Verifies that two files are equal. Two files are considered
  4155. equal if both are null, or if both have the same value byte for byte.
  4156. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4157. </summary>
  4158. <param name="expected">A file containing the value that is expected</param>
  4159. <param name="actual">A file containing the actual value</param>
  4160. <param name="message">The message to display if objects are not equal</param>
  4161. </member>
  4162. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo)">
  4163. <summary>
  4164. Verifies that two files are equal. Two files are considered
  4165. equal if both are null, or if both have the same value byte for byte.
  4166. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4167. </summary>
  4168. <param name="expected">A file containing the value that is expected</param>
  4169. <param name="actual">A file containing the actual value</param>
  4170. </member>
  4171. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
  4172. <summary>
  4173. Verifies that two files are equal. Two files are considered
  4174. equal if both are null, or if both have the same value byte for byte.
  4175. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4176. </summary>
  4177. <param name="expected">The path to a file containing the value that is expected</param>
  4178. <param name="actual">The path to a file containing the actual value</param>
  4179. <param name="message">The message to display if Streams are not equal</param>
  4180. <param name="args">Arguments to be used in formatting the message</param>
  4181. </member>
  4182. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String)">
  4183. <summary>
  4184. Verifies that two files are equal. Two files are considered
  4185. equal if both are null, or if both have the same value byte for byte.
  4186. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4187. </summary>
  4188. <param name="expected">The path to a file containing the value that is expected</param>
  4189. <param name="actual">The path to a file containing the actual value</param>
  4190. <param name="message">The message to display if objects are not equal</param>
  4191. </member>
  4192. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String)">
  4193. <summary>
  4194. Verifies that two files are equal. Two files are considered
  4195. equal if both are null, or if both have the same value byte for byte.
  4196. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4197. </summary>
  4198. <param name="expected">The path to a file containing the value that is expected</param>
  4199. <param name="actual">The path to a file containing the actual value</param>
  4200. </member>
  4201. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
  4202. <summary>
  4203. Asserts that two Streams are not equal. If they are equal
  4204. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4205. </summary>
  4206. <param name="expected">The expected Stream</param>
  4207. <param name="actual">The actual Stream</param>
  4208. <param name="message">The message to be displayed when the two Stream are the same.</param>
  4209. <param name="args">Arguments to be used in formatting the message</param>
  4210. </member>
  4211. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String)">
  4212. <summary>
  4213. Asserts that two Streams are not equal. If they are equal
  4214. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4215. </summary>
  4216. <param name="expected">The expected Stream</param>
  4217. <param name="actual">The actual Stream</param>
  4218. <param name="message">The message to be displayed when the Streams are the same.</param>
  4219. </member>
  4220. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream)">
  4221. <summary>
  4222. Asserts that two Streams are not equal. If they are equal
  4223. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4224. </summary>
  4225. <param name="expected">The expected Stream</param>
  4226. <param name="actual">The actual Stream</param>
  4227. </member>
  4228. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
  4229. <summary>
  4230. Asserts that two files are not equal. If they are equal
  4231. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4232. </summary>
  4233. <param name="expected">A file containing the value that is expected</param>
  4234. <param name="actual">A file containing the actual value</param>
  4235. <param name="message">The message to display if Streams are not equal</param>
  4236. <param name="args">Arguments to be used in formatting the message</param>
  4237. </member>
  4238. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
  4239. <summary>
  4240. Asserts that two files are not equal. If they are equal
  4241. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4242. </summary>
  4243. <param name="expected">A file containing the value that is expected</param>
  4244. <param name="actual">A file containing the actual value</param>
  4245. <param name="message">The message to display if objects are not equal</param>
  4246. </member>
  4247. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo)">
  4248. <summary>
  4249. Asserts that two files are not equal. If they are equal
  4250. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4251. </summary>
  4252. <param name="expected">A file containing the value that is expected</param>
  4253. <param name="actual">A file containing the actual value</param>
  4254. </member>
  4255. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])">
  4256. <summary>
  4257. Asserts that two files are not equal. If they are equal
  4258. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4259. </summary>
  4260. <param name="expected">The path to a file containing the value that is expected</param>
  4261. <param name="actual">The path to a file containing the actual value</param>
  4262. <param name="message">The message to display if Streams are not equal</param>
  4263. <param name="args">Arguments to be used in formatting the message</param>
  4264. </member>
  4265. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String)">
  4266. <summary>
  4267. Asserts that two files are not equal. If they are equal
  4268. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4269. </summary>
  4270. <param name="expected">The path to a file containing the value that is expected</param>
  4271. <param name="actual">The path to a file containing the actual value</param>
  4272. <param name="message">The message to display if objects are not equal</param>
  4273. </member>
  4274. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String)">
  4275. <summary>
  4276. Asserts that two files are not equal. If they are equal
  4277. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4278. </summary>
  4279. <param name="expected">The path to a file containing the value that is expected</param>
  4280. <param name="actual">The path to a file containing the actual value</param>
  4281. </member>
  4282. <member name="T:NUnit.Framework.GlobalSettings">
  4283. <summary>
  4284. GlobalSettings is a place for setting default values used
  4285. by the framework in performing asserts.
  4286. </summary>
  4287. </member>
  4288. <member name="F:NUnit.Framework.GlobalSettings.DefaultFloatingPointTolerance">
  4289. <summary>
  4290. Default tolerance for floating point equality
  4291. </summary>
  4292. </member>
  4293. <member name="T:NUnit.Framework.Guard">
  4294. <summary>
  4295. Class used to guard against unexpected argument values
  4296. by throwing an appropriate exception.
  4297. </summary>
  4298. </member>
  4299. <member name="M:NUnit.Framework.Guard.ArgumentNotNull(System.Object,System.String)">
  4300. <summary>
  4301. Throws an exception if an argument is null
  4302. </summary>
  4303. <param name="value">The value to be tested</param>
  4304. <param name="name">The name of the argument</param>
  4305. </member>
  4306. <member name="M:NUnit.Framework.Guard.ArgumentNotNullOrEmpty(System.String,System.String)">
  4307. <summary>
  4308. Throws an exception if a string argument is null or empty
  4309. </summary>
  4310. <param name="value">The value to be tested</param>
  4311. <param name="name">The name of the argument</param>
  4312. </member>
  4313. <member name="T:NUnit.Framework.Has">
  4314. <summary>
  4315. Helper class with properties and methods that supply
  4316. a number of constraints used in Asserts.
  4317. </summary>
  4318. </member>
  4319. <member name="M:NUnit.Framework.Has.Exactly(System.Int32)">
  4320. <summary>
  4321. Returns a ConstraintExpression, which will apply
  4322. the following constraint to all members of a collection,
  4323. succeeding only if a specified number of them succeed.
  4324. </summary>
  4325. </member>
  4326. <member name="M:NUnit.Framework.Has.Property(System.String)">
  4327. <summary>
  4328. Returns a new PropertyConstraintExpression, which will either
  4329. test for the existence of the named property on the object
  4330. being tested or apply any following constraint to that property.
  4331. </summary>
  4332. </member>
  4333. <member name="M:NUnit.Framework.Has.Attribute(System.Type)">
  4334. <summary>
  4335. Returns a new AttributeConstraint checking for the
  4336. presence of a particular attribute on an object.
  4337. </summary>
  4338. </member>
  4339. <member name="M:NUnit.Framework.Has.Attribute``1">
  4340. <summary>
  4341. Returns a new AttributeConstraint checking for the
  4342. presence of a particular attribute on an object.
  4343. </summary>
  4344. </member>
  4345. <member name="M:NUnit.Framework.Has.Member(System.Object)">
  4346. <summary>
  4347. Returns a new CollectionContainsConstraint checking for the
  4348. presence of a particular object in the collection.
  4349. </summary>
  4350. </member>
  4351. <member name="P:NUnit.Framework.Has.No">
  4352. <summary>
  4353. Returns a ConstraintExpression that negates any
  4354. following constraint.
  4355. </summary>
  4356. </member>
  4357. <member name="P:NUnit.Framework.Has.All">
  4358. <summary>
  4359. Returns a ConstraintExpression, which will apply
  4360. the following constraint to all members of a collection,
  4361. succeeding if all of them succeed.
  4362. </summary>
  4363. </member>
  4364. <member name="P:NUnit.Framework.Has.Some">
  4365. <summary>
  4366. Returns a ConstraintExpression, which will apply
  4367. the following constraint to all members of a collection,
  4368. succeeding if at least one of them succeeds.
  4369. </summary>
  4370. </member>
  4371. <member name="P:NUnit.Framework.Has.None">
  4372. <summary>
  4373. Returns a ConstraintExpression, which will apply
  4374. the following constraint to all members of a collection,
  4375. succeeding if all of them fail.
  4376. </summary>
  4377. </member>
  4378. <member name="P:NUnit.Framework.Has.Length">
  4379. <summary>
  4380. Returns a new ConstraintExpression, which will apply the following
  4381. constraint to the Length property of the object being tested.
  4382. </summary>
  4383. </member>
  4384. <member name="P:NUnit.Framework.Has.Count">
  4385. <summary>
  4386. Returns a new ConstraintExpression, which will apply the following
  4387. constraint to the Count property of the object being tested.
  4388. </summary>
  4389. </member>
  4390. <member name="P:NUnit.Framework.Has.Message">
  4391. <summary>
  4392. Returns a new ConstraintExpression, which will apply the following
  4393. constraint to the Message property of the object being tested.
  4394. </summary>
  4395. </member>
  4396. <member name="P:NUnit.Framework.Has.InnerException">
  4397. <summary>
  4398. Returns a new ConstraintExpression, which will apply the following
  4399. constraint to the InnerException property of the object being tested.
  4400. </summary>
  4401. </member>
  4402. <member name="T:NUnit.Framework.IExpectException">
  4403. <summary>
  4404. Interface implemented by a user fixture in order to
  4405. validate any expected exceptions. It is only called
  4406. for test methods marked with the ExpectedException
  4407. attribute.
  4408. </summary>
  4409. </member>
  4410. <member name="M:NUnit.Framework.IExpectException.HandleException(System.Exception)">
  4411. <summary>
  4412. Method to handle an expected exception
  4413. </summary>
  4414. <param name="ex">The exception to be handled</param>
  4415. </member>
  4416. <member name="T:NUnit.Framework.Is">
  4417. <summary>
  4418. Helper class with properties and methods that supply
  4419. a number of constraints used in Asserts.
  4420. </summary>
  4421. </member>
  4422. <member name="M:NUnit.Framework.Is.EqualTo(System.Object)">
  4423. <summary>
  4424. Returns a constraint that tests two items for equality
  4425. </summary>
  4426. </member>
  4427. <member name="M:NUnit.Framework.Is.SameAs(System.Object)">
  4428. <summary>
  4429. Returns a constraint that tests that two references are the same object
  4430. </summary>
  4431. </member>
  4432. <member name="M:NUnit.Framework.Is.GreaterThan(System.Object)">
  4433. <summary>
  4434. Returns a constraint that tests whether the
  4435. actual value is greater than the suppled argument
  4436. </summary>
  4437. </member>
  4438. <member name="M:NUnit.Framework.Is.GreaterThanOrEqualTo(System.Object)">
  4439. <summary>
  4440. Returns a constraint that tests whether the
  4441. actual value is greater than or equal to the suppled argument
  4442. </summary>
  4443. </member>
  4444. <member name="M:NUnit.Framework.Is.AtLeast(System.Object)">
  4445. <summary>
  4446. Returns a constraint that tests whether the
  4447. actual value is greater than or equal to the suppled argument
  4448. </summary>
  4449. </member>
  4450. <member name="M:NUnit.Framework.Is.LessThan(System.Object)">
  4451. <summary>
  4452. Returns a constraint that tests whether the
  4453. actual value is less than the suppled argument
  4454. </summary>
  4455. </member>
  4456. <member name="M:NUnit.Framework.Is.LessThanOrEqualTo(System.Object)">
  4457. <summary>
  4458. Returns a constraint that tests whether the
  4459. actual value is less than or equal to the suppled argument
  4460. </summary>
  4461. </member>
  4462. <member name="M:NUnit.Framework.Is.AtMost(System.Object)">
  4463. <summary>
  4464. Returns a constraint that tests whether the
  4465. actual value is less than or equal to the suppled argument
  4466. </summary>
  4467. </member>
  4468. <member name="M:NUnit.Framework.Is.TypeOf(System.Type)">
  4469. <summary>
  4470. Returns a constraint that tests whether the actual
  4471. value is of the exact type supplied as an argument.
  4472. </summary>
  4473. </member>
  4474. <member name="M:NUnit.Framework.Is.TypeOf``1">
  4475. <summary>
  4476. Returns a constraint that tests whether the actual
  4477. value is of the exact type supplied as an argument.
  4478. </summary>
  4479. </member>
  4480. <member name="M:NUnit.Framework.Is.InstanceOf(System.Type)">
  4481. <summary>
  4482. Returns a constraint that tests whether the actual value
  4483. is of the type supplied as an argument or a derived type.
  4484. </summary>
  4485. </member>
  4486. <member name="M:NUnit.Framework.Is.InstanceOf``1">
  4487. <summary>
  4488. Returns a constraint that tests whether the actual value
  4489. is of the type supplied as an argument or a derived type.
  4490. </summary>
  4491. </member>
  4492. <member name="M:NUnit.Framework.Is.InstanceOfType(System.Type)">
  4493. <summary>
  4494. Returns a constraint that tests whether the actual value
  4495. is of the type supplied as an argument or a derived type.
  4496. </summary>
  4497. </member>
  4498. <member name="M:NUnit.Framework.Is.InstanceOfType``1">
  4499. <summary>
  4500. Returns a constraint that tests whether the actual value
  4501. is of the type supplied as an argument or a derived type.
  4502. </summary>
  4503. </member>
  4504. <member name="M:NUnit.Framework.Is.AssignableFrom(System.Type)">
  4505. <summary>
  4506. Returns a constraint that tests whether the actual value
  4507. is assignable from the type supplied as an argument.
  4508. </summary>
  4509. </member>
  4510. <member name="M:NUnit.Framework.Is.AssignableFrom``1">
  4511. <summary>
  4512. Returns a constraint that tests whether the actual value
  4513. is assignable from the type supplied as an argument.
  4514. </summary>
  4515. </member>
  4516. <member name="M:NUnit.Framework.Is.AssignableTo(System.Type)">
  4517. <summary>
  4518. Returns a constraint that tests whether the actual value
  4519. is assignable from the type supplied as an argument.
  4520. </summary>
  4521. </member>
  4522. <member name="M:NUnit.Framework.Is.AssignableTo``1">
  4523. <summary>
  4524. Returns a constraint that tests whether the actual value
  4525. is assignable from the type supplied as an argument.
  4526. </summary>
  4527. </member>
  4528. <member name="M:NUnit.Framework.Is.EquivalentTo(System.Collections.IEnumerable)">
  4529. <summary>
  4530. Returns a constraint that tests whether the actual value
  4531. is a collection containing the same elements as the
  4532. collection supplied as an argument.
  4533. </summary>
  4534. </member>
  4535. <member name="M:NUnit.Framework.Is.SubsetOf(System.Collections.IEnumerable)">
  4536. <summary>
  4537. Returns a constraint that tests whether the actual value
  4538. is a subset of the collection supplied as an argument.
  4539. </summary>
  4540. </member>
  4541. <member name="M:NUnit.Framework.Is.StringContaining(System.String)">
  4542. <summary>
  4543. Returns a constraint that succeeds if the actual
  4544. value contains the substring supplied as an argument.
  4545. </summary>
  4546. </member>
  4547. <member name="M:NUnit.Framework.Is.StringStarting(System.String)">
  4548. <summary>
  4549. Returns a constraint that succeeds if the actual
  4550. value starts with the substring supplied as an argument.
  4551. </summary>
  4552. </member>
  4553. <member name="M:NUnit.Framework.Is.StringEnding(System.String)">
  4554. <summary>
  4555. Returns a constraint that succeeds if the actual
  4556. value ends with the substring supplied as an argument.
  4557. </summary>
  4558. </member>
  4559. <member name="M:NUnit.Framework.Is.StringMatching(System.String)">
  4560. <summary>
  4561. Returns a constraint that succeeds if the actual
  4562. value matches the regular expression supplied as an argument.
  4563. </summary>
  4564. </member>
  4565. <member name="M:NUnit.Framework.Is.SamePath(System.String)">
  4566. <summary>
  4567. Returns a constraint that tests whether the path provided
  4568. is the same as an expected path after canonicalization.
  4569. </summary>
  4570. </member>
  4571. <member name="M:NUnit.Framework.Is.SubPath(System.String)">
  4572. <summary>
  4573. Returns a constraint that tests whether the path provided
  4574. is under an expected path after canonicalization.
  4575. </summary>
  4576. </member>
  4577. <member name="M:NUnit.Framework.Is.SamePathOrUnder(System.String)">
  4578. <summary>
  4579. Returns a constraint that tests whether the path provided
  4580. is the same path or under an expected path after canonicalization.
  4581. </summary>
  4582. </member>
  4583. <member name="M:NUnit.Framework.Is.InRange``1(``0,``0)">
  4584. <summary>
  4585. Returns a constraint that tests whether the actual value falls
  4586. within a specified range.
  4587. </summary>
  4588. </member>
  4589. <member name="P:NUnit.Framework.Is.Not">
  4590. <summary>
  4591. Returns a ConstraintExpression that negates any
  4592. following constraint.
  4593. </summary>
  4594. </member>
  4595. <member name="P:NUnit.Framework.Is.All">
  4596. <summary>
  4597. Returns a ConstraintExpression, which will apply
  4598. the following constraint to all members of a collection,
  4599. succeeding if all of them succeed.
  4600. </summary>
  4601. </member>
  4602. <member name="P:NUnit.Framework.Is.Null">
  4603. <summary>
  4604. Returns a constraint that tests for null
  4605. </summary>
  4606. </member>
  4607. <member name="P:NUnit.Framework.Is.True">
  4608. <summary>
  4609. Returns a constraint that tests for True
  4610. </summary>
  4611. </member>
  4612. <member name="P:NUnit.Framework.Is.False">
  4613. <summary>
  4614. Returns a constraint that tests for False
  4615. </summary>
  4616. </member>
  4617. <member name="P:NUnit.Framework.Is.Positive">
  4618. <summary>
  4619. Returns a constraint that tests for a positive value
  4620. </summary>
  4621. </member>
  4622. <member name="P:NUnit.Framework.Is.Negative">
  4623. <summary>
  4624. Returns a constraint that tests for a negative value
  4625. </summary>
  4626. </member>
  4627. <member name="P:NUnit.Framework.Is.NaN">
  4628. <summary>
  4629. Returns a constraint that tests for NaN
  4630. </summary>
  4631. </member>
  4632. <member name="P:NUnit.Framework.Is.Empty">
  4633. <summary>
  4634. Returns a constraint that tests for empty
  4635. </summary>
  4636. </member>
  4637. <member name="P:NUnit.Framework.Is.Unique">
  4638. <summary>
  4639. Returns a constraint that tests whether a collection
  4640. contains all unique items.
  4641. </summary>
  4642. </member>
  4643. <member name="P:NUnit.Framework.Is.BinarySerializable">
  4644. <summary>
  4645. Returns a constraint that tests whether an object graph is serializable in binary format.
  4646. </summary>
  4647. </member>
  4648. <member name="P:NUnit.Framework.Is.XmlSerializable">
  4649. <summary>
  4650. Returns a constraint that tests whether an object graph is serializable in xml format.
  4651. </summary>
  4652. </member>
  4653. <member name="P:NUnit.Framework.Is.Ordered">
  4654. <summary>
  4655. Returns a constraint that tests whether a collection is ordered
  4656. </summary>
  4657. </member>
  4658. <member name="T:NUnit.Framework.ITestCaseData">
  4659. <summary>
  4660. The ITestCaseData interface is implemented by a class
  4661. that is able to return complete testcases for use by
  4662. a parameterized test method.
  4663. NOTE: This interface is used in both the framework
  4664. and the core, even though that results in two different
  4665. types. However, sharing the source code guarantees that
  4666. the various implementations will be compatible and that
  4667. the core is able to reflect successfully over the
  4668. framework implementations of ITestCaseData.
  4669. </summary>
  4670. </member>
  4671. <member name="P:NUnit.Framework.ITestCaseData.Arguments">
  4672. <summary>
  4673. Gets the argument list to be provided to the test
  4674. </summary>
  4675. </member>
  4676. <member name="P:NUnit.Framework.ITestCaseData.Result">
  4677. <summary>
  4678. Gets the expected result
  4679. </summary>
  4680. </member>
  4681. <member name="P:NUnit.Framework.ITestCaseData.HasExpectedResult">
  4682. <summary>
  4683. Indicates whether a result has been specified.
  4684. This is necessary because the result may be
  4685. null, so it's value cannot be checked.
  4686. </summary>
  4687. </member>
  4688. <member name="P:NUnit.Framework.ITestCaseData.ExpectedException">
  4689. <summary>
  4690. Gets the expected exception Type
  4691. </summary>
  4692. </member>
  4693. <member name="P:NUnit.Framework.ITestCaseData.ExpectedExceptionName">
  4694. <summary>
  4695. Gets the FullName of the expected exception
  4696. </summary>
  4697. </member>
  4698. <member name="P:NUnit.Framework.ITestCaseData.TestName">
  4699. <summary>
  4700. Gets the name to be used for the test
  4701. </summary>
  4702. </member>
  4703. <member name="P:NUnit.Framework.ITestCaseData.Description">
  4704. <summary>
  4705. Gets the description of the test
  4706. </summary>
  4707. </member>
  4708. <member name="P:NUnit.Framework.ITestCaseData.Ignored">
  4709. <summary>
  4710. Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
  4711. </summary>
  4712. <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
  4713. </member>
  4714. <member name="P:NUnit.Framework.ITestCaseData.Explicit">
  4715. <summary>
  4716. Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is explicit.
  4717. </summary>
  4718. <value><c>true</c> if explicit; otherwise, <c>false</c>.</value>
  4719. </member>
  4720. <member name="P:NUnit.Framework.ITestCaseData.IgnoreReason">
  4721. <summary>
  4722. Gets the ignore reason.
  4723. </summary>
  4724. <value>The ignore reason.</value>
  4725. </member>
  4726. <member name="T:NUnit.Framework.Iz">
  4727. <summary>
  4728. The Iz class is a synonym for Is intended for use in VB,
  4729. which regards Is as a keyword.
  4730. </summary>
  4731. </member>
  4732. <member name="T:NUnit.Framework.List">
  4733. <summary>
  4734. The List class is a helper class with properties and methods
  4735. that supply a number of constraints used with lists and collections.
  4736. </summary>
  4737. </member>
  4738. <member name="M:NUnit.Framework.List.Map(System.Collections.ICollection)">
  4739. <summary>
  4740. List.Map returns a ListMapper, which can be used to map
  4741. the original collection to another collection.
  4742. </summary>
  4743. <param name="actual"></param>
  4744. <returns></returns>
  4745. </member>
  4746. <member name="T:NUnit.Framework.ListMapper">
  4747. <summary>
  4748. ListMapper is used to transform a collection used as an actual argument
  4749. producing another collection to be used in the assertion.
  4750. </summary>
  4751. </member>
  4752. <member name="M:NUnit.Framework.ListMapper.#ctor(System.Collections.ICollection)">
  4753. <summary>
  4754. Construct a ListMapper based on a collection
  4755. </summary>
  4756. <param name="original">The collection to be transformed</param>
  4757. </member>
  4758. <member name="M:NUnit.Framework.ListMapper.Property(System.String)">
  4759. <summary>
  4760. Produces a collection containing all the values of a property
  4761. </summary>
  4762. <param name="name">The collection of property values</param>
  4763. <returns></returns>
  4764. </member>
  4765. <member name="T:NUnit.Framework.Randomizer">
  4766. <summary>
  4767. Randomizer returns a set of random values in a repeatable
  4768. way, to allow re-running of tests if necessary.
  4769. </summary>
  4770. </member>
  4771. <member name="M:NUnit.Framework.Randomizer.GetRandomizer(System.Reflection.MemberInfo)">
  4772. <summary>
  4773. Get a randomizer for a particular member, returning
  4774. one that has already been created if it exists.
  4775. This ensures that the same values are generated
  4776. each time the tests are reloaded.
  4777. </summary>
  4778. </member>
  4779. <member name="M:NUnit.Framework.Randomizer.GetRandomizer(System.Reflection.ParameterInfo)">
  4780. <summary>
  4781. Get a randomizer for a particular parameter, returning
  4782. one that has already been created if it exists.
  4783. This ensures that the same values are generated
  4784. each time the tests are reloaded.
  4785. </summary>
  4786. </member>
  4787. <member name="M:NUnit.Framework.Randomizer.#ctor">
  4788. <summary>
  4789. Construct a randomizer using a random seed
  4790. </summary>
  4791. </member>
  4792. <member name="M:NUnit.Framework.Randomizer.#ctor(System.Int32)">
  4793. <summary>
  4794. Construct a randomizer using a specified seed
  4795. </summary>
  4796. </member>
  4797. <member name="M:NUnit.Framework.Randomizer.GetDoubles(System.Int32)">
  4798. <summary>
  4799. Return an array of random doubles between 0.0 and 1.0.
  4800. </summary>
  4801. <param name="count"></param>
  4802. <returns></returns>
  4803. </member>
  4804. <member name="M:NUnit.Framework.Randomizer.GetDoubles(System.Double,System.Double,System.Int32)">
  4805. <summary>
  4806. Return an array of random doubles with values in a specified range.
  4807. </summary>
  4808. </member>
  4809. <member name="M:NUnit.Framework.Randomizer.GetInts(System.Int32,System.Int32,System.Int32)">
  4810. <summary>
  4811. Return an array of random ints with values in a specified range.
  4812. </summary>
  4813. </member>
  4814. <member name="P:NUnit.Framework.Randomizer.RandomSeed">
  4815. <summary>
  4816. Get a random seed for use in creating a randomizer.
  4817. </summary>
  4818. </member>
  4819. <member name="T:NUnit.Framework.SpecialValue">
  4820. <summary>
  4821. The SpecialValue enum is used to represent TestCase arguments
  4822. that cannot be used as arguments to an Attribute.
  4823. </summary>
  4824. </member>
  4825. <member name="F:NUnit.Framework.SpecialValue.Null">
  4826. <summary>
  4827. Null represents a null value, which cannot be used as an
  4828. argument to an attribute under .NET 1.x
  4829. </summary>
  4830. </member>
  4831. <member name="T:NUnit.Framework.StringAssert">
  4832. <summary>
  4833. Basic Asserts on strings.
  4834. </summary>
  4835. </member>
  4836. <member name="M:NUnit.Framework.StringAssert.Equals(System.Object,System.Object)">
  4837. <summary>
  4838. The Equals method throws an AssertionException. This is done
  4839. to make sure there is no mistake by calling this function.
  4840. </summary>
  4841. <param name="a"></param>
  4842. <param name="b"></param>
  4843. </member>
  4844. <member name="M:NUnit.Framework.StringAssert.ReferenceEquals(System.Object,System.Object)">
  4845. <summary>
  4846. override the default ReferenceEquals to throw an AssertionException. This
  4847. implementation makes sure there is no mistake in calling this function
  4848. as part of Assert.
  4849. </summary>
  4850. <param name="a"></param>
  4851. <param name="b"></param>
  4852. </member>
  4853. <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String,System.Object[])">
  4854. <summary>
  4855. Asserts that a string is found within another string.
  4856. </summary>
  4857. <param name="expected">The expected string</param>
  4858. <param name="actual">The string to be examined</param>
  4859. <param name="message">The message to display in case of failure</param>
  4860. <param name="args">Arguments used in formatting the message</param>
  4861. </member>
  4862. <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String)">
  4863. <summary>
  4864. Asserts that a string is found within another string.
  4865. </summary>
  4866. <param name="expected">The expected string</param>
  4867. <param name="actual">The string to be examined</param>
  4868. <param name="message">The message to display in case of failure</param>
  4869. </member>
  4870. <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String)">
  4871. <summary>
  4872. Asserts that a string is found within another string.
  4873. </summary>
  4874. <param name="expected">The expected string</param>
  4875. <param name="actual">The string to be examined</param>
  4876. </member>
  4877. <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String,System.Object[])">
  4878. <summary>
  4879. Asserts that a string is not found within another string.
  4880. </summary>
  4881. <param name="expected">The expected string</param>
  4882. <param name="actual">The string to be examined</param>
  4883. <param name="message">The message to display in case of failure</param>
  4884. <param name="args">Arguments used in formatting the message</param>
  4885. </member>
  4886. <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String)">
  4887. <summary>
  4888. Asserts that a string is found within another string.
  4889. </summary>
  4890. <param name="expected">The expected string</param>
  4891. <param name="actual">The string to be examined</param>
  4892. <param name="message">The message to display in case of failure</param>
  4893. </member>
  4894. <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String)">
  4895. <summary>
  4896. Asserts that a string is found within another string.
  4897. </summary>
  4898. <param name="expected">The expected string</param>
  4899. <param name="actual">The string to be examined</param>
  4900. </member>
  4901. <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String,System.Object[])">
  4902. <summary>
  4903. Asserts that a string starts with another string.
  4904. </summary>
  4905. <param name="expected">The expected string</param>
  4906. <param name="actual">The string to be examined</param>
  4907. <param name="message">The message to display in case of failure</param>
  4908. <param name="args">Arguments used in formatting the message</param>
  4909. </member>
  4910. <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String)">
  4911. <summary>
  4912. Asserts that a string starts with another string.
  4913. </summary>
  4914. <param name="expected">The expected string</param>
  4915. <param name="actual">The string to be examined</param>
  4916. <param name="message">The message to display in case of failure</param>
  4917. </member>
  4918. <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String)">
  4919. <summary>
  4920. Asserts that a string starts with another string.
  4921. </summary>
  4922. <param name="expected">The expected string</param>
  4923. <param name="actual">The string to be examined</param>
  4924. </member>
  4925. <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String,System.Object[])">
  4926. <summary>
  4927. Asserts that a string does not start with another string.
  4928. </summary>
  4929. <param name="expected">The expected string</param>
  4930. <param name="actual">The string to be examined</param>
  4931. <param name="message">The message to display in case of failure</param>
  4932. <param name="args">Arguments used in formatting the message</param>
  4933. </member>
  4934. <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String)">
  4935. <summary>
  4936. Asserts that a string does not start with another string.
  4937. </summary>
  4938. <param name="expected">The expected string</param>
  4939. <param name="actual">The string to be examined</param>
  4940. <param name="message">The message to display in case of failure</param>
  4941. </member>
  4942. <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String)">
  4943. <summary>
  4944. Asserts that a string does not start with another string.
  4945. </summary>
  4946. <param name="expected">The expected string</param>
  4947. <param name="actual">The string to be examined</param>
  4948. </member>
  4949. <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String,System.Object[])">
  4950. <summary>
  4951. Asserts that a string ends with another string.
  4952. </summary>
  4953. <param name="expected">The expected string</param>
  4954. <param name="actual">The string to be examined</param>
  4955. <param name="message">The message to display in case of failure</param>
  4956. <param name="args">Arguments used in formatting the message</param>
  4957. </member>
  4958. <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String)">
  4959. <summary>
  4960. Asserts that a string ends with another string.
  4961. </summary>
  4962. <param name="expected">The expected string</param>
  4963. <param name="actual">The string to be examined</param>
  4964. <param name="message">The message to display in case of failure</param>
  4965. </member>
  4966. <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String)">
  4967. <summary>
  4968. Asserts that a string ends with another string.
  4969. </summary>
  4970. <param name="expected">The expected string</param>
  4971. <param name="actual">The string to be examined</param>
  4972. </member>
  4973. <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String,System.Object[])">
  4974. <summary>
  4975. Asserts that a string does not end with another string.
  4976. </summary>
  4977. <param name="expected">The expected string</param>
  4978. <param name="actual">The string to be examined</param>
  4979. <param name="message">The message to display in case of failure</param>
  4980. <param name="args">Arguments used in formatting the message</param>
  4981. </member>
  4982. <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String)">
  4983. <summary>
  4984. Asserts that a string does not end with another string.
  4985. </summary>
  4986. <param name="expected">The expected string</param>
  4987. <param name="actual">The string to be examined</param>
  4988. <param name="message">The message to display in case of failure</param>
  4989. </member>
  4990. <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String)">
  4991. <summary>
  4992. Asserts that a string does not end with another string.
  4993. </summary>
  4994. <param name="expected">The expected string</param>
  4995. <param name="actual">The string to be examined</param>
  4996. </member>
  4997. <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
  4998. <summary>
  4999. Asserts that two strings are equal, without regard to case.
  5000. </summary>
  5001. <param name="expected">The expected string</param>
  5002. <param name="actual">The actual string</param>
  5003. <param name="message">The message to display in case of failure</param>
  5004. <param name="args">Arguments used in formatting the message</param>
  5005. </member>
  5006. <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String)">
  5007. <summary>
  5008. Asserts that two strings are equal, without regard to case.
  5009. </summary>
  5010. <param name="expected">The expected string</param>
  5011. <param name="actual">The actual string</param>
  5012. <param name="message">The message to display in case of failure</param>
  5013. </member>
  5014. <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String)">
  5015. <summary>
  5016. Asserts that two strings are equal, without regard to case.
  5017. </summary>
  5018. <param name="expected">The expected string</param>
  5019. <param name="actual">The actual string</param>
  5020. </member>
  5021. <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
  5022. <summary>
  5023. Asserts that two strings are not equal, without regard to case.
  5024. </summary>
  5025. <param name="expected">The expected string</param>
  5026. <param name="actual">The actual string</param>
  5027. <param name="message">The message to display in case of failure</param>
  5028. <param name="args">Arguments used in formatting the message</param>
  5029. </member>
  5030. <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String)">
  5031. <summary>
  5032. Asserts that two strings are Notequal, without regard to case.
  5033. </summary>
  5034. <param name="expected">The expected string</param>
  5035. <param name="actual">The actual string</param>
  5036. <param name="message">The message to display in case of failure</param>
  5037. </member>
  5038. <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String)">
  5039. <summary>
  5040. Asserts that two strings are not equal, without regard to case.
  5041. </summary>
  5042. <param name="expected">The expected string</param>
  5043. <param name="actual">The actual string</param>
  5044. </member>
  5045. <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String,System.Object[])">
  5046. <summary>
  5047. Asserts that a string matches an expected regular expression pattern.
  5048. </summary>
  5049. <param name="pattern">The regex pattern to be matched</param>
  5050. <param name="actual">The actual string</param>
  5051. <param name="message">The message to display in case of failure</param>
  5052. <param name="args">Arguments used in formatting the message</param>
  5053. </member>
  5054. <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String)">
  5055. <summary>
  5056. Asserts that a string matches an expected regular expression pattern.
  5057. </summary>
  5058. <param name="pattern">The regex pattern to be matched</param>
  5059. <param name="actual">The actual string</param>
  5060. <param name="message">The message to display in case of failure</param>
  5061. </member>
  5062. <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String)">
  5063. <summary>
  5064. Asserts that a string matches an expected regular expression pattern.
  5065. </summary>
  5066. <param name="pattern">The regex pattern to be matched</param>
  5067. <param name="actual">The actual string</param>
  5068. </member>
  5069. <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String,System.Object[])">
  5070. <summary>
  5071. Asserts that a string does not match an expected regular expression pattern.
  5072. </summary>
  5073. <param name="pattern">The regex pattern to be used</param>
  5074. <param name="actual">The actual string</param>
  5075. <param name="message">The message to display in case of failure</param>
  5076. <param name="args">Arguments used in formatting the message</param>
  5077. </member>
  5078. <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String)">
  5079. <summary>
  5080. Asserts that a string does not match an expected regular expression pattern.
  5081. </summary>
  5082. <param name="pattern">The regex pattern to be used</param>
  5083. <param name="actual">The actual string</param>
  5084. <param name="message">The message to display in case of failure</param>
  5085. </member>
  5086. <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String)">
  5087. <summary>
  5088. Asserts that a string does not match an expected regular expression pattern.
  5089. </summary>
  5090. <param name="pattern">The regex pattern to be used</param>
  5091. <param name="actual">The actual string</param>
  5092. </member>
  5093. <member name="T:NUnit.Framework.TestCaseData">
  5094. <summary>
  5095. The TestCaseData class represents a set of arguments
  5096. and other parameter info to be used for a parameterized
  5097. test case. It provides a number of instance modifiers
  5098. for use in initializing the test case.
  5099. Note: Instance modifiers are getters that return
  5100. the same instance after modifying it's state.
  5101. </summary>
  5102. </member>
  5103. <member name="F:NUnit.Framework.TestCaseData.arguments">
  5104. <summary>
  5105. The argument list to be provided to the test
  5106. </summary>
  5107. </member>
  5108. <member name="F:NUnit.Framework.TestCaseData.expectedResult">
  5109. <summary>
  5110. The expected result to be returned
  5111. </summary>
  5112. </member>
  5113. <member name="F:NUnit.Framework.TestCaseData.hasExpectedResult">
  5114. <summary>
  5115. Set to true if this has an expected result
  5116. </summary>
  5117. </member>
  5118. <member name="F:NUnit.Framework.TestCaseData.expectedExceptionType">
  5119. <summary>
  5120. The expected exception Type
  5121. </summary>
  5122. </member>
  5123. <member name="F:NUnit.Framework.TestCaseData.expectedExceptionName">
  5124. <summary>
  5125. The FullName of the expected exception
  5126. </summary>
  5127. </member>
  5128. <member name="F:NUnit.Framework.TestCaseData.testName">
  5129. <summary>
  5130. The name to be used for the test
  5131. </summary>
  5132. </member>
  5133. <member name="F:NUnit.Framework.TestCaseData.description">
  5134. <summary>
  5135. The description of the test
  5136. </summary>
  5137. </member>
  5138. <member name="F:NUnit.Framework.TestCaseData.properties">
  5139. <summary>
  5140. A dictionary of properties, used to add information
  5141. to tests without requiring the class to change.
  5142. </summary>
  5143. </member>
  5144. <member name="F:NUnit.Framework.TestCaseData.isIgnored">
  5145. <summary>
  5146. If true, indicates that the test case is to be ignored
  5147. </summary>
  5148. </member>
  5149. <member name="F:NUnit.Framework.TestCaseData.isExplicit">
  5150. <summary>
  5151. If true, indicates that the test case is marked explicit
  5152. </summary>
  5153. </member>
  5154. <member name="F:NUnit.Framework.TestCaseData.ignoreReason">
  5155. <summary>
  5156. The reason for ignoring a test case
  5157. </summary>
  5158. </member>
  5159. <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object[])">
  5160. <summary>
  5161. Initializes a new instance of the <see cref="T:TestCaseData"/> class.
  5162. </summary>
  5163. <param name="args">The arguments.</param>
  5164. </member>
  5165. <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object)">
  5166. <summary>
  5167. Initializes a new instance of the <see cref="T:TestCaseData"/> class.
  5168. </summary>
  5169. <param name="arg">The argument.</param>
  5170. </member>
  5171. <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object)">
  5172. <summary>
  5173. Initializes a new instance of the <see cref="T:TestCaseData"/> class.
  5174. </summary>
  5175. <param name="arg1">The first argument.</param>
  5176. <param name="arg2">The second argument.</param>
  5177. </member>
  5178. <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object,System.Object)">
  5179. <summary>
  5180. Initializes a new instance of the <see cref="T:TestCaseData"/> class.
  5181. </summary>
  5182. <param name="arg1">The first argument.</param>
  5183. <param name="arg2">The second argument.</param>
  5184. <param name="arg3">The third argument.</param>
  5185. </member>
  5186. <member name="M:NUnit.Framework.TestCaseData.Returns(System.Object)">
  5187. <summary>
  5188. Sets the expected result for the test
  5189. </summary>
  5190. <param name="result">The expected result</param>
  5191. <returns>A modified TestCaseData</returns>
  5192. </member>
  5193. <member name="M:NUnit.Framework.TestCaseData.Throws(System.Type)">
  5194. <summary>
  5195. Sets the expected exception type for the test
  5196. </summary>
  5197. <param name="exceptionType">Type of the expected exception.</param>
  5198. <returns>The modified TestCaseData instance</returns>
  5199. </member>
  5200. <member name="M:NUnit.Framework.TestCaseData.Throws(System.String)">
  5201. <summary>
  5202. Sets the expected exception type for the test
  5203. </summary>
  5204. <param name="exceptionName">FullName of the expected exception.</param>
  5205. <returns>The modified TestCaseData instance</returns>
  5206. </member>
  5207. <member name="M:NUnit.Framework.TestCaseData.SetName(System.String)">
  5208. <summary>
  5209. Sets the name of the test case
  5210. </summary>
  5211. <returns>The modified TestCaseData instance</returns>
  5212. </member>
  5213. <member name="M:NUnit.Framework.TestCaseData.SetDescription(System.String)">
  5214. <summary>
  5215. Sets the description for the test case
  5216. being constructed.
  5217. </summary>
  5218. <param name="description">The description.</param>
  5219. <returns>The modified TestCaseData instance.</returns>
  5220. </member>
  5221. <member name="M:NUnit.Framework.TestCaseData.SetCategory(System.String)">
  5222. <summary>
  5223. Applies a category to the test
  5224. </summary>
  5225. <param name="category"></param>
  5226. <returns></returns>
  5227. </member>
  5228. <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.String)">
  5229. <summary>
  5230. Applies a named property to the test
  5231. </summary>
  5232. <param name="propName"></param>
  5233. <param name="propValue"></param>
  5234. <returns></returns>
  5235. </member>
  5236. <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Int32)">
  5237. <summary>
  5238. Applies a named property to the test
  5239. </summary>
  5240. <param name="propName"></param>
  5241. <param name="propValue"></param>
  5242. <returns></returns>
  5243. </member>
  5244. <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Double)">
  5245. <summary>
  5246. Applies a named property to the test
  5247. </summary>
  5248. <param name="propName"></param>
  5249. <param name="propValue"></param>
  5250. <returns></returns>
  5251. </member>
  5252. <member name="M:NUnit.Framework.TestCaseData.Ignore">
  5253. <summary>
  5254. Ignores this TestCase.
  5255. </summary>
  5256. <returns></returns>
  5257. </member>
  5258. <member name="M:NUnit.Framework.TestCaseData.Ignore(System.String)">
  5259. <summary>
  5260. Ignores this TestCase, specifying the reason.
  5261. </summary>
  5262. <param name="reason">The reason.</param>
  5263. <returns></returns>
  5264. </member>
  5265. <member name="M:NUnit.Framework.TestCaseData.MakeExplicit">
  5266. <summary>
  5267. Marks this TestCase as Explicit
  5268. </summary>
  5269. <returns></returns>
  5270. </member>
  5271. <member name="M:NUnit.Framework.TestCaseData.MakeExplicit(System.String)">
  5272. <summary>
  5273. Marks this TestCase as Explicit, specifying the reason.
  5274. </summary>
  5275. <param name="reason">The reason.</param>
  5276. <returns></returns>
  5277. </member>
  5278. <member name="P:NUnit.Framework.TestCaseData.Arguments">
  5279. <summary>
  5280. Gets the argument list to be provided to the test
  5281. </summary>
  5282. </member>
  5283. <member name="P:NUnit.Framework.TestCaseData.Result">
  5284. <summary>
  5285. Gets the expected result
  5286. </summary>
  5287. </member>
  5288. <member name="P:NUnit.Framework.TestCaseData.HasExpectedResult">
  5289. <summary>
  5290. Returns true if the result has been set
  5291. </summary>
  5292. </member>
  5293. <member name="P:NUnit.Framework.TestCaseData.ExpectedException">
  5294. <summary>
  5295. Gets the expected exception Type
  5296. </summary>
  5297. </member>
  5298. <member name="P:NUnit.Framework.TestCaseData.ExpectedExceptionName">
  5299. <summary>
  5300. Gets the FullName of the expected exception
  5301. </summary>
  5302. </member>
  5303. <member name="P:NUnit.Framework.TestCaseData.TestName">
  5304. <summary>
  5305. Gets the name to be used for the test
  5306. </summary>
  5307. </member>
  5308. <member name="P:NUnit.Framework.TestCaseData.Description">
  5309. <summary>
  5310. Gets the description of the test
  5311. </summary>
  5312. </member>
  5313. <member name="P:NUnit.Framework.TestCaseData.Ignored">
  5314. <summary>
  5315. Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
  5316. </summary>
  5317. <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
  5318. </member>
  5319. <member name="P:NUnit.Framework.TestCaseData.Explicit">
  5320. <summary>
  5321. Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is explicit.
  5322. </summary>
  5323. <value><c>true</c> if explicit; otherwise, <c>false</c>.</value>
  5324. </member>
  5325. <member name="P:NUnit.Framework.TestCaseData.IgnoreReason">
  5326. <summary>
  5327. Gets the ignore reason.
  5328. </summary>
  5329. <value>The ignore reason.</value>
  5330. </member>
  5331. <member name="P:NUnit.Framework.TestCaseData.Categories">
  5332. <summary>
  5333. Gets a list of categories associated with this test.
  5334. </summary>
  5335. </member>
  5336. <member name="P:NUnit.Framework.TestCaseData.Properties">
  5337. <summary>
  5338. Gets the property dictionary for this test
  5339. </summary>
  5340. </member>
  5341. <member name="T:NUnit.Framework.TestContext">
  5342. <summary>
  5343. Provide the context information of the current test
  5344. </summary>
  5345. </member>
  5346. <member name="M:NUnit.Framework.TestContext.#ctor(System.Collections.IDictionary)">
  5347. <summary>
  5348. Constructs a TestContext using the provided context dictionary
  5349. </summary>
  5350. <param name="context">A context dictionary</param>
  5351. </member>
  5352. <member name="P:NUnit.Framework.TestContext.CurrentContext">
  5353. <summary>
  5354. Get the current test context. This is created
  5355. as needed. The user may save the context for
  5356. use within a test, but it should not be used
  5357. outside the test for which it is created.
  5358. </summary>
  5359. </member>
  5360. <member name="P:NUnit.Framework.TestContext.Test">
  5361. <summary>
  5362. Gets a TestAdapter representing the currently executing test in this context.
  5363. </summary>
  5364. </member>
  5365. <member name="P:NUnit.Framework.TestContext.Result">
  5366. <summary>
  5367. Gets a ResultAdapter representing the current result for the test
  5368. executing in this context.
  5369. </summary>
  5370. </member>
  5371. <member name="P:NUnit.Framework.TestContext.TestDirectory">
  5372. <summary>
  5373. Gets the directory containing the current test assembly.
  5374. </summary>
  5375. </member>
  5376. <member name="P:NUnit.Framework.TestContext.WorkDirectory">
  5377. <summary>
  5378. Gets the directory to be used for outputing files created
  5379. by this test run.
  5380. </summary>
  5381. </member>
  5382. <member name="T:NUnit.Framework.TestContext.TestAdapter">
  5383. <summary>
  5384. TestAdapter adapts a Test for consumption by
  5385. the user test code.
  5386. </summary>
  5387. </member>
  5388. <member name="M:NUnit.Framework.TestContext.TestAdapter.#ctor(System.Collections.IDictionary)">
  5389. <summary>
  5390. Constructs a TestAdapter for this context
  5391. </summary>
  5392. <param name="context">The context dictionary</param>
  5393. </member>
  5394. <member name="P:NUnit.Framework.TestContext.TestAdapter.Name">
  5395. <summary>
  5396. The name of the test.
  5397. </summary>
  5398. </member>
  5399. <member name="P:NUnit.Framework.TestContext.TestAdapter.FullName">
  5400. <summary>
  5401. The FullName of the test
  5402. </summary>
  5403. </member>
  5404. <member name="P:NUnit.Framework.TestContext.TestAdapter.Properties">
  5405. <summary>
  5406. The properties of the test.
  5407. </summary>
  5408. </member>
  5409. <member name="T:NUnit.Framework.TestContext.ResultAdapter">
  5410. <summary>
  5411. ResultAdapter adapts a TestResult for consumption by
  5412. the user test code.
  5413. </summary>
  5414. </member>
  5415. <member name="M:NUnit.Framework.TestContext.ResultAdapter.#ctor(System.Collections.IDictionary)">
  5416. <summary>
  5417. Construct a ResultAdapter for a context
  5418. </summary>
  5419. <param name="context">The context holding the result</param>
  5420. </member>
  5421. <member name="P:NUnit.Framework.TestContext.ResultAdapter.State">
  5422. <summary>
  5423. The TestState of current test. This maps to the ResultState
  5424. used in nunit.core and is subject to change in the future.
  5425. </summary>
  5426. </member>
  5427. <member name="P:NUnit.Framework.TestContext.ResultAdapter.Status">
  5428. <summary>
  5429. The TestStatus of current test. This enum will be used
  5430. in future versions of NUnit and so is to be preferred
  5431. to the TestState value.
  5432. </summary>
  5433. </member>
  5434. <member name="T:NUnit.Framework.TestDetails">
  5435. <summary>
  5436. Provides details about a test
  5437. </summary>
  5438. </member>
  5439. <member name="M:NUnit.Framework.TestDetails.#ctor(System.Object,System.Reflection.MethodInfo,System.String,System.String,System.Boolean)">
  5440. <summary>
  5441. Creates an instance of TestDetails
  5442. </summary>
  5443. <param name="fixture">The fixture that the test is a member of, if available.</param>
  5444. <param name="method">The method that implements the test, if available.</param>
  5445. <param name="fullName">The full name of the test.</param>
  5446. <param name="type">A string representing the type of test, e.g. "Test Case".</param>
  5447. <param name="isSuite">Indicates if the test represents a suite of tests.</param>
  5448. </member>
  5449. <member name="P:NUnit.Framework.TestDetails.Fixture">
  5450. <summary>
  5451. The fixture that the test is a member of, if available.
  5452. </summary>
  5453. </member>
  5454. <member name="P:NUnit.Framework.TestDetails.Method">
  5455. <summary>
  5456. The method that implements the test, if available.
  5457. </summary>
  5458. </member>
  5459. <member name="P:NUnit.Framework.TestDetails.FullName">
  5460. <summary>
  5461. The full name of the test.
  5462. </summary>
  5463. </member>
  5464. <member name="P:NUnit.Framework.TestDetails.Type">
  5465. <summary>
  5466. A string representing the type of test, e.g. "Test Case".
  5467. </summary>
  5468. </member>
  5469. <member name="P:NUnit.Framework.TestDetails.IsSuite">
  5470. <summary>
  5471. Indicates if the test represents a suite of tests.
  5472. </summary>
  5473. </member>
  5474. <member name="T:NUnit.Framework.TestState">
  5475. <summary>
  5476. The ResultState enum indicates the result of running a test
  5477. </summary>
  5478. </member>
  5479. <member name="F:NUnit.Framework.TestState.Inconclusive">
  5480. <summary>
  5481. The result is inconclusive
  5482. </summary>
  5483. </member>
  5484. <member name="F:NUnit.Framework.TestState.NotRunnable">
  5485. <summary>
  5486. The test was not runnable.
  5487. </summary>
  5488. </member>
  5489. <member name="F:NUnit.Framework.TestState.Skipped">
  5490. <summary>
  5491. The test has been skipped.
  5492. </summary>
  5493. </member>
  5494. <member name="F:NUnit.Framework.TestState.Ignored">
  5495. <summary>
  5496. The test has been ignored.
  5497. </summary>
  5498. </member>
  5499. <member name="F:NUnit.Framework.TestState.Success">
  5500. <summary>
  5501. The test succeeded
  5502. </summary>
  5503. </member>
  5504. <member name="F:NUnit.Framework.TestState.Failure">
  5505. <summary>
  5506. The test failed
  5507. </summary>
  5508. </member>
  5509. <member name="F:NUnit.Framework.TestState.Error">
  5510. <summary>
  5511. The test encountered an unexpected exception
  5512. </summary>
  5513. </member>
  5514. <member name="F:NUnit.Framework.TestState.Cancelled">
  5515. <summary>
  5516. The test was cancelled by the user
  5517. </summary>
  5518. </member>
  5519. <member name="T:NUnit.Framework.TestStatus">
  5520. <summary>
  5521. The TestStatus enum indicates the result of running a test
  5522. </summary>
  5523. </member>
  5524. <member name="F:NUnit.Framework.TestStatus.Inconclusive">
  5525. <summary>
  5526. The test was inconclusive
  5527. </summary>
  5528. </member>
  5529. <member name="F:NUnit.Framework.TestStatus.Skipped">
  5530. <summary>
  5531. The test has skipped
  5532. </summary>
  5533. </member>
  5534. <member name="F:NUnit.Framework.TestStatus.Passed">
  5535. <summary>
  5536. The test succeeded
  5537. </summary>
  5538. </member>
  5539. <member name="F:NUnit.Framework.TestStatus.Failed">
  5540. <summary>
  5541. The test failed
  5542. </summary>
  5543. </member>
  5544. <member name="T:NUnit.Framework.Text">
  5545. <summary>
  5546. Helper class with static methods used to supply constraints
  5547. that operate on strings.
  5548. </summary>
  5549. </member>
  5550. <member name="M:NUnit.Framework.Text.Contains(System.String)">
  5551. <summary>
  5552. Returns a constraint that succeeds if the actual
  5553. value contains the substring supplied as an argument.
  5554. </summary>
  5555. </member>
  5556. <member name="M:NUnit.Framework.Text.DoesNotContain(System.String)">
  5557. <summary>
  5558. Returns a constraint that fails if the actual
  5559. value contains the substring supplied as an argument.
  5560. </summary>
  5561. </member>
  5562. <member name="M:NUnit.Framework.Text.StartsWith(System.String)">
  5563. <summary>
  5564. Returns a constraint that succeeds if the actual
  5565. value starts with the substring supplied as an argument.
  5566. </summary>
  5567. </member>
  5568. <member name="M:NUnit.Framework.Text.DoesNotStartWith(System.String)">
  5569. <summary>
  5570. Returns a constraint that fails if the actual
  5571. value starts with the substring supplied as an argument.
  5572. </summary>
  5573. </member>
  5574. <member name="M:NUnit.Framework.Text.EndsWith(System.String)">
  5575. <summary>
  5576. Returns a constraint that succeeds if the actual
  5577. value ends with the substring supplied as an argument.
  5578. </summary>
  5579. </member>
  5580. <member name="M:NUnit.Framework.Text.DoesNotEndWith(System.String)">
  5581. <summary>
  5582. Returns a constraint that fails if the actual
  5583. value ends with the substring supplied as an argument.
  5584. </summary>
  5585. </member>
  5586. <member name="M:NUnit.Framework.Text.Matches(System.String)">
  5587. <summary>
  5588. Returns a constraint that succeeds if the actual
  5589. value matches the Regex pattern supplied as an argument.
  5590. </summary>
  5591. </member>
  5592. <member name="M:NUnit.Framework.Text.DoesNotMatch(System.String)">
  5593. <summary>
  5594. Returns a constraint that fails if the actual
  5595. value matches the pattern supplied as an argument.
  5596. </summary>
  5597. </member>
  5598. <member name="P:NUnit.Framework.Text.All">
  5599. <summary>
  5600. Returns a ConstraintExpression, which will apply
  5601. the following constraint to all members of a collection,
  5602. succeeding if all of them succeed.
  5603. </summary>
  5604. </member>
  5605. <member name="T:NUnit.Framework.TextMessageWriter">
  5606. <summary>
  5607. TextMessageWriter writes constraint descriptions and messages
  5608. in displayable form as a text stream. It tailors the display
  5609. of individual message components to form the standard message
  5610. format of NUnit assertion failure messages.
  5611. </summary>
  5612. </member>
  5613. <member name="T:NUnit.Framework.Constraints.MessageWriter">
  5614. <summary>
  5615. MessageWriter is the abstract base for classes that write
  5616. constraint descriptions and messages in some form. The
  5617. class has separate methods for writing various components
  5618. of a message, allowing implementations to tailor the
  5619. presentation as needed.
  5620. </summary>
  5621. </member>
  5622. <member name="M:NUnit.Framework.Constraints.MessageWriter.#ctor">
  5623. <summary>
  5624. Construct a MessageWriter given a culture
  5625. </summary>
  5626. </member>
  5627. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.String,System.Object[])">
  5628. <summary>
  5629. Method to write single line message with optional args, usually
  5630. written to precede the general failure message.
  5631. </summary>
  5632. <param name="message">The message to be written</param>
  5633. <param name="args">Any arguments used in formatting the message</param>
  5634. </member>
  5635. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
  5636. <summary>
  5637. Method to write single line message with optional args, usually
  5638. written to precede the general failure message, at a givel
  5639. indentation level.
  5640. </summary>
  5641. <param name="level">The indentation level of the message</param>
  5642. <param name="message">The message to be written</param>
  5643. <param name="args">Any arguments used in formatting the message</param>
  5644. </member>
  5645. <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
  5646. <summary>
  5647. Display Expected and Actual lines for a constraint. This
  5648. is called by MessageWriter's default implementation of
  5649. WriteMessageTo and provides the generic two-line display.
  5650. </summary>
  5651. <param name="constraint">The constraint that failed</param>
  5652. </member>
  5653. <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object)">
  5654. <summary>
  5655. Display Expected and Actual lines for given values. This
  5656. method may be called by constraints that need more control over
  5657. the display of actual and expected values than is provided
  5658. by the default implementation.
  5659. </summary>
  5660. <param name="expected">The expected value</param>
  5661. <param name="actual">The actual value causing the failure</param>
  5662. </member>
  5663. <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)">
  5664. <summary>
  5665. Display Expected and Actual lines for given values, including
  5666. a tolerance value on the Expected line.
  5667. </summary>
  5668. <param name="expected">The expected value</param>
  5669. <param name="actual">The actual value causing the failure</param>
  5670. <param name="tolerance">The tolerance within which the test was made</param>
  5671. </member>
  5672. <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
  5673. <summary>
  5674. Display the expected and actual string values on separate lines.
  5675. If the mismatch parameter is >=0, an additional line is displayed
  5676. line containing a caret that points to the mismatch point.
  5677. </summary>
  5678. <param name="expected">The expected string value</param>
  5679. <param name="actual">The actual string value</param>
  5680. <param name="mismatch">The point at which the strings don't match or -1</param>
  5681. <param name="ignoreCase">If true, case is ignored in locating the point where the strings differ</param>
  5682. <param name="clipping">If true, the strings should be clipped to fit the line</param>
  5683. </member>
  5684. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteConnector(System.String)">
  5685. <summary>
  5686. Writes the text for a connector.
  5687. </summary>
  5688. <param name="connector">The connector.</param>
  5689. </member>
  5690. <member name="M:NUnit.Framework.Constraints.MessageWriter.WritePredicate(System.String)">
  5691. <summary>
  5692. Writes the text for a predicate.
  5693. </summary>
  5694. <param name="predicate">The predicate.</param>
  5695. </member>
  5696. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteExpectedValue(System.Object)">
  5697. <summary>
  5698. Writes the text for an expected value.
  5699. </summary>
  5700. <param name="expected">The expected value.</param>
  5701. </member>
  5702. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteModifier(System.String)">
  5703. <summary>
  5704. Writes the text for a modifier
  5705. </summary>
  5706. <param name="modifier">The modifier.</param>
  5707. </member>
  5708. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteActualValue(System.Object)">
  5709. <summary>
  5710. Writes the text for an actual value.
  5711. </summary>
  5712. <param name="actual">The actual value.</param>
  5713. </member>
  5714. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteValue(System.Object)">
  5715. <summary>
  5716. Writes the text for a generalized value.
  5717. </summary>
  5718. <param name="val">The value.</param>
  5719. </member>
  5720. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteCollectionElements(System.Collections.IEnumerable,System.Int32,System.Int32)">
  5721. <summary>
  5722. Writes the text for a collection value,
  5723. starting at a particular point, to a max length
  5724. </summary>
  5725. <param name="collection">The collection containing elements to write.</param>
  5726. <param name="start">The starting point of the elements to write</param>
  5727. <param name="max">The maximum number of elements to write</param>
  5728. </member>
  5729. <member name="P:NUnit.Framework.Constraints.MessageWriter.MaxLineLength">
  5730. <summary>
  5731. Abstract method to get the max line length
  5732. </summary>
  5733. </member>
  5734. <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Expected">
  5735. <summary>
  5736. Prefix used for the expected value line of a message
  5737. </summary>
  5738. </member>
  5739. <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Actual">
  5740. <summary>
  5741. Prefix used for the actual value line of a message
  5742. </summary>
  5743. </member>
  5744. <member name="F:NUnit.Framework.TextMessageWriter.PrefixLength">
  5745. <summary>
  5746. Length of a message prefix
  5747. </summary>
  5748. </member>
  5749. <member name="M:NUnit.Framework.TextMessageWriter.#ctor">
  5750. <summary>
  5751. Construct a TextMessageWriter
  5752. </summary>
  5753. </member>
  5754. <member name="M:NUnit.Framework.TextMessageWriter.#ctor(System.String,System.Object[])">
  5755. <summary>
  5756. Construct a TextMessageWriter, specifying a user message
  5757. and optional formatting arguments.
  5758. </summary>
  5759. <param name="userMessage"></param>
  5760. <param name="args"></param>
  5761. </member>
  5762. <member name="M:NUnit.Framework.TextMessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
  5763. <summary>
  5764. Method to write single line message with optional args, usually
  5765. written to precede the general failure message, at a givel
  5766. indentation level.
  5767. </summary>
  5768. <param name="level">The indentation level of the message</param>
  5769. <param name="message">The message to be written</param>
  5770. <param name="args">Any arguments used in formatting the message</param>
  5771. </member>
  5772. <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
  5773. <summary>
  5774. Display Expected and Actual lines for a constraint. This
  5775. is called by MessageWriter's default implementation of
  5776. WriteMessageTo and provides the generic two-line display.
  5777. </summary>
  5778. <param name="constraint">The constraint that failed</param>
  5779. </member>
  5780. <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object)">
  5781. <summary>
  5782. Display Expected and Actual lines for given values. This
  5783. method may be called by constraints that need more control over
  5784. the display of actual and expected values than is provided
  5785. by the default implementation.
  5786. </summary>
  5787. <param name="expected">The expected value</param>
  5788. <param name="actual">The actual value causing the failure</param>
  5789. </member>
  5790. <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)">
  5791. <summary>
  5792. Display Expected and Actual lines for given values, including
  5793. a tolerance value on the expected line.
  5794. </summary>
  5795. <param name="expected">The expected value</param>
  5796. <param name="actual">The actual value causing the failure</param>
  5797. <param name="tolerance">The tolerance within which the test was made</param>
  5798. </member>
  5799. <member name="M:NUnit.Framework.TextMessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
  5800. <summary>
  5801. Display the expected and actual string values on separate lines.
  5802. If the mismatch parameter is >=0, an additional line is displayed
  5803. line containing a caret that points to the mismatch point.
  5804. </summary>
  5805. <param name="expected">The expected string value</param>
  5806. <param name="actual">The actual string value</param>
  5807. <param name="mismatch">The point at which the strings don't match or -1</param>
  5808. <param name="ignoreCase">If true, case is ignored in string comparisons</param>
  5809. <param name="clipping">If true, clip the strings to fit the max line length</param>
  5810. </member>
  5811. <member name="M:NUnit.Framework.TextMessageWriter.WriteConnector(System.String)">
  5812. <summary>
  5813. Writes the text for a connector.
  5814. </summary>
  5815. <param name="connector">The connector.</param>
  5816. </member>
  5817. <member name="M:NUnit.Framework.TextMessageWriter.WritePredicate(System.String)">
  5818. <summary>
  5819. Writes the text for a predicate.
  5820. </summary>
  5821. <param name="predicate">The predicate.</param>
  5822. </member>
  5823. <member name="M:NUnit.Framework.TextMessageWriter.WriteModifier(System.String)">
  5824. <summary>
  5825. Write the text for a modifier.
  5826. </summary>
  5827. <param name="modifier">The modifier.</param>
  5828. </member>
  5829. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedValue(System.Object)">
  5830. <summary>
  5831. Writes the text for an expected value.
  5832. </summary>
  5833. <param name="expected">The expected value.</param>
  5834. </member>
  5835. <member name="M:NUnit.Framework.TextMessageWriter.WriteActualValue(System.Object)">
  5836. <summary>
  5837. Writes the text for an actual value.
  5838. </summary>
  5839. <param name="actual">The actual value.</param>
  5840. </member>
  5841. <member name="M:NUnit.Framework.TextMessageWriter.WriteValue(System.Object)">
  5842. <summary>
  5843. Writes the text for a generalized value.
  5844. </summary>
  5845. <param name="val">The value.</param>
  5846. </member>
  5847. <member name="M:NUnit.Framework.TextMessageWriter.WriteCollectionElements(System.Collections.IEnumerable,System.Int32,System.Int32)">
  5848. <summary>
  5849. Writes the text for a collection value,
  5850. starting at a particular point, to a max length
  5851. </summary>
  5852. <param name="collection">The collection containing elements to write.</param>
  5853. <param name="start">The starting point of the elements to write</param>
  5854. <param name="max">The maximum number of elements to write</param>
  5855. </member>
  5856. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(NUnit.Framework.Constraints.Constraint)">
  5857. <summary>
  5858. Write the generic 'Expected' line for a constraint
  5859. </summary>
  5860. <param name="constraint">The constraint that failed</param>
  5861. </member>
  5862. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object)">
  5863. <summary>
  5864. Write the generic 'Expected' line for a given value
  5865. </summary>
  5866. <param name="expected">The expected value</param>
  5867. </member>
  5868. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object,NUnit.Framework.Constraints.Tolerance)">
  5869. <summary>
  5870. Write the generic 'Expected' line for a given value
  5871. and tolerance.
  5872. </summary>
  5873. <param name="expected">The expected value</param>
  5874. <param name="tolerance">The tolerance within which the test was made</param>
  5875. </member>
  5876. <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(NUnit.Framework.Constraints.Constraint)">
  5877. <summary>
  5878. Write the generic 'Actual' line for a constraint
  5879. </summary>
  5880. <param name="constraint">The constraint for which the actual value is to be written</param>
  5881. </member>
  5882. <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(System.Object)">
  5883. <summary>
  5884. Write the generic 'Actual' line for a given value
  5885. </summary>
  5886. <param name="actual">The actual value causing a failure</param>
  5887. </member>
  5888. <member name="P:NUnit.Framework.TextMessageWriter.MaxLineLength">
  5889. <summary>
  5890. Gets or sets the maximum line length for this writer
  5891. </summary>
  5892. </member>
  5893. <member name="T:NUnit.Framework.Throws">
  5894. <summary>
  5895. Helper class with properties and methods that supply
  5896. constraints that operate on exceptions.
  5897. </summary>
  5898. </member>
  5899. <member name="M:NUnit.Framework.Throws.TypeOf(System.Type)">
  5900. <summary>
  5901. Creates a constraint specifying the exact type of exception expected
  5902. </summary>
  5903. </member>
  5904. <member name="M:NUnit.Framework.Throws.TypeOf``1">
  5905. <summary>
  5906. Creates a constraint specifying the exact type of exception expected
  5907. </summary>
  5908. </member>
  5909. <member name="M:NUnit.Framework.Throws.InstanceOf(System.Type)">
  5910. <summary>
  5911. Creates a constraint specifying the type of exception expected
  5912. </summary>
  5913. </member>
  5914. <member name="M:NUnit.Framework.Throws.InstanceOf``1">
  5915. <summary>
  5916. Creates a constraint specifying the type of exception expected
  5917. </summary>
  5918. </member>
  5919. <member name="P:NUnit.Framework.Throws.Exception">
  5920. <summary>
  5921. Creates a constraint specifying an expected exception
  5922. </summary>
  5923. </member>
  5924. <member name="P:NUnit.Framework.Throws.InnerException">
  5925. <summary>
  5926. Creates a constraint specifying an exception with a given InnerException
  5927. </summary>
  5928. </member>
  5929. <member name="P:NUnit.Framework.Throws.TargetInvocationException">
  5930. <summary>
  5931. Creates a constraint specifying an expected TargetInvocationException
  5932. </summary>
  5933. </member>
  5934. <member name="P:NUnit.Framework.Throws.ArgumentException">
  5935. <summary>
  5936. Creates a constraint specifying an expected TargetInvocationException
  5937. </summary>
  5938. </member>
  5939. <member name="P:NUnit.Framework.Throws.InvalidOperationException">
  5940. <summary>
  5941. Creates a constraint specifying an expected TargetInvocationException
  5942. </summary>
  5943. </member>
  5944. <member name="P:NUnit.Framework.Throws.Nothing">
  5945. <summary>
  5946. Creates a constraint specifying that no exception is thrown
  5947. </summary>
  5948. </member>
  5949. <member name="T:NUnit.Framework.CategoryAttribute">
  5950. <summary>
  5951. Attribute used to apply a category to a test
  5952. </summary>
  5953. </member>
  5954. <member name="F:NUnit.Framework.CategoryAttribute.categoryName">
  5955. <summary>
  5956. The name of the category
  5957. </summary>
  5958. </member>
  5959. <member name="M:NUnit.Framework.CategoryAttribute.#ctor(System.String)">
  5960. <summary>
  5961. Construct attribute for a given category based on
  5962. a name. The name may not contain the characters ',',
  5963. '+', '-' or '!'. However, this is not checked in the
  5964. constructor since it would cause an error to arise at
  5965. as the test was loaded without giving a clear indication
  5966. of where the problem is located. The error is handled
  5967. in NUnitFramework.cs by marking the test as not
  5968. runnable.
  5969. </summary>
  5970. <param name="name">The name of the category</param>
  5971. </member>
  5972. <member name="M:NUnit.Framework.CategoryAttribute.#ctor">
  5973. <summary>
  5974. Protected constructor uses the Type name as the name
  5975. of the category.
  5976. </summary>
  5977. </member>
  5978. <member name="P:NUnit.Framework.CategoryAttribute.Name">
  5979. <summary>
  5980. The name of the category
  5981. </summary>
  5982. </member>
  5983. <member name="T:NUnit.Framework.DatapointAttribute">
  5984. <summary>
  5985. Used to mark a field for use as a datapoint when executing a theory
  5986. within the same fixture that requires an argument of the field's Type.
  5987. </summary>
  5988. </member>
  5989. <member name="T:NUnit.Framework.DatapointsAttribute">
  5990. <summary>
  5991. Used to mark an array as containing a set of datapoints to be used
  5992. executing a theory within the same fixture that requires an argument
  5993. of the Type of the array elements.
  5994. </summary>
  5995. </member>
  5996. <member name="T:NUnit.Framework.DescriptionAttribute">
  5997. <summary>
  5998. Attribute used to provide descriptive text about a
  5999. test case or fixture.
  6000. </summary>
  6001. </member>
  6002. <member name="M:NUnit.Framework.DescriptionAttribute.#ctor(System.String)">
  6003. <summary>
  6004. Construct the attribute
  6005. </summary>
  6006. <param name="description">Text describing the test</param>
  6007. </member>
  6008. <member name="P:NUnit.Framework.DescriptionAttribute.Description">
  6009. <summary>
  6010. Gets the test description
  6011. </summary>
  6012. </member>
  6013. <member name="T:NUnit.Framework.MessageMatch">
  6014. <summary>
  6015. Enumeration indicating how the expected message parameter is to be used
  6016. </summary>
  6017. </member>
  6018. <member name="F:NUnit.Framework.MessageMatch.Exact">
  6019. Expect an exact match
  6020. </member>
  6021. <member name="F:NUnit.Framework.MessageMatch.Contains">
  6022. Expect a message containing the parameter string
  6023. </member>
  6024. <member name="F:NUnit.Framework.MessageMatch.Regex">
  6025. Match the regular expression provided as a parameter
  6026. </member>
  6027. <member name="F:NUnit.Framework.MessageMatch.StartsWith">
  6028. Expect a message that starts with the parameter string
  6029. </member>
  6030. <member name="T:NUnit.Framework.ExpectedExceptionAttribute">
  6031. <summary>
  6032. ExpectedExceptionAttribute
  6033. </summary>
  6034. </member>
  6035. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor">
  6036. <summary>
  6037. Constructor for a non-specific exception
  6038. </summary>
  6039. </member>
  6040. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type)">
  6041. <summary>
  6042. Constructor for a given type of exception
  6043. </summary>
  6044. <param name="exceptionType">The type of the expected exception</param>
  6045. </member>
  6046. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.String)">
  6047. <summary>
  6048. Constructor for a given exception name
  6049. </summary>
  6050. <param name="exceptionName">The full name of the expected exception</param>
  6051. </member>
  6052. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedException">
  6053. <summary>
  6054. Gets or sets the expected exception type
  6055. </summary>
  6056. </member>
  6057. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedExceptionName">
  6058. <summary>
  6059. Gets or sets the full Type name of the expected exception
  6060. </summary>
  6061. </member>
  6062. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
  6063. <summary>
  6064. Gets or sets the expected message text
  6065. </summary>
  6066. </member>
  6067. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.UserMessage">
  6068. <summary>
  6069. Gets or sets the user message displayed in case of failure
  6070. </summary>
  6071. </member>
  6072. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.MatchType">
  6073. <summary>
  6074. Gets or sets the type of match to be performed on the expected message
  6075. </summary>
  6076. </member>
  6077. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.Handler">
  6078. <summary>
  6079. Gets the name of a method to be used as an exception handler
  6080. </summary>
  6081. </member>
  6082. <member name="T:NUnit.Framework.ExplicitAttribute">
  6083. <summary>
  6084. ExplicitAttribute marks a test or test fixture so that it will
  6085. only be run if explicitly executed from the gui or command line
  6086. or if it is included by use of a filter. The test will not be
  6087. run simply because an enclosing suite is run.
  6088. </summary>
  6089. </member>
  6090. <member name="M:NUnit.Framework.ExplicitAttribute.#ctor">
  6091. <summary>
  6092. Default constructor
  6093. </summary>
  6094. </member>
  6095. <member name="M:NUnit.Framework.ExplicitAttribute.#ctor(System.String)">
  6096. <summary>
  6097. Constructor with a reason
  6098. </summary>
  6099. <param name="reason">The reason test is marked explicit</param>
  6100. </member>
  6101. <member name="P:NUnit.Framework.ExplicitAttribute.Reason">
  6102. <summary>
  6103. The reason test is marked explicit
  6104. </summary>
  6105. </member>
  6106. <member name="T:NUnit.Framework.IgnoreAttribute">
  6107. <summary>
  6108. Attribute used to mark a test that is to be ignored.
  6109. Ignored tests result in a warning message when the
  6110. tests are run.
  6111. </summary>
  6112. </member>
  6113. <member name="M:NUnit.Framework.IgnoreAttribute.#ctor">
  6114. <summary>
  6115. Constructs the attribute without giving a reason
  6116. for ignoring the test.
  6117. </summary>
  6118. </member>
  6119. <member name="M:NUnit.Framework.IgnoreAttribute.#ctor(System.String)">
  6120. <summary>
  6121. Constructs the attribute giving a reason for ignoring the test
  6122. </summary>
  6123. <param name="reason">The reason for ignoring the test</param>
  6124. </member>
  6125. <member name="P:NUnit.Framework.IgnoreAttribute.Reason">
  6126. <summary>
  6127. The reason for ignoring a test
  6128. </summary>
  6129. </member>
  6130. <member name="T:NUnit.Framework.IncludeExcludeAttribute">
  6131. <summary>
  6132. Abstract base for Attributes that are used to include tests
  6133. in the test run based on environmental settings.
  6134. </summary>
  6135. </member>
  6136. <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor">
  6137. <summary>
  6138. Constructor with no included items specified, for use
  6139. with named property syntax.
  6140. </summary>
  6141. </member>
  6142. <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor(System.String)">
  6143. <summary>
  6144. Constructor taking one or more included items
  6145. </summary>
  6146. <param name="include">Comma-delimited list of included items</param>
  6147. </member>
  6148. <member name="P:NUnit.Framework.IncludeExcludeAttribute.Include">
  6149. <summary>
  6150. Name of the item that is needed in order for
  6151. a test to run. Multiple itemss may be given,
  6152. separated by a comma.
  6153. </summary>
  6154. </member>
  6155. <member name="P:NUnit.Framework.IncludeExcludeAttribute.Exclude">
  6156. <summary>
  6157. Name of the item to be excluded. Multiple items
  6158. may be given, separated by a comma.
  6159. </summary>
  6160. </member>
  6161. <member name="P:NUnit.Framework.IncludeExcludeAttribute.Reason">
  6162. <summary>
  6163. The reason for including or excluding the test
  6164. </summary>
  6165. </member>
  6166. <member name="T:NUnit.Framework.PlatformAttribute">
  6167. <summary>
  6168. PlatformAttribute is used to mark a test fixture or an
  6169. individual method as applying to a particular platform only.
  6170. </summary>
  6171. </member>
  6172. <member name="M:NUnit.Framework.PlatformAttribute.#ctor">
  6173. <summary>
  6174. Constructor with no platforms specified, for use
  6175. with named property syntax.
  6176. </summary>
  6177. </member>
  6178. <member name="M:NUnit.Framework.PlatformAttribute.#ctor(System.String)">
  6179. <summary>
  6180. Constructor taking one or more platforms
  6181. </summary>
  6182. <param name="platforms">Comma-deliminted list of platforms</param>
  6183. </member>
  6184. <member name="T:NUnit.Framework.CultureAttribute">
  6185. <summary>
  6186. CultureAttribute is used to mark a test fixture or an
  6187. individual method as applying to a particular Culture only.
  6188. </summary>
  6189. </member>
  6190. <member name="M:NUnit.Framework.CultureAttribute.#ctor">
  6191. <summary>
  6192. Constructor with no cultures specified, for use
  6193. with named property syntax.
  6194. </summary>
  6195. </member>
  6196. <member name="M:NUnit.Framework.CultureAttribute.#ctor(System.String)">
  6197. <summary>
  6198. Constructor taking one or more cultures
  6199. </summary>
  6200. <param name="cultures">Comma-deliminted list of cultures</param>
  6201. </member>
  6202. <member name="T:NUnit.Framework.CombinatorialAttribute">
  6203. <summary>
  6204. Marks a test to use a combinatorial join of any argument data
  6205. provided. NUnit will create a test case for every combination of
  6206. the arguments provided. This can result in a large number of test
  6207. cases and so should be used judiciously. This is the default join
  6208. type, so the attribute need not be used except as documentation.
  6209. </summary>
  6210. </member>
  6211. <member name="T:NUnit.Framework.PropertyAttribute">
  6212. <summary>
  6213. PropertyAttribute is used to attach information to a test as a name/value pair..
  6214. </summary>
  6215. </member>
  6216. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.String)">
  6217. <summary>
  6218. Construct a PropertyAttribute with a name and string value
  6219. </summary>
  6220. <param name="propertyName">The name of the property</param>
  6221. <param name="propertyValue">The property value</param>
  6222. </member>
  6223. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Int32)">
  6224. <summary>
  6225. Construct a PropertyAttribute with a name and int value
  6226. </summary>
  6227. <param name="propertyName">The name of the property</param>
  6228. <param name="propertyValue">The property value</param>
  6229. </member>
  6230. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Double)">
  6231. <summary>
  6232. Construct a PropertyAttribute with a name and double value
  6233. </summary>
  6234. <param name="propertyName">The name of the property</param>
  6235. <param name="propertyValue">The property value</param>
  6236. </member>
  6237. <member name="M:NUnit.Framework.PropertyAttribute.#ctor">
  6238. <summary>
  6239. Constructor for derived classes that set the
  6240. property dictionary directly.
  6241. </summary>
  6242. </member>
  6243. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.Object)">
  6244. <summary>
  6245. Constructor for use by derived classes that use the
  6246. name of the type as the property name. Derived classes
  6247. must ensure that the Type of the property value is
  6248. a standard type supported by the BCL. Any custom
  6249. types will cause a serialization Exception when
  6250. in the client.
  6251. </summary>
  6252. </member>
  6253. <member name="P:NUnit.Framework.PropertyAttribute.Properties">
  6254. <summary>
  6255. Gets the property dictionary for this attribute
  6256. </summary>
  6257. </member>
  6258. <member name="M:NUnit.Framework.CombinatorialAttribute.#ctor">
  6259. <summary>
  6260. Default constructor
  6261. </summary>
  6262. </member>
  6263. <member name="T:NUnit.Framework.PairwiseAttribute">
  6264. <summary>
  6265. Marks a test to use pairwise join of any argument data provided.
  6266. NUnit will attempt too excercise every pair of argument values at
  6267. least once, using as small a number of test cases as it can. With
  6268. only two arguments, this is the same as a combinatorial join.
  6269. </summary>
  6270. </member>
  6271. <member name="M:NUnit.Framework.PairwiseAttribute.#ctor">
  6272. <summary>
  6273. Default constructor
  6274. </summary>
  6275. </member>
  6276. <member name="T:NUnit.Framework.SequentialAttribute">
  6277. <summary>
  6278. Marks a test to use a sequential join of any argument data
  6279. provided. NUnit will use arguements for each parameter in
  6280. sequence, generating test cases up to the largest number
  6281. of argument values provided and using null for any arguments
  6282. for which it runs out of values. Normally, this should be
  6283. used with the same number of arguments for each parameter.
  6284. </summary>
  6285. </member>
  6286. <member name="M:NUnit.Framework.SequentialAttribute.#ctor">
  6287. <summary>
  6288. Default constructor
  6289. </summary>
  6290. </member>
  6291. <member name="T:NUnit.Framework.MaxTimeAttribute">
  6292. <summary>
  6293. Summary description for MaxTimeAttribute.
  6294. </summary>
  6295. </member>
  6296. <member name="M:NUnit.Framework.MaxTimeAttribute.#ctor(System.Int32)">
  6297. <summary>
  6298. Construct a MaxTimeAttribute, given a time in milliseconds.
  6299. </summary>
  6300. <param name="milliseconds">The maximum elapsed time in milliseconds</param>
  6301. </member>
  6302. <member name="T:NUnit.Framework.RandomAttribute">
  6303. <summary>
  6304. RandomAttribute is used to supply a set of random values
  6305. to a single parameter of a parameterized test.
  6306. </summary>
  6307. </member>
  6308. <member name="T:NUnit.Framework.ValuesAttribute">
  6309. <summary>
  6310. ValuesAttribute is used to provide literal arguments for
  6311. an individual parameter of a test.
  6312. </summary>
  6313. </member>
  6314. <member name="T:NUnit.Framework.ParameterDataAttribute">
  6315. <summary>
  6316. Abstract base class for attributes that apply to parameters
  6317. and supply data for the parameter.
  6318. </summary>
  6319. </member>
  6320. <member name="M:NUnit.Framework.ParameterDataAttribute.GetData(System.Reflection.ParameterInfo)">
  6321. <summary>
  6322. Gets the data to be provided to the specified parameter
  6323. </summary>
  6324. </member>
  6325. <member name="F:NUnit.Framework.ValuesAttribute.data">
  6326. <summary>
  6327. The collection of data to be returned. Must
  6328. be set by any derived attribute classes.
  6329. We use an object[] so that the individual
  6330. elements may have their type changed in GetData
  6331. if necessary.
  6332. </summary>
  6333. </member>
  6334. <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object)">
  6335. <summary>
  6336. Construct with one argument
  6337. </summary>
  6338. <param name="arg1"></param>
  6339. </member>
  6340. <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object)">
  6341. <summary>
  6342. Construct with two arguments
  6343. </summary>
  6344. <param name="arg1"></param>
  6345. <param name="arg2"></param>
  6346. </member>
  6347. <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object,System.Object)">
  6348. <summary>
  6349. Construct with three arguments
  6350. </summary>
  6351. <param name="arg1"></param>
  6352. <param name="arg2"></param>
  6353. <param name="arg3"></param>
  6354. </member>
  6355. <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object[])">
  6356. <summary>
  6357. Construct with an array of arguments
  6358. </summary>
  6359. <param name="args"></param>
  6360. </member>
  6361. <member name="M:NUnit.Framework.ValuesAttribute.GetData(System.Reflection.ParameterInfo)">
  6362. <summary>
  6363. Get the collection of values to be used as arguments
  6364. </summary>
  6365. </member>
  6366. <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32)">
  6367. <summary>
  6368. Construct a set of doubles from 0.0 to 1.0,
  6369. specifying only the count.
  6370. </summary>
  6371. <param name="count"></param>
  6372. </member>
  6373. <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Double,System.Double,System.Int32)">
  6374. <summary>
  6375. Construct a set of doubles from min to max
  6376. </summary>
  6377. <param name="min"></param>
  6378. <param name="max"></param>
  6379. <param name="count"></param>
  6380. </member>
  6381. <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
  6382. <summary>
  6383. Construct a set of ints from min to max
  6384. </summary>
  6385. <param name="min"></param>
  6386. <param name="max"></param>
  6387. <param name="count"></param>
  6388. </member>
  6389. <member name="M:NUnit.Framework.RandomAttribute.GetData(System.Reflection.ParameterInfo)">
  6390. <summary>
  6391. Get the collection of values to be used as arguments
  6392. </summary>
  6393. </member>
  6394. <member name="T:NUnit.Framework.RangeAttribute">
  6395. <summary>
  6396. RangeAttribute is used to supply a range of values to an
  6397. individual parameter of a parameterized test.
  6398. </summary>
  6399. </member>
  6400. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32)">
  6401. <summary>
  6402. Construct a range of ints using default step of 1
  6403. </summary>
  6404. <param name="from"></param>
  6405. <param name="to"></param>
  6406. </member>
  6407. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
  6408. <summary>
  6409. Construct a range of ints specifying the step size
  6410. </summary>
  6411. <param name="from"></param>
  6412. <param name="to"></param>
  6413. <param name="step"></param>
  6414. </member>
  6415. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int64,System.Int64,System.Int64)">
  6416. <summary>
  6417. Construct a range of longs
  6418. </summary>
  6419. <param name="from"></param>
  6420. <param name="to"></param>
  6421. <param name="step"></param>
  6422. </member>
  6423. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Double,System.Double,System.Double)">
  6424. <summary>
  6425. Construct a range of doubles
  6426. </summary>
  6427. <param name="from"></param>
  6428. <param name="to"></param>
  6429. <param name="step"></param>
  6430. </member>
  6431. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Single,System.Single,System.Single)">
  6432. <summary>
  6433. Construct a range of floats
  6434. </summary>
  6435. <param name="from"></param>
  6436. <param name="to"></param>
  6437. <param name="step"></param>
  6438. </member>
  6439. <member name="T:NUnit.Framework.RepeatAttribute">
  6440. <summary>
  6441. RepeatAttribute may be applied to test case in order
  6442. to run it multiple times.
  6443. </summary>
  6444. </member>
  6445. <member name="M:NUnit.Framework.RepeatAttribute.#ctor(System.Int32)">
  6446. <summary>
  6447. Construct a RepeatAttribute
  6448. </summary>
  6449. <param name="count">The number of times to run the test</param>
  6450. </member>
  6451. <member name="T:NUnit.Framework.RequiredAddinAttribute">
  6452. <summary>
  6453. RequiredAddinAttribute may be used to indicate the names of any addins
  6454. that must be present in order to run some or all of the tests in an
  6455. assembly. If the addin is not loaded, the entire assembly is marked
  6456. as NotRunnable.
  6457. </summary>
  6458. </member>
  6459. <member name="M:NUnit.Framework.RequiredAddinAttribute.#ctor(System.String)">
  6460. <summary>
  6461. Initializes a new instance of the <see cref="T:RequiredAddinAttribute"/> class.
  6462. </summary>
  6463. <param name="requiredAddin">The required addin.</param>
  6464. </member>
  6465. <member name="P:NUnit.Framework.RequiredAddinAttribute.RequiredAddin">
  6466. <summary>
  6467. Gets the name of required addin.
  6468. </summary>
  6469. <value>The required addin name.</value>
  6470. </member>
  6471. <member name="T:NUnit.Framework.SetCultureAttribute">
  6472. <summary>
  6473. Summary description for SetCultureAttribute.
  6474. </summary>
  6475. </member>
  6476. <member name="M:NUnit.Framework.SetCultureAttribute.#ctor(System.String)">
  6477. <summary>
  6478. Construct given the name of a culture
  6479. </summary>
  6480. <param name="culture"></param>
  6481. </member>
  6482. <member name="T:NUnit.Framework.SetUICultureAttribute">
  6483. <summary>
  6484. Summary description for SetUICultureAttribute.
  6485. </summary>
  6486. </member>
  6487. <member name="M:NUnit.Framework.SetUICultureAttribute.#ctor(System.String)">
  6488. <summary>
  6489. Construct given the name of a culture
  6490. </summary>
  6491. <param name="culture"></param>
  6492. </member>
  6493. <member name="T:NUnit.Framework.SetUpAttribute">
  6494. <summary>
  6495. SetUpAttribute is used in a TestFixture to identify a method
  6496. that is called immediately before each test is run. It is
  6497. also used in a SetUpFixture to identify the method that is
  6498. called once, before any of the subordinate tests are run.
  6499. </summary>
  6500. </member>
  6501. <member name="T:NUnit.Framework.SetUpFixtureAttribute">
  6502. <summary>
  6503. Attribute used to mark a class that contains one-time SetUp
  6504. and/or TearDown methods that apply to all the tests in a
  6505. namespace or an assembly.
  6506. </summary>
  6507. </member>
  6508. <member name="T:NUnit.Framework.SuiteAttribute">
  6509. <summary>
  6510. Attribute used to mark a static (shared in VB) property
  6511. that returns a list of tests.
  6512. </summary>
  6513. </member>
  6514. <member name="T:NUnit.Framework.TearDownAttribute">
  6515. <summary>
  6516. Attribute used in a TestFixture to identify a method that is
  6517. called immediately after each test is run. It is also used
  6518. in a SetUpFixture to identify the method that is called once,
  6519. after all subordinate tests have run. In either case, the method
  6520. is guaranteed to be called, even if an exception is thrown.
  6521. </summary>
  6522. </member>
  6523. <member name="T:NUnit.Framework.TestActionAttribute">
  6524. <summary>
  6525. Provide actions to execute before and after tests.
  6526. </summary>
  6527. </member>
  6528. <member name="T:NUnit.Framework.ITestAction">
  6529. <summary>
  6530. When implemented by an attribute, this interface implemented to provide actions to execute before and after tests.
  6531. </summary>
  6532. </member>
  6533. <member name="M:NUnit.Framework.ITestAction.BeforeTest(NUnit.Framework.TestDetails)">
  6534. <summary>
  6535. Executed before each test is run
  6536. </summary>
  6537. <param name="testDetails">Provides details about the test that is going to be run.</param>
  6538. </member>
  6539. <member name="M:NUnit.Framework.ITestAction.AfterTest(NUnit.Framework.TestDetails)">
  6540. <summary>
  6541. Executed after each test is run
  6542. </summary>
  6543. <param name="testDetails">Provides details about the test that has just been run.</param>
  6544. </member>
  6545. <member name="P:NUnit.Framework.ITestAction.Targets">
  6546. <summary>
  6547. Provides the target for the action attribute
  6548. </summary>
  6549. <returns>The target for the action attribute</returns>
  6550. </member>
  6551. <member name="M:NUnit.Framework.TestActionAttribute.BeforeTest(NUnit.Framework.TestDetails)">
  6552. <summary>
  6553. Method called before each test
  6554. </summary>
  6555. <param name="testDetails">Info about the test to be run</param>
  6556. </member>
  6557. <member name="M:NUnit.Framework.TestActionAttribute.AfterTest(NUnit.Framework.TestDetails)">
  6558. <summary>
  6559. Method called after each test
  6560. </summary>
  6561. <param name="testDetails">Info about the test that was just run</param>
  6562. </member>
  6563. <member name="P:NUnit.Framework.TestActionAttribute.Targets">
  6564. <summary>
  6565. Gets or sets the ActionTargets for this attribute
  6566. </summary>
  6567. </member>
  6568. <member name="T:NUnit.Framework.TestAttribute">
  6569. <summary>
  6570. Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
  6571. class makes the method callable from the NUnit test runner. There is a property
  6572. called Description which is optional which you can provide a more detailed test
  6573. description. This class cannot be inherited.
  6574. </summary>
  6575. <example>
  6576. [TestFixture]
  6577. public class Fixture
  6578. {
  6579. [Test]
  6580. public void MethodToTest()
  6581. {}
  6582. [Test(Description = "more detailed description")]
  6583. publc void TestDescriptionMethod()
  6584. {}
  6585. }
  6586. </example>
  6587. </member>
  6588. <member name="P:NUnit.Framework.TestAttribute.Description">
  6589. <summary>
  6590. Descriptive text for this test
  6591. </summary>
  6592. </member>
  6593. <member name="T:NUnit.Framework.TestCaseAttribute">
  6594. <summary>
  6595. TestCaseAttribute is used to mark parameterized test cases
  6596. and provide them with their arguments.
  6597. </summary>
  6598. </member>
  6599. <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object[])">
  6600. <summary>
  6601. Construct a TestCaseAttribute with a list of arguments.
  6602. This constructor is not CLS-Compliant
  6603. </summary>
  6604. <param name="arguments"></param>
  6605. </member>
  6606. <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object)">
  6607. <summary>
  6608. Construct a TestCaseAttribute with a single argument
  6609. </summary>
  6610. <param name="arg"></param>
  6611. </member>
  6612. <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object)">
  6613. <summary>
  6614. Construct a TestCaseAttribute with a two arguments
  6615. </summary>
  6616. <param name="arg1"></param>
  6617. <param name="arg2"></param>
  6618. </member>
  6619. <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object,System.Object)">
  6620. <summary>
  6621. Construct a TestCaseAttribute with a three arguments
  6622. </summary>
  6623. <param name="arg1"></param>
  6624. <param name="arg2"></param>
  6625. <param name="arg3"></param>
  6626. </member>
  6627. <member name="P:NUnit.Framework.TestCaseAttribute.Arguments">
  6628. <summary>
  6629. Gets the list of arguments to a test case
  6630. </summary>
  6631. </member>
  6632. <member name="P:NUnit.Framework.TestCaseAttribute.Result">
  6633. <summary>
  6634. Gets or sets the expected result. Use
  6635. ExpectedResult by preference.
  6636. </summary>
  6637. <value>The result.</value>
  6638. </member>
  6639. <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedResult">
  6640. <summary>
  6641. Gets or sets the expected result.
  6642. </summary>
  6643. <value>The result.</value>
  6644. </member>
  6645. <member name="P:NUnit.Framework.TestCaseAttribute.HasExpectedResult">
  6646. <summary>
  6647. Gets a flag indicating whether an expected
  6648. result has been set.
  6649. </summary>
  6650. </member>
  6651. <member name="P:NUnit.Framework.TestCaseAttribute.Categories">
  6652. <summary>
  6653. Gets a list of categories associated with this test;
  6654. </summary>
  6655. </member>
  6656. <member name="P:NUnit.Framework.TestCaseAttribute.Category">
  6657. <summary>
  6658. Gets or sets the category associated with this test.
  6659. May be a single category or a comma-separated list.
  6660. </summary>
  6661. </member>
  6662. <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedException">
  6663. <summary>
  6664. Gets or sets the expected exception.
  6665. </summary>
  6666. <value>The expected exception.</value>
  6667. </member>
  6668. <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedExceptionName">
  6669. <summary>
  6670. Gets or sets the name the expected exception.
  6671. </summary>
  6672. <value>The expected name of the exception.</value>
  6673. </member>
  6674. <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedMessage">
  6675. <summary>
  6676. Gets or sets the expected message of the expected exception
  6677. </summary>
  6678. <value>The expected message of the exception.</value>
  6679. </member>
  6680. <member name="P:NUnit.Framework.TestCaseAttribute.MatchType">
  6681. <summary>
  6682. Gets or sets the type of match to be performed on the expected message
  6683. </summary>
  6684. </member>
  6685. <member name="P:NUnit.Framework.TestCaseAttribute.Description">
  6686. <summary>
  6687. Gets or sets the description.
  6688. </summary>
  6689. <value>The description.</value>
  6690. </member>
  6691. <member name="P:NUnit.Framework.TestCaseAttribute.TestName">
  6692. <summary>
  6693. Gets or sets the name of the test.
  6694. </summary>
  6695. <value>The name of the test.</value>
  6696. </member>
  6697. <member name="P:NUnit.Framework.TestCaseAttribute.Ignore">
  6698. <summary>
  6699. Gets or sets the ignored status of the test
  6700. </summary>
  6701. </member>
  6702. <member name="P:NUnit.Framework.TestCaseAttribute.Ignored">
  6703. <summary>
  6704. Gets or sets the ignored status of the test
  6705. </summary>
  6706. </member>
  6707. <member name="P:NUnit.Framework.TestCaseAttribute.Explicit">
  6708. <summary>
  6709. Gets or sets the explicit status of the test
  6710. </summary>
  6711. </member>
  6712. <member name="P:NUnit.Framework.TestCaseAttribute.Reason">
  6713. <summary>
  6714. Gets or sets the reason for not running the test
  6715. </summary>
  6716. </member>
  6717. <member name="P:NUnit.Framework.TestCaseAttribute.IgnoreReason">
  6718. <summary>
  6719. Gets or sets the reason for not running the test.
  6720. Set has the side effect of marking the test as ignored.
  6721. </summary>
  6722. <value>The ignore reason.</value>
  6723. </member>
  6724. <member name="T:NUnit.Framework.TestCaseSourceAttribute">
  6725. <summary>
  6726. FactoryAttribute indicates the source to be used to
  6727. provide test cases for a test method.
  6728. </summary>
  6729. </member>
  6730. <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.String)">
  6731. <summary>
  6732. Construct with the name of the data source, which must
  6733. be a property, field or method of the test class itself.
  6734. </summary>
  6735. <param name="sourceName">An array of the names of the factories that will provide data</param>
  6736. </member>
  6737. <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.Type)">
  6738. <summary>
  6739. Construct with a Type, which must implement IEnumerable
  6740. </summary>
  6741. <param name="sourceType">The Type that will provide data</param>
  6742. </member>
  6743. <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.Type,System.String)">
  6744. <summary>
  6745. Construct with a Type and name.
  6746. that don't support params arrays.
  6747. </summary>
  6748. <param name="sourceType">The Type that will provide data</param>
  6749. <param name="sourceName">The name of the method, property or field that will provide data</param>
  6750. </member>
  6751. <member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceName">
  6752. <summary>
  6753. The name of a the method, property or fiend to be used as a source
  6754. </summary>
  6755. </member>
  6756. <member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceType">
  6757. <summary>
  6758. A Type to be used as a source
  6759. </summary>
  6760. </member>
  6761. <member name="P:NUnit.Framework.TestCaseSourceAttribute.Category">
  6762. <summary>
  6763. Gets or sets the category associated with this test.
  6764. May be a single category or a comma-separated list.
  6765. </summary>
  6766. </member>
  6767. <member name="T:NUnit.Framework.TestFixtureAttribute">
  6768. <example>
  6769. [TestFixture]
  6770. public class ExampleClass
  6771. {}
  6772. </example>
  6773. </member>
  6774. <member name="M:NUnit.Framework.TestFixtureAttribute.#ctor">
  6775. <summary>
  6776. Default constructor
  6777. </summary>
  6778. </member>
  6779. <member name="M:NUnit.Framework.TestFixtureAttribute.#ctor(System.Object[])">
  6780. <summary>
  6781. Construct with a object[] representing a set of arguments.
  6782. In .NET 2.0, the arguments may later be separated into
  6783. type arguments and constructor arguments.
  6784. </summary>
  6785. <param name="arguments"></param>
  6786. </member>
  6787. <member name="P:NUnit.Framework.TestFixtureAttribute.Description">
  6788. <summary>
  6789. Descriptive text for this fixture
  6790. </summary>
  6791. </member>
  6792. <member name="P:NUnit.Framework.TestFixtureAttribute.Category">
  6793. <summary>
  6794. Gets and sets the category for this fixture.
  6795. May be a comma-separated list of categories.
  6796. </summary>
  6797. </member>
  6798. <member name="P:NUnit.Framework.TestFixtureAttribute.Categories">
  6799. <summary>
  6800. Gets a list of categories for this fixture
  6801. </summary>
  6802. </member>
  6803. <member name="P:NUnit.Framework.TestFixtureAttribute.Arguments">
  6804. <summary>
  6805. The arguments originally provided to the attribute
  6806. </summary>
  6807. </member>
  6808. <member name="P:NUnit.Framework.TestFixtureAttribute.Ignore">
  6809. <summary>
  6810. Gets or sets a value indicating whether this <see cref="T:NUnit.Framework.TestFixtureAttribute"/> should be ignored.
  6811. </summary>
  6812. <value><c>true</c> if ignore; otherwise, <c>false</c>.</value>
  6813. </member>
  6814. <member name="P:NUnit.Framework.TestFixtureAttribute.IgnoreReason">
  6815. <summary>
  6816. Gets or sets the ignore reason. May set Ignored as a side effect.
  6817. </summary>
  6818. <value>The ignore reason.</value>
  6819. </member>
  6820. <member name="P:NUnit.Framework.TestFixtureAttribute.TypeArgs">
  6821. <summary>
  6822. Get or set the type arguments. If not set
  6823. explicitly, any leading arguments that are
  6824. Types are taken as type arguments.
  6825. </summary>
  6826. </member>
  6827. <member name="T:NUnit.Framework.TestFixtureSetUpAttribute">
  6828. <summary>
  6829. Attribute used to identify a method that is
  6830. called before any tests in a fixture are run.
  6831. </summary>
  6832. </member>
  6833. <member name="T:NUnit.Framework.TestFixtureTearDownAttribute">
  6834. <summary>
  6835. Attribute used to identify a method that is called after
  6836. all the tests in a fixture have run. The method is
  6837. guaranteed to be called, even if an exception is thrown.
  6838. </summary>
  6839. </member>
  6840. <member name="T:NUnit.Framework.TheoryAttribute">
  6841. <summary>
  6842. Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
  6843. class makes the method callable from the NUnit test runner. There is a property
  6844. called Description which is optional which you can provide a more detailed test
  6845. description. This class cannot be inherited.
  6846. </summary>
  6847. <example>
  6848. [TestFixture]
  6849. public class Fixture
  6850. {
  6851. [Test]
  6852. public void MethodToTest()
  6853. {}
  6854. [Test(Description = "more detailed description")]
  6855. publc void TestDescriptionMethod()
  6856. {}
  6857. }
  6858. </example>
  6859. </member>
  6860. <member name="T:NUnit.Framework.TimeoutAttribute">
  6861. <summary>
  6862. Used on a method, marks the test with a timeout value in milliseconds.
  6863. The test will be run in a separate thread and is cancelled if the timeout
  6864. is exceeded. Used on a method or assembly, sets the default timeout
  6865. for all contained test methods.
  6866. </summary>
  6867. </member>
  6868. <member name="M:NUnit.Framework.TimeoutAttribute.#ctor(System.Int32)">
  6869. <summary>
  6870. Construct a TimeoutAttribute given a time in milliseconds
  6871. </summary>
  6872. <param name="timeout">The timeout value in milliseconds</param>
  6873. </member>
  6874. <member name="T:NUnit.Framework.RequiresSTAAttribute">
  6875. <summary>
  6876. Marks a test that must run in the STA, causing it
  6877. to run in a separate thread if necessary.
  6878. On methods, you may also use STAThreadAttribute
  6879. to serve the same purpose.
  6880. </summary>
  6881. </member>
  6882. <member name="M:NUnit.Framework.RequiresSTAAttribute.#ctor">
  6883. <summary>
  6884. Construct a RequiresSTAAttribute
  6885. </summary>
  6886. </member>
  6887. <member name="T:NUnit.Framework.RequiresMTAAttribute">
  6888. <summary>
  6889. Marks a test that must run in the MTA, causing it
  6890. to run in a separate thread if necessary.
  6891. On methods, you may also use MTAThreadAttribute
  6892. to serve the same purpose.
  6893. </summary>
  6894. </member>
  6895. <member name="M:NUnit.Framework.RequiresMTAAttribute.#ctor">
  6896. <summary>
  6897. Construct a RequiresMTAAttribute
  6898. </summary>
  6899. </member>
  6900. <member name="T:NUnit.Framework.RequiresThreadAttribute">
  6901. <summary>
  6902. Marks a test that must run on a separate thread.
  6903. </summary>
  6904. </member>
  6905. <member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor">
  6906. <summary>
  6907. Construct a RequiresThreadAttribute
  6908. </summary>
  6909. </member>
  6910. <member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor(System.Threading.ApartmentState)">
  6911. <summary>
  6912. Construct a RequiresThreadAttribute, specifying the apartment
  6913. </summary>
  6914. </member>
  6915. <member name="T:NUnit.Framework.ValueSourceAttribute">
  6916. <summary>
  6917. ValueSourceAttribute indicates the source to be used to
  6918. provide data for one parameter of a test method.
  6919. </summary>
  6920. </member>
  6921. <member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.String)">
  6922. <summary>
  6923. Construct with the name of the factory - for use with languages
  6924. that don't support params arrays.
  6925. </summary>
  6926. <param name="sourceName">The name of the data source to be used</param>
  6927. </member>
  6928. <member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.Type,System.String)">
  6929. <summary>
  6930. Construct with a Type and name - for use with languages
  6931. that don't support params arrays.
  6932. </summary>
  6933. <param name="sourceType">The Type that will provide data</param>
  6934. <param name="sourceName">The name of the method, property or field that will provide data</param>
  6935. </member>
  6936. <member name="P:NUnit.Framework.ValueSourceAttribute.SourceName">
  6937. <summary>
  6938. The name of a the method, property or fiend to be used as a source
  6939. </summary>
  6940. </member>
  6941. <member name="P:NUnit.Framework.ValueSourceAttribute.SourceType">
  6942. <summary>
  6943. A Type to be used as a source
  6944. </summary>
  6945. </member>
  6946. <member name="T:NUnit.Framework.Constraints.AllItemsConstraint">
  6947. <summary>
  6948. AllItemsConstraint applies another constraint to each
  6949. item in a collection, succeeding if they all succeed.
  6950. </summary>
  6951. </member>
  6952. <member name="T:NUnit.Framework.Constraints.PrefixConstraint">
  6953. <summary>
  6954. Abstract base class used for prefixes
  6955. </summary>
  6956. </member>
  6957. <member name="T:NUnit.Framework.Constraints.Constraint">
  6958. <summary>
  6959. The Constraint class is the base of all built-in constraints
  6960. within NUnit. It provides the operator overloads used to combine
  6961. constraints.
  6962. </summary>
  6963. </member>
  6964. <member name="T:NUnit.Framework.Constraints.IResolveConstraint">
  6965. <summary>
  6966. The IConstraintExpression interface is implemented by all
  6967. complete and resolvable constraints and expressions.
  6968. </summary>
  6969. </member>
  6970. <member name="M:NUnit.Framework.Constraints.IResolveConstraint.Resolve">
  6971. <summary>
  6972. Return the top-level constraint for this expression
  6973. </summary>
  6974. <returns></returns>
  6975. </member>
  6976. <member name="F:NUnit.Framework.Constraints.Constraint.UNSET">
  6977. <summary>
  6978. Static UnsetObject used to detect derived constraints
  6979. failing to set the actual value.
  6980. </summary>
  6981. </member>
  6982. <member name="F:NUnit.Framework.Constraints.Constraint.actual">
  6983. <summary>
  6984. The actual value being tested against a constraint
  6985. </summary>
  6986. </member>
  6987. <member name="F:NUnit.Framework.Constraints.Constraint.displayName">
  6988. <summary>
  6989. The display name of this Constraint for use by ToString()
  6990. </summary>
  6991. </member>
  6992. <member name="F:NUnit.Framework.Constraints.Constraint.argcnt">
  6993. <summary>
  6994. Argument fields used by ToString();
  6995. </summary>
  6996. </member>
  6997. <member name="F:NUnit.Framework.Constraints.Constraint.builder">
  6998. <summary>
  6999. The builder holding this constraint
  7000. </summary>
  7001. </member>
  7002. <member name="M:NUnit.Framework.Constraints.Constraint.#ctor">
  7003. <summary>
  7004. Construct a constraint with no arguments
  7005. </summary>
  7006. </member>
  7007. <member name="M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object)">
  7008. <summary>
  7009. Construct a constraint with one argument
  7010. </summary>
  7011. </member>
  7012. <member name="M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object,System.Object)">
  7013. <summary>
  7014. Construct a constraint with two arguments
  7015. </summary>
  7016. </member>
  7017. <member name="M:NUnit.Framework.Constraints.Constraint.SetBuilder(NUnit.Framework.Constraints.ConstraintBuilder)">
  7018. <summary>
  7019. Sets the ConstraintBuilder holding this constraint
  7020. </summary>
  7021. </member>
  7022. <member name="M:NUnit.Framework.Constraints.Constraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)">
  7023. <summary>
  7024. Write the failure message to the MessageWriter provided
  7025. as an argument. The default implementation simply passes
  7026. the constraint and the actual value to the writer, which
  7027. then displays the constraint description and the value.
  7028. Constraints that need to provide additional details,
  7029. such as where the error occured can override this.
  7030. </summary>
  7031. <param name="writer">The MessageWriter on which to display the message</param>
  7032. </member>
  7033. <member name="M:NUnit.Framework.Constraints.Constraint.Matches(System.Object)">
  7034. <summary>
  7035. Test whether the constraint is satisfied by a given value
  7036. </summary>
  7037. <param name="actual">The value to be tested</param>
  7038. <returns>True for success, false for failure</returns>
  7039. </member>
  7040. <member name="M:NUnit.Framework.Constraints.Constraint.Matches``1(NUnit.Framework.Constraints.ActualValueDelegate{``0})">
  7041. <summary>
  7042. Test whether the constraint is satisfied by an
  7043. ActualValueDelegate that returns the value to be tested.
  7044. The default implementation simply evaluates the delegate
  7045. but derived classes may override it to provide for delayed
  7046. processing.
  7047. </summary>
  7048. <param name="del">An <see cref="T:NUnit.Framework.Constraints.ActualValueDelegate`1"/></param>
  7049. <returns>True for success, false for failure</returns>
  7050. </member>
  7051. <member name="M:NUnit.Framework.Constraints.Constraint.Matches``1(``0@)">
  7052. <summary>
  7053. Test whether the constraint is satisfied by a given reference.
  7054. The default implementation simply dereferences the value but
  7055. derived classes may override it to provide for delayed processing.
  7056. </summary>
  7057. <param name="actual">A reference to the value to be tested</param>
  7058. <returns>True for success, false for failure</returns>
  7059. </member>
  7060. <member name="M:NUnit.Framework.Constraints.Constraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7061. <summary>
  7062. Write the constraint description to a MessageWriter
  7063. </summary>
  7064. <param name="writer">The writer on which the description is displayed</param>
  7065. </member>
  7066. <member name="M:NUnit.Framework.Constraints.Constraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  7067. <summary>
  7068. Write the actual value for a failing constraint test to a
  7069. MessageWriter. The default implementation simply writes
  7070. the raw value of actual, leaving it to the writer to
  7071. perform any formatting.
  7072. </summary>
  7073. <param name="writer">The writer on which the actual value is displayed</param>
  7074. </member>
  7075. <member name="M:NUnit.Framework.Constraints.Constraint.ToString">
  7076. <summary>
  7077. Default override of ToString returns the constraint DisplayName
  7078. followed by any arguments within angle brackets.
  7079. </summary>
  7080. <returns></returns>
  7081. </member>
  7082. <member name="M:NUnit.Framework.Constraints.Constraint.GetStringRepresentation">
  7083. <summary>
  7084. Returns the string representation of this constraint
  7085. </summary>
  7086. </member>
  7087. <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  7088. <summary>
  7089. This operator creates a constraint that is satisfied only if both
  7090. argument constraints are satisfied.
  7091. </summary>
  7092. </member>
  7093. <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  7094. <summary>
  7095. This operator creates a constraint that is satisfied if either
  7096. of the argument constraints is satisfied.
  7097. </summary>
  7098. </member>
  7099. <member name="M:NUnit.Framework.Constraints.Constraint.op_LogicalNot(NUnit.Framework.Constraints.Constraint)">
  7100. <summary>
  7101. This operator creates a constraint that is satisfied if the
  7102. argument constraint is not satisfied.
  7103. </summary>
  7104. </member>
  7105. <member name="M:NUnit.Framework.Constraints.Constraint.After(System.Int32)">
  7106. <summary>
  7107. Returns a DelayedConstraint with the specified delay time.
  7108. </summary>
  7109. <param name="delayInMilliseconds">The delay in milliseconds.</param>
  7110. <returns></returns>
  7111. </member>
  7112. <member name="M:NUnit.Framework.Constraints.Constraint.After(System.Int32,System.Int32)">
  7113. <summary>
  7114. Returns a DelayedConstraint with the specified delay time
  7115. and polling interval.
  7116. </summary>
  7117. <param name="delayInMilliseconds">The delay in milliseconds.</param>
  7118. <param name="pollingInterval">The interval at which to test the constraint.</param>
  7119. <returns></returns>
  7120. </member>
  7121. <member name="P:NUnit.Framework.Constraints.Constraint.DisplayName">
  7122. <summary>
  7123. The display name of this Constraint for use by ToString().
  7124. The default value is the name of the constraint with
  7125. trailing "Constraint" removed. Derived classes may set
  7126. this to another name in their constructors.
  7127. </summary>
  7128. </member>
  7129. <member name="P:NUnit.Framework.Constraints.Constraint.And">
  7130. <summary>
  7131. Returns a ConstraintExpression by appending And
  7132. to the current constraint.
  7133. </summary>
  7134. </member>
  7135. <member name="P:NUnit.Framework.Constraints.Constraint.With">
  7136. <summary>
  7137. Returns a ConstraintExpression by appending And
  7138. to the current constraint.
  7139. </summary>
  7140. </member>
  7141. <member name="P:NUnit.Framework.Constraints.Constraint.Or">
  7142. <summary>
  7143. Returns a ConstraintExpression by appending Or
  7144. to the current constraint.
  7145. </summary>
  7146. </member>
  7147. <member name="T:NUnit.Framework.Constraints.Constraint.UnsetObject">
  7148. <summary>
  7149. Class used to detect any derived constraints
  7150. that fail to set the actual value in their
  7151. Matches override.
  7152. </summary>
  7153. </member>
  7154. <member name="F:NUnit.Framework.Constraints.PrefixConstraint.baseConstraint">
  7155. <summary>
  7156. The base constraint
  7157. </summary>
  7158. </member>
  7159. <member name="M:NUnit.Framework.Constraints.PrefixConstraint.#ctor(NUnit.Framework.Constraints.IResolveConstraint)">
  7160. <summary>
  7161. Construct given a base constraint
  7162. </summary>
  7163. <param name="resolvable"></param>
  7164. </member>
  7165. <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  7166. <summary>
  7167. Construct an AllItemsConstraint on top of an existing constraint
  7168. </summary>
  7169. <param name="itemConstraint"></param>
  7170. </member>
  7171. <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.Matches(System.Object)">
  7172. <summary>
  7173. Apply the item constraint to each item in the collection,
  7174. failing if any item fails.
  7175. </summary>
  7176. <param name="actual"></param>
  7177. <returns></returns>
  7178. </member>
  7179. <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7180. <summary>
  7181. Write a description of this constraint to a MessageWriter
  7182. </summary>
  7183. <param name="writer"></param>
  7184. </member>
  7185. <member name="T:NUnit.Framework.Constraints.AndConstraint">
  7186. <summary>
  7187. AndConstraint succeeds only if both members succeed.
  7188. </summary>
  7189. </member>
  7190. <member name="T:NUnit.Framework.Constraints.BinaryConstraint">
  7191. <summary>
  7192. BinaryConstraint is the abstract base of all constraints
  7193. that combine two other constraints in some fashion.
  7194. </summary>
  7195. </member>
  7196. <member name="F:NUnit.Framework.Constraints.BinaryConstraint.left">
  7197. <summary>
  7198. The first constraint being combined
  7199. </summary>
  7200. </member>
  7201. <member name="F:NUnit.Framework.Constraints.BinaryConstraint.right">
  7202. <summary>
  7203. The second constraint being combined
  7204. </summary>
  7205. </member>
  7206. <member name="M:NUnit.Framework.Constraints.BinaryConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  7207. <summary>
  7208. Construct a BinaryConstraint from two other constraints
  7209. </summary>
  7210. <param name="left">The first constraint</param>
  7211. <param name="right">The second constraint</param>
  7212. </member>
  7213. <member name="M:NUnit.Framework.Constraints.AndConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  7214. <summary>
  7215. Create an AndConstraint from two other constraints
  7216. </summary>
  7217. <param name="left">The first constraint</param>
  7218. <param name="right">The second constraint</param>
  7219. </member>
  7220. <member name="M:NUnit.Framework.Constraints.AndConstraint.Matches(System.Object)">
  7221. <summary>
  7222. Apply both member constraints to an actual value, succeeding
  7223. succeeding only if both of them succeed.
  7224. </summary>
  7225. <param name="actual">The actual value</param>
  7226. <returns>True if the constraints both succeeded</returns>
  7227. </member>
  7228. <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7229. <summary>
  7230. Write a description for this contraint to a MessageWriter
  7231. </summary>
  7232. <param name="writer">The MessageWriter to receive the description</param>
  7233. </member>
  7234. <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  7235. <summary>
  7236. Write the actual value for a failing constraint test to a
  7237. MessageWriter. The default implementation simply writes
  7238. the raw value of actual, leaving it to the writer to
  7239. perform any formatting.
  7240. </summary>
  7241. <param name="writer">The writer on which the actual value is displayed</param>
  7242. </member>
  7243. <member name="T:NUnit.Framework.Constraints.AssignableFromConstraint">
  7244. <summary>
  7245. AssignableFromConstraint is used to test that an object
  7246. can be assigned from a given Type.
  7247. </summary>
  7248. </member>
  7249. <member name="T:NUnit.Framework.Constraints.TypeConstraint">
  7250. <summary>
  7251. TypeConstraint is the abstract base for constraints
  7252. that take a Type as their expected value.
  7253. </summary>
  7254. </member>
  7255. <member name="F:NUnit.Framework.Constraints.TypeConstraint.expectedType">
  7256. <summary>
  7257. The expected Type used by the constraint
  7258. </summary>
  7259. </member>
  7260. <member name="M:NUnit.Framework.Constraints.TypeConstraint.#ctor(System.Type)">
  7261. <summary>
  7262. Construct a TypeConstraint for a given Type
  7263. </summary>
  7264. <param name="type"></param>
  7265. </member>
  7266. <member name="M:NUnit.Framework.Constraints.TypeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  7267. <summary>
  7268. Write the actual value for a failing constraint test to a
  7269. MessageWriter. TypeConstraints override this method to write
  7270. the name of the type.
  7271. </summary>
  7272. <param name="writer">The writer on which the actual value is displayed</param>
  7273. </member>
  7274. <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.#ctor(System.Type)">
  7275. <summary>
  7276. Construct an AssignableFromConstraint for the type provided
  7277. </summary>
  7278. <param name="type"></param>
  7279. </member>
  7280. <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.Matches(System.Object)">
  7281. <summary>
  7282. Test whether an object can be assigned from the specified type
  7283. </summary>
  7284. <param name="actual">The object to be tested</param>
  7285. <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>
  7286. </member>
  7287. <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7288. <summary>
  7289. Write a description of this constraint to a MessageWriter
  7290. </summary>
  7291. <param name="writer">The MessageWriter to use</param>
  7292. </member>
  7293. <member name="T:NUnit.Framework.Constraints.AssignableToConstraint">
  7294. <summary>
  7295. AssignableToConstraint is used to test that an object
  7296. can be assigned to a given Type.
  7297. </summary>
  7298. </member>
  7299. <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.#ctor(System.Type)">
  7300. <summary>
  7301. Construct an AssignableToConstraint for the type provided
  7302. </summary>
  7303. <param name="type"></param>
  7304. </member>
  7305. <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.Matches(System.Object)">
  7306. <summary>
  7307. Test whether an object can be assigned to the specified type
  7308. </summary>
  7309. <param name="actual">The object to be tested</param>
  7310. <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>
  7311. </member>
  7312. <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7313. <summary>
  7314. Write a description of this constraint to a MessageWriter
  7315. </summary>
  7316. <param name="writer">The MessageWriter to use</param>
  7317. </member>
  7318. <member name="T:NUnit.Framework.Constraints.AttributeConstraint">
  7319. <summary>
  7320. AttributeConstraint tests that a specified attribute is present
  7321. on a Type or other provider and that the value of the attribute
  7322. satisfies some other constraint.
  7323. </summary>
  7324. </member>
  7325. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.#ctor(System.Type,NUnit.Framework.Constraints.Constraint)">
  7326. <summary>
  7327. Constructs an AttributeConstraint for a specified attriute
  7328. Type and base constraint.
  7329. </summary>
  7330. <param name="type"></param>
  7331. <param name="baseConstraint"></param>
  7332. </member>
  7333. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.Matches(System.Object)">
  7334. <summary>
  7335. Determines whether the Type or other provider has the
  7336. expected attribute and if its value matches the
  7337. additional constraint specified.
  7338. </summary>
  7339. </member>
  7340. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7341. <summary>
  7342. Writes a description of the attribute to the specified writer.
  7343. </summary>
  7344. </member>
  7345. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  7346. <summary>
  7347. Writes the actual value supplied to the specified writer.
  7348. </summary>
  7349. </member>
  7350. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.GetStringRepresentation">
  7351. <summary>
  7352. Returns a string representation of the constraint.
  7353. </summary>
  7354. </member>
  7355. <member name="T:NUnit.Framework.Constraints.AttributeExistsConstraint">
  7356. <summary>
  7357. AttributeExistsConstraint tests for the presence of a
  7358. specified attribute on a Type.
  7359. </summary>
  7360. </member>
  7361. <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.#ctor(System.Type)">
  7362. <summary>
  7363. Constructs an AttributeExistsConstraint for a specific attribute Type
  7364. </summary>
  7365. <param name="type"></param>
  7366. </member>
  7367. <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.Matches(System.Object)">
  7368. <summary>
  7369. Tests whether the object provides the expected attribute.
  7370. </summary>
  7371. <param name="actual">A Type, MethodInfo, or other ICustomAttributeProvider</param>
  7372. <returns>True if the expected attribute is present, otherwise false</returns>
  7373. </member>
  7374. <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7375. <summary>
  7376. Writes the description of the constraint to the specified writer
  7377. </summary>
  7378. </member>
  7379. <member name="T:NUnit.Framework.Constraints.BasicConstraint">
  7380. <summary>
  7381. BasicConstraint is the abstract base for constraints that
  7382. perform a simple comparison to a constant value.
  7383. </summary>
  7384. </member>
  7385. <member name="M:NUnit.Framework.Constraints.BasicConstraint.#ctor(System.Object,System.String)">
  7386. <summary>
  7387. Initializes a new instance of the <see cref="T:BasicConstraint"/> class.
  7388. </summary>
  7389. <param name="expected">The expected.</param>
  7390. <param name="description">The description.</param>
  7391. </member>
  7392. <member name="M:NUnit.Framework.Constraints.BasicConstraint.Matches(System.Object)">
  7393. <summary>
  7394. Test whether the constraint is satisfied by a given value
  7395. </summary>
  7396. <param name="actual">The value to be tested</param>
  7397. <returns>True for success, false for failure</returns>
  7398. </member>
  7399. <member name="M:NUnit.Framework.Constraints.BasicConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7400. <summary>
  7401. Write the constraint description to a MessageWriter
  7402. </summary>
  7403. <param name="writer">The writer on which the description is displayed</param>
  7404. </member>
  7405. <member name="T:NUnit.Framework.Constraints.BinarySerializableConstraint">
  7406. <summary>
  7407. BinarySerializableConstraint tests whether
  7408. an object is serializable in binary format.
  7409. </summary>
  7410. </member>
  7411. <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.Matches(System.Object)">
  7412. <summary>
  7413. Test whether the constraint is satisfied by a given value
  7414. </summary>
  7415. <param name="actual">The value to be tested</param>
  7416. <returns>True for success, false for failure</returns>
  7417. </member>
  7418. <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7419. <summary>
  7420. Write the constraint description to a MessageWriter
  7421. </summary>
  7422. <param name="writer">The writer on which the description is displayed</param>
  7423. </member>
  7424. <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  7425. <summary>
  7426. Write the actual value for a failing constraint test to a
  7427. MessageWriter. The default implementation simply writes
  7428. the raw value of actual, leaving it to the writer to
  7429. perform any formatting.
  7430. </summary>
  7431. <param name="writer">The writer on which the actual value is displayed</param>
  7432. </member>
  7433. <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.GetStringRepresentation">
  7434. <summary>
  7435. Returns the string representation
  7436. </summary>
  7437. </member>
  7438. <member name="T:NUnit.Framework.Constraints.CollectionConstraint">
  7439. <summary>
  7440. CollectionConstraint is the abstract base class for
  7441. constraints that operate on collections.
  7442. </summary>
  7443. </member>
  7444. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.#ctor">
  7445. <summary>
  7446. Construct an empty CollectionConstraint
  7447. </summary>
  7448. </member>
  7449. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.#ctor(System.Object)">
  7450. <summary>
  7451. Construct a CollectionConstraint
  7452. </summary>
  7453. <param name="arg"></param>
  7454. </member>
  7455. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.IsEmpty(System.Collections.IEnumerable)">
  7456. <summary>
  7457. Determines whether the specified enumerable is empty.
  7458. </summary>
  7459. <param name="enumerable">The enumerable.</param>
  7460. <returns>
  7461. <c>true</c> if the specified enumerable is empty; otherwise, <c>false</c>.
  7462. </returns>
  7463. </member>
  7464. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.Matches(System.Object)">
  7465. <summary>
  7466. Test whether the constraint is satisfied by a given value
  7467. </summary>
  7468. <param name="actual">The value to be tested</param>
  7469. <returns>True for success, false for failure</returns>
  7470. </member>
  7471. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.doMatch(System.Collections.IEnumerable)">
  7472. <summary>
  7473. Protected method to be implemented by derived classes
  7474. </summary>
  7475. <param name="collection"></param>
  7476. <returns></returns>
  7477. </member>
  7478. <member name="T:NUnit.Framework.Constraints.CollectionContainsConstraint">
  7479. <summary>
  7480. CollectionContainsConstraint is used to test whether a collection
  7481. contains an expected object as a member.
  7482. </summary>
  7483. </member>
  7484. <member name="T:NUnit.Framework.Constraints.CollectionItemsEqualConstraint">
  7485. <summary>
  7486. CollectionItemsEqualConstraint is the abstract base class for all
  7487. collection constraints that apply some notion of item equality
  7488. as a part of their operation.
  7489. </summary>
  7490. </member>
  7491. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor">
  7492. <summary>
  7493. Construct an empty CollectionConstraint
  7494. </summary>
  7495. </member>
  7496. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor(System.Object)">
  7497. <summary>
  7498. Construct a CollectionConstraint
  7499. </summary>
  7500. <param name="arg"></param>
  7501. </member>
  7502. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(NUnit.Framework.Constraints.EqualityAdapter)">
  7503. <summary>
  7504. Flag the constraint to use the supplied EqualityAdapter.
  7505. NOTE: For internal use only.
  7506. </summary>
  7507. <param name="adapter">The EqualityAdapter to use.</param>
  7508. <returns>Self.</returns>
  7509. </member>
  7510. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IComparer)">
  7511. <summary>
  7512. Flag the constraint to use the supplied IComparer object.
  7513. </summary>
  7514. <param name="comparer">The IComparer object to use.</param>
  7515. <returns>Self.</returns>
  7516. </member>
  7517. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  7518. <summary>
  7519. Flag the constraint to use the supplied IComparer object.
  7520. </summary>
  7521. <param name="comparer">The IComparer object to use.</param>
  7522. <returns>Self.</returns>
  7523. </member>
  7524. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Comparison{``0})">
  7525. <summary>
  7526. Flag the constraint to use the supplied Comparison object.
  7527. </summary>
  7528. <param name="comparer">The IComparer object to use.</param>
  7529. <returns>Self.</returns>
  7530. </member>
  7531. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IEqualityComparer)">
  7532. <summary>
  7533. Flag the constraint to use the supplied IEqualityComparer object.
  7534. </summary>
  7535. <param name="comparer">The IComparer object to use.</param>
  7536. <returns>Self.</returns>
  7537. </member>
  7538. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
  7539. <summary>
  7540. Flag the constraint to use the supplied IEqualityComparer object.
  7541. </summary>
  7542. <param name="comparer">The IComparer object to use.</param>
  7543. <returns>Self.</returns>
  7544. </member>
  7545. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.ItemsEqual(System.Object,System.Object)">
  7546. <summary>
  7547. Compares two collection members for equality
  7548. </summary>
  7549. </member>
  7550. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Tally(System.Collections.IEnumerable)">
  7551. <summary>
  7552. Return a new CollectionTally for use in making tests
  7553. </summary>
  7554. <param name="c">The collection to be included in the tally</param>
  7555. </member>
  7556. <member name="P:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.IgnoreCase">
  7557. <summary>
  7558. Flag the constraint to ignore case and return self.
  7559. </summary>
  7560. </member>
  7561. <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.#ctor(System.Object)">
  7562. <summary>
  7563. Construct a CollectionContainsConstraint
  7564. </summary>
  7565. <param name="expected"></param>
  7566. </member>
  7567. <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.doMatch(System.Collections.IEnumerable)">
  7568. <summary>
  7569. Test whether the expected item is contained in the collection
  7570. </summary>
  7571. <param name="actual"></param>
  7572. <returns></returns>
  7573. </member>
  7574. <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7575. <summary>
  7576. Write a descripton of the constraint to a MessageWriter
  7577. </summary>
  7578. <param name="writer"></param>
  7579. </member>
  7580. <member name="T:NUnit.Framework.Constraints.CollectionEquivalentConstraint">
  7581. <summary>
  7582. CollectionEquivalentCOnstraint is used to determine whether two
  7583. collections are equivalent.
  7584. </summary>
  7585. </member>
  7586. <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.#ctor(System.Collections.IEnumerable)">
  7587. <summary>
  7588. Construct a CollectionEquivalentConstraint
  7589. </summary>
  7590. <param name="expected"></param>
  7591. </member>
  7592. <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.doMatch(System.Collections.IEnumerable)">
  7593. <summary>
  7594. Test whether two collections are equivalent
  7595. </summary>
  7596. <param name="actual"></param>
  7597. <returns></returns>
  7598. </member>
  7599. <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7600. <summary>
  7601. Write a description of this constraint to a MessageWriter
  7602. </summary>
  7603. <param name="writer"></param>
  7604. </member>
  7605. <member name="T:NUnit.Framework.Constraints.CollectionOrderedConstraint">
  7606. <summary>
  7607. CollectionOrderedConstraint is used to test whether a collection is ordered.
  7608. </summary>
  7609. </member>
  7610. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.#ctor">
  7611. <summary>
  7612. Construct a CollectionOrderedConstraint
  7613. </summary>
  7614. </member>
  7615. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using(System.Collections.IComparer)">
  7616. <summary>
  7617. Modifies the constraint to use an IComparer and returns self.
  7618. </summary>
  7619. </member>
  7620. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  7621. <summary>
  7622. Modifies the constraint to use an IComparer&lt;T&gt; and returns self.
  7623. </summary>
  7624. </member>
  7625. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Comparison{``0})">
  7626. <summary>
  7627. Modifies the constraint to use a Comparison&lt;T&gt; and returns self.
  7628. </summary>
  7629. </member>
  7630. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.By(System.String)">
  7631. <summary>
  7632. Modifies the constraint to test ordering by the value of
  7633. a specified property and returns self.
  7634. </summary>
  7635. </member>
  7636. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.doMatch(System.Collections.IEnumerable)">
  7637. <summary>
  7638. Test whether the collection is ordered
  7639. </summary>
  7640. <param name="actual"></param>
  7641. <returns></returns>
  7642. </member>
  7643. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7644. <summary>
  7645. Write a description of the constraint to a MessageWriter
  7646. </summary>
  7647. <param name="writer"></param>
  7648. </member>
  7649. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.GetStringRepresentation">
  7650. <summary>
  7651. Returns the string representation of the constraint.
  7652. </summary>
  7653. <returns></returns>
  7654. </member>
  7655. <member name="P:NUnit.Framework.Constraints.CollectionOrderedConstraint.Descending">
  7656. <summary>
  7657. If used performs a reverse comparison
  7658. </summary>
  7659. </member>
  7660. <member name="T:NUnit.Framework.Constraints.CollectionSubsetConstraint">
  7661. <summary>
  7662. CollectionSubsetConstraint is used to determine whether
  7663. one collection is a subset of another
  7664. </summary>
  7665. </member>
  7666. <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.#ctor(System.Collections.IEnumerable)">
  7667. <summary>
  7668. Construct a CollectionSubsetConstraint
  7669. </summary>
  7670. <param name="expected">The collection that the actual value is expected to be a subset of</param>
  7671. </member>
  7672. <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.doMatch(System.Collections.IEnumerable)">
  7673. <summary>
  7674. Test whether the actual collection is a subset of
  7675. the expected collection provided.
  7676. </summary>
  7677. <param name="actual"></param>
  7678. <returns></returns>
  7679. </member>
  7680. <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  7681. <summary>
  7682. Write a description of this constraint to a MessageWriter
  7683. </summary>
  7684. <param name="writer"></param>
  7685. </member>
  7686. <member name="T:NUnit.Framework.Constraints.CollectionTally">
  7687. <summary>
  7688. CollectionTally counts (tallies) the number of
  7689. occurences of each object in one or more enumerations.
  7690. </summary>
  7691. </member>
  7692. <member name="M:NUnit.Framework.Constraints.CollectionTally.#ctor(NUnit.Framework.Constraints.NUnitEqualityComparer,System.Collections.IEnumerable)">
  7693. <summary>
  7694. Construct a CollectionTally object from a comparer and a collection
  7695. </summary>
  7696. </member>
  7697. <member name="M:NUnit.Framework.Constraints.CollectionTally.TryRemove(System.Object)">
  7698. <summary>
  7699. Try to remove an object from the tally
  7700. </summary>
  7701. <param name="o">The object to remove</param>
  7702. <returns>True if successful, false if the object was not found</returns>
  7703. </member>
  7704. <member name="M:NUnit.Framework.Constraints.CollectionTally.TryRemove(System.Collections.IEnumerable)">
  7705. <summary>
  7706. Try to remove a set of objects from the tally
  7707. </summary>
  7708. <param name="c">The objects to remove</param>
  7709. <returns>True if successful, false if any object was not found</returns>
  7710. </member>
  7711. <member name="P:NUnit.Framework.Constraints.CollectionTally.Count">
  7712. <summary>
  7713. The number of objects remaining in the tally
  7714. </summary>
  7715. </member>
  7716. <member name="T:NUnit.Framework.Constraints.ComparisonAdapter">
  7717. <summary>
  7718. ComparisonAdapter class centralizes all comparisons of
  7719. values in NUnit, adapting to the use of any provided
  7720. IComparer, IComparer&lt;T&gt; or Comparison&lt;T&gt;
  7721. </summary>
  7722. </member>
  7723. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For(System.Collections.IComparer)">
  7724. <summary>
  7725. Returns a ComparisonAdapter that wraps an IComparer
  7726. </summary>
  7727. </member>
  7728. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Collections.Generic.IComparer{``0})">
  7729. <summary>
  7730. Returns a ComparisonAdapter that wraps an IComparer&lt;T&gt;
  7731. </summary>
  7732. </member>
  7733. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Comparison{``0})">
  7734. <summary>
  7735. Returns a ComparisonAdapter that wraps a Comparison&lt;T&gt;
  7736. </summary>
  7737. </member>
  7738. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.Compare(System.Object,System.Object)">
  7739. <summary>
  7740. Compares two objects
  7741. </summary>
  7742. </member>
  7743. <member name="P:NUnit.Framework.Constraints.ComparisonAdapter.Default">
  7744. <summary>
  7745. Gets the default ComparisonAdapter, which wraps an
  7746. NUnitComparer object.
  7747. </summary>
  7748. </member>
  7749. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.#ctor(System.Collections.IComparer)">
  7750. <summary>
  7751. Construct a ComparisonAdapter for an IComparer
  7752. </summary>
  7753. </member>
  7754. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.Compare(System.Object,System.Object)">
  7755. <summary>
  7756. Compares two objects
  7757. </summary>
  7758. <param name="expected"></param>
  7759. <param name="actual"></param>
  7760. <returns></returns>
  7761. </member>
  7762. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.DefaultComparisonAdapter.#ctor">
  7763. <summary>
  7764. Construct a default ComparisonAdapter
  7765. </summary>
  7766. </member>
  7767. <member name="T:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1">
  7768. <summary>
  7769. ComparisonAdapter&lt;T&gt; extends ComparisonAdapter and
  7770. allows use of an IComparer&lt;T&gt; or Comparison&lt;T&gt;
  7771. to actually perform the comparison.
  7772. </summary>
  7773. </member>
  7774. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.#ctor(System.Collections.Generic.IComparer{`0})">
  7775. <summary>
  7776. Construct a ComparisonAdapter for an IComparer&lt;T&gt;
  7777. </summary>
  7778. </member>
  7779. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.Compare(System.Object,System.Object)">
  7780. <summary>
  7781. Compare a Type T to an object
  7782. </summary>
  7783. </member>
  7784. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.#ctor(System.Comparison{`0})">
  7785. <summary>
  7786. Construct a ComparisonAdapter for a Comparison&lt;T&gt;
  7787. </summary>
  7788. </member>
  7789. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.Compare(System.Object,System.Object)">
  7790. <summary>
  7791. Compare a Type T to an object
  7792. </summary>
  7793. </member>
  7794. <member name="T:NUnit.Framework.Constraints.ComparisonConstraint">
  7795. <summary>
  7796. Abstract base class for constraints that compare values to
  7797. determine if one is greater than, equal to or less than
  7798. the other. This class supplies the Using modifiers.
  7799. </summary>
  7800. </member>
  7801. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.comparer">
  7802. <summary>
  7803. ComparisonAdapter to be used in making the comparison
  7804. </summary>
  7805. </member>
  7806. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.Object)">
  7807. <summary>
  7808. Initializes a new instance of the <see cref="T:ComparisonConstraint"/> class.
  7809. </summary>
  7810. </member>
  7811. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.Object,System.Object)">
  7812. <summary>
  7813. Initializes a new instance of the <see cref="T:ComparisonConstraint"/> class.
  7814. </summary>
  7815. </member>
  7816. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using(System.Collections.IComparer)">
  7817. <summary>
  7818. Modifies the constraint to use an IComparer and returns self
  7819. </summary>
  7820. </member>
  7821. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  7822. <summary>
  7823. Modifies the constraint to use an IComparer&lt;T&gt; and returns self
  7824. </summary>
  7825. </member>
  7826. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Comparison{``0})">
  7827. <summary>
  7828. Modifies the constraint to use a Comparison&lt;T&gt; and returns self
  7829. </summary>
  7830. </member>
  7831. <member name="T:NUnit.Framework.Constraints.ActualValueDelegate`1">
  7832. <summary>
  7833. Delegate used to delay evaluation of the actual value
  7834. to be used in evaluating a constraint
  7835. </summary>
  7836. </member>
  7837. <member name="T:NUnit.Framework.Constraints.ConstraintBuilder">
  7838. <summary>
  7839. ConstraintBuilder maintains the stacks that are used in
  7840. processing a ConstraintExpression. An OperatorStack
  7841. is used to hold operators that are waiting for their
  7842. operands to be reognized. a ConstraintStack holds
  7843. input constraints as well as the results of each
  7844. operator applied.
  7845. </summary>
  7846. </member>
  7847. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.#ctor">
  7848. <summary>
  7849. Initializes a new instance of the <see cref="T:ConstraintBuilder"/> class.
  7850. </summary>
  7851. </member>
  7852. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.ConstraintOperator)">
  7853. <summary>
  7854. Appends the specified operator to the expression by first
  7855. reducing the operator stack and then pushing the new
  7856. operator on the stack.
  7857. </summary>
  7858. <param name="op">The operator to push.</param>
  7859. </member>
  7860. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.Constraint)">
  7861. <summary>
  7862. Appends the specified constraint to the expresson by pushing
  7863. it on the constraint stack.
  7864. </summary>
  7865. <param name="constraint">The constraint to push.</param>
  7866. </member>
  7867. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.SetTopOperatorRightContext(System.Object)">
  7868. <summary>
  7869. Sets the top operator right context.
  7870. </summary>
  7871. <param name="rightContext">The right context.</param>
  7872. </member>
  7873. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ReduceOperatorStack(System.Int32)">
  7874. <summary>
  7875. Reduces the operator stack until the topmost item
  7876. precedence is greater than or equal to the target precedence.
  7877. </summary>
  7878. <param name="targetPrecedence">The target precedence.</param>
  7879. </member>
  7880. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Resolve">
  7881. <summary>
  7882. Resolves this instance, returning a Constraint. If the builder
  7883. is not currently in a resolvable state, an exception is thrown.
  7884. </summary>
  7885. <returns>The resolved constraint</returns>
  7886. </member>
  7887. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.IsResolvable">
  7888. <summary>
  7889. Gets a value indicating whether this instance is resolvable.
  7890. </summary>
  7891. <value>
  7892. <c>true</c> if this instance is resolvable; otherwise, <c>false</c>.
  7893. </value>
  7894. </member>
  7895. <member name="T:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack">
  7896. <summary>
  7897. OperatorStack is a type-safe stack for holding ConstraintOperators
  7898. </summary>
  7899. </member>
  7900. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  7901. <summary>
  7902. Initializes a new instance of the <see cref="T:OperatorStack"/> class.
  7903. </summary>
  7904. <param name="builder">The builder.</param>
  7905. </member>
  7906. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Push(NUnit.Framework.Constraints.ConstraintOperator)">
  7907. <summary>
  7908. Pushes the specified operator onto the stack.
  7909. </summary>
  7910. <param name="op">The op.</param>
  7911. </member>
  7912. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Pop">
  7913. <summary>
  7914. Pops the topmost operator from the stack.
  7915. </summary>
  7916. <returns></returns>
  7917. </member>
  7918. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Empty">
  7919. <summary>
  7920. Gets a value indicating whether this <see cref="T:OpStack"/> is empty.
  7921. </summary>
  7922. <value><c>true</c> if empty; otherwise, <c>false</c>.</value>
  7923. </member>
  7924. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Top">
  7925. <summary>
  7926. Gets the topmost operator without modifying the stack.
  7927. </summary>
  7928. <value>The top.</value>
  7929. </member>
  7930. <member name="T:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack">
  7931. <summary>
  7932. ConstraintStack is a type-safe stack for holding Constraints
  7933. </summary>
  7934. </member>
  7935. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  7936. <summary>
  7937. Initializes a new instance of the <see cref="T:ConstraintStack"/> class.
  7938. </summary>
  7939. <param name="builder">The builder.</param>
  7940. </member>
  7941. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Push(NUnit.Framework.Constraints.Constraint)">
  7942. <summary>
  7943. Pushes the specified constraint. As a side effect,
  7944. the constraint's builder field is set to the
  7945. ConstraintBuilder owning this stack.
  7946. </summary>
  7947. <param name="constraint">The constraint.</param>
  7948. </member>
  7949. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Pop">
  7950. <summary>
  7951. Pops this topmost constrait from the stack.
  7952. As a side effect, the constraint's builder
  7953. field is set to null.
  7954. </summary>
  7955. <returns></returns>
  7956. </member>
  7957. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Empty">
  7958. <summary>
  7959. Gets a value indicating whether this <see cref="T:ConstraintStack"/> is empty.
  7960. </summary>
  7961. <value><c>true</c> if empty; otherwise, <c>false</c>.</value>
  7962. </member>
  7963. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Top">
  7964. <summary>
  7965. Gets the topmost constraint without modifying the stack.
  7966. </summary>
  7967. <value>The topmost constraint</value>
  7968. </member>
  7969. <member name="T:NUnit.Framework.Constraints.ConstraintExpression">
  7970. <summary>
  7971. ConstraintExpression represents a compound constraint in the
  7972. process of being constructed from a series of syntactic elements.
  7973. Individual elements are appended to the expression as they are
  7974. reognized. Once an actual Constraint is appended, the expression
  7975. returns a resolvable Constraint.
  7976. </summary>
  7977. </member>
  7978. <member name="T:NUnit.Framework.Constraints.ConstraintExpressionBase">
  7979. <summary>
  7980. ConstraintExpressionBase is the abstract base class for the
  7981. ConstraintExpression class, which represents a
  7982. compound constraint in the process of being constructed
  7983. from a series of syntactic elements.
  7984. NOTE: ConstraintExpressionBase is separate because the
  7985. ConstraintExpression class was generated in earlier
  7986. versions of NUnit. The two classes may be combined
  7987. in a future version.
  7988. </summary>
  7989. </member>
  7990. <member name="F:NUnit.Framework.Constraints.ConstraintExpressionBase.builder">
  7991. <summary>
  7992. The ConstraintBuilder holding the elements recognized so far
  7993. </summary>
  7994. </member>
  7995. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor">
  7996. <summary>
  7997. Initializes a new instance of the <see cref="T:ConstraintExpressionBase"/> class.
  7998. </summary>
  7999. </member>
  8000. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  8001. <summary>
  8002. Initializes a new instance of the <see cref="T:ConstraintExpressionBase"/>
  8003. class passing in a ConstraintBuilder, which may be pre-populated.
  8004. </summary>
  8005. <param name="builder">The builder.</param>
  8006. </member>
  8007. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.ToString">
  8008. <summary>
  8009. Returns a string representation of the expression as it
  8010. currently stands. This should only be used for testing,
  8011. since it has the side-effect of resolving the expression.
  8012. </summary>
  8013. <returns></returns>
  8014. </member>
  8015. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.ConstraintOperator)">
  8016. <summary>
  8017. Appends an operator to the expression and returns the
  8018. resulting expression itself.
  8019. </summary>
  8020. </member>
  8021. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.SelfResolvingOperator)">
  8022. <summary>
  8023. Appends a self-resolving operator to the expression and
  8024. returns a new ResolvableConstraintExpression.
  8025. </summary>
  8026. </member>
  8027. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.Constraint)">
  8028. <summary>
  8029. Appends a constraint to the expression and returns that
  8030. constraint, which is associated with the current state
  8031. of the expression being built.
  8032. </summary>
  8033. </member>
  8034. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.#ctor">
  8035. <summary>
  8036. Initializes a new instance of the <see cref="T:ConstraintExpression"/> class.
  8037. </summary>
  8038. </member>
  8039. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  8040. <summary>
  8041. Initializes a new instance of the <see cref="T:ConstraintExpression"/>
  8042. class passing in a ConstraintBuilder, which may be pre-populated.
  8043. </summary>
  8044. <param name="builder">The builder.</param>
  8045. </member>
  8046. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Exactly(System.Int32)">
  8047. <summary>
  8048. Returns a ConstraintExpression, which will apply
  8049. the following constraint to all members of a collection,
  8050. succeeding only if a specified number of them succeed.
  8051. </summary>
  8052. </member>
  8053. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Property(System.String)">
  8054. <summary>
  8055. Returns a new PropertyConstraintExpression, which will either
  8056. test for the existence of the named property on the object
  8057. being tested or apply any following constraint to that property.
  8058. </summary>
  8059. </member>
  8060. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Attribute(System.Type)">
  8061. <summary>
  8062. Returns a new AttributeConstraint checking for the
  8063. presence of a particular attribute on an object.
  8064. </summary>
  8065. </member>
  8066. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Attribute``1">
  8067. <summary>
  8068. Returns a new AttributeConstraint checking for the
  8069. presence of a particular attribute on an object.
  8070. </summary>
  8071. </member>
  8072. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(NUnit.Framework.Constraints.IResolveConstraint)">
  8073. <summary>
  8074. Returns the constraint provided as an argument - used to allow custom
  8075. custom constraints to easily participate in the syntax.
  8076. </summary>
  8077. </member>
  8078. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches``1(System.Predicate{``0})">
  8079. <summary>
  8080. Returns the constraint provided as an argument - used to allow custom
  8081. custom constraints to easily participate in the syntax.
  8082. </summary>
  8083. </member>
  8084. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EqualTo(System.Object)">
  8085. <summary>
  8086. Returns a constraint that tests two items for equality
  8087. </summary>
  8088. </member>
  8089. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SameAs(System.Object)">
  8090. <summary>
  8091. Returns a constraint that tests that two references are the same object
  8092. </summary>
  8093. </member>
  8094. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThan(System.Object)">
  8095. <summary>
  8096. Returns a constraint that tests whether the
  8097. actual value is greater than the suppled argument
  8098. </summary>
  8099. </member>
  8100. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThanOrEqualTo(System.Object)">
  8101. <summary>
  8102. Returns a constraint that tests whether the
  8103. actual value is greater than or equal to the suppled argument
  8104. </summary>
  8105. </member>
  8106. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AtLeast(System.Object)">
  8107. <summary>
  8108. Returns a constraint that tests whether the
  8109. actual value is greater than or equal to the suppled argument
  8110. </summary>
  8111. </member>
  8112. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.LessThan(System.Object)">
  8113. <summary>
  8114. Returns a constraint that tests whether the
  8115. actual value is less than the suppled argument
  8116. </summary>
  8117. </member>
  8118. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.LessThanOrEqualTo(System.Object)">
  8119. <summary>
  8120. Returns a constraint that tests whether the
  8121. actual value is less than or equal to the suppled argument
  8122. </summary>
  8123. </member>
  8124. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AtMost(System.Object)">
  8125. <summary>
  8126. Returns a constraint that tests whether the
  8127. actual value is less than or equal to the suppled argument
  8128. </summary>
  8129. </member>
  8130. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf(System.Type)">
  8131. <summary>
  8132. Returns a constraint that tests whether the actual
  8133. value is of the exact type supplied as an argument.
  8134. </summary>
  8135. </member>
  8136. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf``1">
  8137. <summary>
  8138. Returns a constraint that tests whether the actual
  8139. value is of the exact type supplied as an argument.
  8140. </summary>
  8141. </member>
  8142. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf(System.Type)">
  8143. <summary>
  8144. Returns a constraint that tests whether the actual value
  8145. is of the type supplied as an argument or a derived type.
  8146. </summary>
  8147. </member>
  8148. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf``1">
  8149. <summary>
  8150. Returns a constraint that tests whether the actual value
  8151. is of the type supplied as an argument or a derived type.
  8152. </summary>
  8153. </member>
  8154. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType(System.Type)">
  8155. <summary>
  8156. Returns a constraint that tests whether the actual value
  8157. is of the type supplied as an argument or a derived type.
  8158. </summary>
  8159. </member>
  8160. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType``1">
  8161. <summary>
  8162. Returns a constraint that tests whether the actual value
  8163. is of the type supplied as an argument or a derived type.
  8164. </summary>
  8165. </member>
  8166. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom(System.Type)">
  8167. <summary>
  8168. Returns a constraint that tests whether the actual value
  8169. is assignable from the type supplied as an argument.
  8170. </summary>
  8171. </member>
  8172. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom``1">
  8173. <summary>
  8174. Returns a constraint that tests whether the actual value
  8175. is assignable from the type supplied as an argument.
  8176. </summary>
  8177. </member>
  8178. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo(System.Type)">
  8179. <summary>
  8180. Returns a constraint that tests whether the actual value
  8181. is assignable from the type supplied as an argument.
  8182. </summary>
  8183. </member>
  8184. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo``1">
  8185. <summary>
  8186. Returns a constraint that tests whether the actual value
  8187. is assignable from the type supplied as an argument.
  8188. </summary>
  8189. </member>
  8190. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EquivalentTo(System.Collections.IEnumerable)">
  8191. <summary>
  8192. Returns a constraint that tests whether the actual value
  8193. is a collection containing the same elements as the
  8194. collection supplied as an argument.
  8195. </summary>
  8196. </member>
  8197. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SubsetOf(System.Collections.IEnumerable)">
  8198. <summary>
  8199. Returns a constraint that tests whether the actual value
  8200. is a subset of the collection supplied as an argument.
  8201. </summary>
  8202. </member>
  8203. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Member(System.Object)">
  8204. <summary>
  8205. Returns a new CollectionContainsConstraint checking for the
  8206. presence of a particular object in the collection.
  8207. </summary>
  8208. </member>
  8209. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.Object)">
  8210. <summary>
  8211. Returns a new CollectionContainsConstraint checking for the
  8212. presence of a particular object in the collection.
  8213. </summary>
  8214. </member>
  8215. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.String)">
  8216. <summary>
  8217. Returns a new ContainsConstraint. This constraint
  8218. will, in turn, make use of the appropriate second-level
  8219. constraint, depending on the type of the actual argument.
  8220. This overload is only used if the item sought is a string,
  8221. since any other type implies that we are looking for a
  8222. collection member.
  8223. </summary>
  8224. </member>
  8225. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringContaining(System.String)">
  8226. <summary>
  8227. Returns a constraint that succeeds if the actual
  8228. value contains the substring supplied as an argument.
  8229. </summary>
  8230. </member>
  8231. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.ContainsSubstring(System.String)">
  8232. <summary>
  8233. Returns a constraint that succeeds if the actual
  8234. value contains the substring supplied as an argument.
  8235. </summary>
  8236. </member>
  8237. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StartsWith(System.String)">
  8238. <summary>
  8239. Returns a constraint that succeeds if the actual
  8240. value starts with the substring supplied as an argument.
  8241. </summary>
  8242. </member>
  8243. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringStarting(System.String)">
  8244. <summary>
  8245. Returns a constraint that succeeds if the actual
  8246. value starts with the substring supplied as an argument.
  8247. </summary>
  8248. </member>
  8249. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EndsWith(System.String)">
  8250. <summary>
  8251. Returns a constraint that succeeds if the actual
  8252. value ends with the substring supplied as an argument.
  8253. </summary>
  8254. </member>
  8255. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringEnding(System.String)">
  8256. <summary>
  8257. Returns a constraint that succeeds if the actual
  8258. value ends with the substring supplied as an argument.
  8259. </summary>
  8260. </member>
  8261. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(System.String)">
  8262. <summary>
  8263. Returns a constraint that succeeds if the actual
  8264. value matches the regular expression supplied as an argument.
  8265. </summary>
  8266. </member>
  8267. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringMatching(System.String)">
  8268. <summary>
  8269. Returns a constraint that succeeds if the actual
  8270. value matches the regular expression supplied as an argument.
  8271. </summary>
  8272. </member>
  8273. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SamePath(System.String)">
  8274. <summary>
  8275. Returns a constraint that tests whether the path provided
  8276. is the same as an expected path after canonicalization.
  8277. </summary>
  8278. </member>
  8279. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SubPath(System.String)">
  8280. <summary>
  8281. Returns a constraint that tests whether the path provided
  8282. is the same path or under an expected path after canonicalization.
  8283. </summary>
  8284. </member>
  8285. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SamePathOrUnder(System.String)">
  8286. <summary>
  8287. Returns a constraint that tests whether the path provided
  8288. is the same path or under an expected path after canonicalization.
  8289. </summary>
  8290. </member>
  8291. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InRange``1(``0,``0)">
  8292. <summary>
  8293. Returns a constraint that tests whether the actual value falls
  8294. within a specified range.
  8295. </summary>
  8296. </member>
  8297. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Not">
  8298. <summary>
  8299. Returns a ConstraintExpression that negates any
  8300. following constraint.
  8301. </summary>
  8302. </member>
  8303. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.No">
  8304. <summary>
  8305. Returns a ConstraintExpression that negates any
  8306. following constraint.
  8307. </summary>
  8308. </member>
  8309. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.All">
  8310. <summary>
  8311. Returns a ConstraintExpression, which will apply
  8312. the following constraint to all members of a collection,
  8313. succeeding if all of them succeed.
  8314. </summary>
  8315. </member>
  8316. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Some">
  8317. <summary>
  8318. Returns a ConstraintExpression, which will apply
  8319. the following constraint to all members of a collection,
  8320. succeeding if at least one of them succeeds.
  8321. </summary>
  8322. </member>
  8323. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.None">
  8324. <summary>
  8325. Returns a ConstraintExpression, which will apply
  8326. the following constraint to all members of a collection,
  8327. succeeding if all of them fail.
  8328. </summary>
  8329. </member>
  8330. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Length">
  8331. <summary>
  8332. Returns a new ConstraintExpression, which will apply the following
  8333. constraint to the Length property of the object being tested.
  8334. </summary>
  8335. </member>
  8336. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Count">
  8337. <summary>
  8338. Returns a new ConstraintExpression, which will apply the following
  8339. constraint to the Count property of the object being tested.
  8340. </summary>
  8341. </member>
  8342. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Message">
  8343. <summary>
  8344. Returns a new ConstraintExpression, which will apply the following
  8345. constraint to the Message property of the object being tested.
  8346. </summary>
  8347. </member>
  8348. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.InnerException">
  8349. <summary>
  8350. Returns a new ConstraintExpression, which will apply the following
  8351. constraint to the InnerException property of the object being tested.
  8352. </summary>
  8353. </member>
  8354. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.With">
  8355. <summary>
  8356. With is currently a NOP - reserved for future use.
  8357. </summary>
  8358. </member>
  8359. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Null">
  8360. <summary>
  8361. Returns a constraint that tests for null
  8362. </summary>
  8363. </member>
  8364. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.True">
  8365. <summary>
  8366. Returns a constraint that tests for True
  8367. </summary>
  8368. </member>
  8369. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.False">
  8370. <summary>
  8371. Returns a constraint that tests for False
  8372. </summary>
  8373. </member>
  8374. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Positive">
  8375. <summary>
  8376. Returns a constraint that tests for a positive value
  8377. </summary>
  8378. </member>
  8379. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Negative">
  8380. <summary>
  8381. Returns a constraint that tests for a negative value
  8382. </summary>
  8383. </member>
  8384. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.NaN">
  8385. <summary>
  8386. Returns a constraint that tests for NaN
  8387. </summary>
  8388. </member>
  8389. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Empty">
  8390. <summary>
  8391. Returns a constraint that tests for empty
  8392. </summary>
  8393. </member>
  8394. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Unique">
  8395. <summary>
  8396. Returns a constraint that tests whether a collection
  8397. contains all unique items.
  8398. </summary>
  8399. </member>
  8400. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.BinarySerializable">
  8401. <summary>
  8402. Returns a constraint that tests whether an object graph is serializable in binary format.
  8403. </summary>
  8404. </member>
  8405. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.XmlSerializable">
  8406. <summary>
  8407. Returns a constraint that tests whether an object graph is serializable in xml format.
  8408. </summary>
  8409. </member>
  8410. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Ordered">
  8411. <summary>
  8412. Returns a constraint that tests whether a collection is ordered
  8413. </summary>
  8414. </member>
  8415. <member name="T:NUnit.Framework.Constraints.ContainsConstraint">
  8416. <summary>
  8417. ContainsConstraint tests a whether a string contains a substring
  8418. or a collection contains an object. It postpones the decision of
  8419. which test to use until the type of the actual argument is known.
  8420. This allows testing whether a string is contained in a collection
  8421. or as a substring of another string using the same syntax.
  8422. </summary>
  8423. </member>
  8424. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.#ctor(System.Object)">
  8425. <summary>
  8426. Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.ContainsConstraint"/> class.
  8427. </summary>
  8428. <param name="expected">The expected.</param>
  8429. </member>
  8430. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Matches(System.Object)">
  8431. <summary>
  8432. Test whether the constraint is satisfied by a given value
  8433. </summary>
  8434. <param name="actual">The value to be tested</param>
  8435. <returns>True for success, false for failure</returns>
  8436. </member>
  8437. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8438. <summary>
  8439. Write the constraint description to a MessageWriter
  8440. </summary>
  8441. <param name="writer">The writer on which the description is displayed</param>
  8442. </member>
  8443. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using(System.Collections.IComparer)">
  8444. <summary>
  8445. Flag the constraint to use the supplied IComparer object.
  8446. </summary>
  8447. <param name="comparer">The IComparer object to use.</param>
  8448. <returns>Self.</returns>
  8449. </member>
  8450. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  8451. <summary>
  8452. Flag the constraint to use the supplied IComparer object.
  8453. </summary>
  8454. <param name="comparer">The IComparer object to use.</param>
  8455. <returns>Self.</returns>
  8456. </member>
  8457. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Comparison{``0})">
  8458. <summary>
  8459. Flag the constraint to use the supplied Comparison object.
  8460. </summary>
  8461. <param name="comparer">The IComparer object to use.</param>
  8462. <returns>Self.</returns>
  8463. </member>
  8464. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using(System.Collections.IEqualityComparer)">
  8465. <summary>
  8466. Flag the constraint to use the supplied IEqualityComparer object.
  8467. </summary>
  8468. <param name="comparer">The IComparer object to use.</param>
  8469. <returns>Self.</returns>
  8470. </member>
  8471. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
  8472. <summary>
  8473. Flag the constraint to use the supplied IEqualityComparer object.
  8474. </summary>
  8475. <param name="comparer">The IComparer object to use.</param>
  8476. <returns>Self.</returns>
  8477. </member>
  8478. <member name="P:NUnit.Framework.Constraints.ContainsConstraint.IgnoreCase">
  8479. <summary>
  8480. Flag the constraint to ignore case and return self.
  8481. </summary>
  8482. </member>
  8483. <member name="T:NUnit.Framework.Constraints.DelayedConstraint">
  8484. <summary>
  8485. Applies a delay to the match so that a match can be evaluated in the future.
  8486. </summary>
  8487. </member>
  8488. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32)">
  8489. <summary>
  8490. Creates a new DelayedConstraint
  8491. </summary>
  8492. <param name="baseConstraint">The inner constraint two decorate</param>
  8493. <param name="delayInMilliseconds">The time interval after which the match is performed</param>
  8494. <exception cref="T:System.InvalidOperationException">If the value of <paramref name="delayInMilliseconds"/> is less than 0</exception>
  8495. </member>
  8496. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32,System.Int32)">
  8497. <summary>
  8498. Creates a new DelayedConstraint
  8499. </summary>
  8500. <param name="baseConstraint">The inner constraint two decorate</param>
  8501. <param name="delayInMilliseconds">The time interval after which the match is performed</param>
  8502. <param name="pollingInterval">The time interval used for polling</param>
  8503. <exception cref="T:System.InvalidOperationException">If the value of <paramref name="delayInMilliseconds"/> is less than 0</exception>
  8504. </member>
  8505. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches(System.Object)">
  8506. <summary>
  8507. Test whether the constraint is satisfied by a given value
  8508. </summary>
  8509. <param name="actual">The value to be tested</param>
  8510. <returns>True for if the base constraint fails, false if it succeeds</returns>
  8511. </member>
  8512. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches``1(NUnit.Framework.Constraints.ActualValueDelegate{``0})">
  8513. <summary>
  8514. Test whether the constraint is satisfied by a delegate
  8515. </summary>
  8516. <param name="del">The delegate whose value is to be tested</param>
  8517. <returns>True for if the base constraint fails, false if it succeeds</returns>
  8518. </member>
  8519. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches``1(``0@)">
  8520. <summary>
  8521. Test whether the constraint is satisfied by a given reference.
  8522. Overridden to wait for the specified delay period before
  8523. calling the base constraint with the dereferenced value.
  8524. </summary>
  8525. <param name="actual">A reference to the value to be tested</param>
  8526. <returns>True for success, false for failure</returns>
  8527. </member>
  8528. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8529. <summary>
  8530. Write the constraint description to a MessageWriter
  8531. </summary>
  8532. <param name="writer">The writer on which the description is displayed</param>
  8533. </member>
  8534. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  8535. <summary>
  8536. Write the actual value for a failing constraint test to a MessageWriter.
  8537. </summary>
  8538. <param name="writer">The writer on which the actual value is displayed</param>
  8539. </member>
  8540. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.GetStringRepresentation">
  8541. <summary>
  8542. Returns the string representation of the constraint.
  8543. </summary>
  8544. </member>
  8545. <member name="T:NUnit.Framework.Constraints.EmptyCollectionConstraint">
  8546. <summary>
  8547. EmptyCollectionConstraint tests whether a collection is empty.
  8548. </summary>
  8549. </member>
  8550. <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.doMatch(System.Collections.IEnumerable)">
  8551. <summary>
  8552. Check that the collection is empty
  8553. </summary>
  8554. <param name="collection"></param>
  8555. <returns></returns>
  8556. </member>
  8557. <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8558. <summary>
  8559. Write the constraint description to a MessageWriter
  8560. </summary>
  8561. <param name="writer"></param>
  8562. </member>
  8563. <member name="T:NUnit.Framework.Constraints.EmptyConstraint">
  8564. <summary>
  8565. EmptyConstraint tests a whether a string or collection is empty,
  8566. postponing the decision about which test is applied until the
  8567. type of the actual argument is known.
  8568. </summary>
  8569. </member>
  8570. <member name="M:NUnit.Framework.Constraints.EmptyConstraint.Matches(System.Object)">
  8571. <summary>
  8572. Test whether the constraint is satisfied by a given value
  8573. </summary>
  8574. <param name="actual">The value to be tested</param>
  8575. <returns>True for success, false for failure</returns>
  8576. </member>
  8577. <member name="M:NUnit.Framework.Constraints.EmptyConstraint.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="T:NUnit.Framework.Constraints.EmptyDirectoryConstraint">
  8584. <summary>
  8585. EmptyDirectoryConstraint is used to test that a directory is empty
  8586. </summary>
  8587. </member>
  8588. <member name="M:NUnit.Framework.Constraints.EmptyDirectoryConstraint.Matches(System.Object)">
  8589. <summary>
  8590. Test whether the constraint is satisfied by a given value
  8591. </summary>
  8592. <param name="actual">The value to be tested</param>
  8593. <returns>True for success, false for failure</returns>
  8594. </member>
  8595. <member name="M:NUnit.Framework.Constraints.EmptyDirectoryConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8596. <summary>
  8597. Write the constraint description to a MessageWriter
  8598. </summary>
  8599. <param name="writer">The writer on which the description is displayed</param>
  8600. </member>
  8601. <member name="M:NUnit.Framework.Constraints.EmptyDirectoryConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  8602. <summary>
  8603. Write the actual value for a failing constraint test to a
  8604. MessageWriter. The default implementation simply writes
  8605. the raw value of actual, leaving it to the writer to
  8606. perform any formatting.
  8607. </summary>
  8608. <param name="writer">The writer on which the actual value is displayed</param>
  8609. </member>
  8610. <member name="T:NUnit.Framework.Constraints.EmptyStringConstraint">
  8611. <summary>
  8612. EmptyStringConstraint tests whether a string is empty.
  8613. </summary>
  8614. </member>
  8615. <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.Matches(System.Object)">
  8616. <summary>
  8617. Test whether the constraint is satisfied by a given value
  8618. </summary>
  8619. <param name="actual">The value to be tested</param>
  8620. <returns>True for success, false for failure</returns>
  8621. </member>
  8622. <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.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="T:NUnit.Framework.Constraints.EndsWithConstraint">
  8629. <summary>
  8630. EndsWithConstraint can test whether a string ends
  8631. with an expected substring.
  8632. </summary>
  8633. </member>
  8634. <member name="T:NUnit.Framework.Constraints.StringConstraint">
  8635. <summary>
  8636. StringConstraint is the abstract base for constraints
  8637. that operate on strings. It supports the IgnoreCase
  8638. modifier for string operations.
  8639. </summary>
  8640. </member>
  8641. <member name="F:NUnit.Framework.Constraints.StringConstraint.expected">
  8642. <summary>
  8643. The expected value
  8644. </summary>
  8645. </member>
  8646. <member name="F:NUnit.Framework.Constraints.StringConstraint.caseInsensitive">
  8647. <summary>
  8648. Indicates whether tests should be case-insensitive
  8649. </summary>
  8650. </member>
  8651. <member name="M:NUnit.Framework.Constraints.StringConstraint.#ctor(System.String)">
  8652. <summary>
  8653. Constructs a StringConstraint given an expected value
  8654. </summary>
  8655. <param name="expected">The expected value</param>
  8656. </member>
  8657. <member name="M:NUnit.Framework.Constraints.StringConstraint.Matches(System.Object)">
  8658. <summary>
  8659. Test whether the constraint is satisfied by a given value
  8660. </summary>
  8661. <param name="actual">The value to be tested</param>
  8662. <returns>True for success, false for failure</returns>
  8663. </member>
  8664. <member name="M:NUnit.Framework.Constraints.StringConstraint.Matches(System.String)">
  8665. <summary>
  8666. Test whether the constraint is satisfied by a given string
  8667. </summary>
  8668. <param name="actual">The string to be tested</param>
  8669. <returns>True for success, false for failure</returns>
  8670. </member>
  8671. <member name="P:NUnit.Framework.Constraints.StringConstraint.IgnoreCase">
  8672. <summary>
  8673. Modify the constraint to ignore case in matching.
  8674. </summary>
  8675. </member>
  8676. <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.#ctor(System.String)">
  8677. <summary>
  8678. Initializes a new instance of the <see cref="T:EndsWithConstraint"/> class.
  8679. </summary>
  8680. <param name="expected">The expected string</param>
  8681. </member>
  8682. <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.Matches(System.String)">
  8683. <summary>
  8684. Test whether the constraint is matched by the actual value.
  8685. This is a template method, which calls the IsMatch method
  8686. of the derived class.
  8687. </summary>
  8688. <param name="actual"></param>
  8689. <returns></returns>
  8690. </member>
  8691. <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8692. <summary>
  8693. Write the constraint description to a MessageWriter
  8694. </summary>
  8695. <param name="writer">The writer on which the description is displayed</param>
  8696. </member>
  8697. <member name="T:NUnit.Framework.Constraints.EqualConstraint">
  8698. <summary>
  8699. EqualConstraint is able to compare an actual value with the
  8700. expected value provided in its constructor. Two objects are
  8701. considered equal if both are null, or if both have the same
  8702. value. NUnit has special semantics for some object types.
  8703. </summary>
  8704. </member>
  8705. <member name="F:NUnit.Framework.Constraints.EqualConstraint.clipStrings">
  8706. <summary>
  8707. If true, strings in error messages will be clipped
  8708. </summary>
  8709. </member>
  8710. <member name="F:NUnit.Framework.Constraints.EqualConstraint.comparer">
  8711. <summary>
  8712. NUnitEqualityComparer used to test equality.
  8713. </summary>
  8714. </member>
  8715. <member name="M:NUnit.Framework.Constraints.EqualConstraint.#ctor(System.Object)">
  8716. <summary>
  8717. Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.EqualConstraint"/> class.
  8718. </summary>
  8719. <param name="expected">The expected value.</param>
  8720. </member>
  8721. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Within(System.Object)">
  8722. <summary>
  8723. Flag the constraint to use a tolerance when determining equality.
  8724. </summary>
  8725. <param name="amount">Tolerance value to be used</param>
  8726. <returns>Self.</returns>
  8727. </member>
  8728. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Comparer(System.Collections.IComparer)">
  8729. <summary>
  8730. Flag the constraint to use the supplied IComparer object.
  8731. </summary>
  8732. <param name="comparer">The IComparer object to use.</param>
  8733. <returns>Self.</returns>
  8734. </member>
  8735. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IComparer)">
  8736. <summary>
  8737. Flag the constraint to use the supplied IComparer object.
  8738. </summary>
  8739. <param name="comparer">The IComparer object to use.</param>
  8740. <returns>Self.</returns>
  8741. </member>
  8742. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  8743. <summary>
  8744. Flag the constraint to use the supplied IComparer object.
  8745. </summary>
  8746. <param name="comparer">The IComparer object to use.</param>
  8747. <returns>Self.</returns>
  8748. </member>
  8749. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Comparison{``0})">
  8750. <summary>
  8751. Flag the constraint to use the supplied Comparison object.
  8752. </summary>
  8753. <param name="comparer">The IComparer object to use.</param>
  8754. <returns>Self.</returns>
  8755. </member>
  8756. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IEqualityComparer)">
  8757. <summary>
  8758. Flag the constraint to use the supplied IEqualityComparer object.
  8759. </summary>
  8760. <param name="comparer">The IComparer object to use.</param>
  8761. <returns>Self.</returns>
  8762. </member>
  8763. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
  8764. <summary>
  8765. Flag the constraint to use the supplied IEqualityComparer object.
  8766. </summary>
  8767. <param name="comparer">The IComparer object to use.</param>
  8768. <returns>Self.</returns>
  8769. </member>
  8770. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Matches(System.Object)">
  8771. <summary>
  8772. Test whether the constraint is satisfied by a given value
  8773. </summary>
  8774. <param name="actual">The value to be tested</param>
  8775. <returns>True for success, false for failure</returns>
  8776. </member>
  8777. <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)">
  8778. <summary>
  8779. Write a failure message. Overridden to provide custom
  8780. failure messages for EqualConstraint.
  8781. </summary>
  8782. <param name="writer">The MessageWriter to write to</param>
  8783. </member>
  8784. <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8785. <summary>
  8786. Write description of this constraint
  8787. </summary>
  8788. <param name="writer">The MessageWriter to write to</param>
  8789. </member>
  8790. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
  8791. <summary>
  8792. Display the failure information for two collections that did not match.
  8793. </summary>
  8794. <param name="writer">The MessageWriter on which to display</param>
  8795. <param name="expected">The expected collection.</param>
  8796. <param name="actual">The actual collection</param>
  8797. <param name="depth">The depth of this failure in a set of nested collections</param>
  8798. </member>
  8799. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayTypesAndSizes(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,System.Int32)">
  8800. <summary>
  8801. Displays a single line showing the types and sizes of the expected
  8802. and actual enumerations, collections or arrays. If both are identical,
  8803. the value is only shown once.
  8804. </summary>
  8805. <param name="writer">The MessageWriter on which to display</param>
  8806. <param name="expected">The expected collection or array</param>
  8807. <param name="actual">The actual collection or array</param>
  8808. <param name="indent">The indentation level for the message line</param>
  8809. </member>
  8810. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayFailurePoint(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,NUnit.Framework.Constraints.FailurePoint,System.Int32)">
  8811. <summary>
  8812. Displays a single line showing the point in the expected and actual
  8813. arrays at which the comparison failed. If the arrays have different
  8814. structures or dimensions, both values are shown.
  8815. </summary>
  8816. <param name="writer">The MessageWriter on which to display</param>
  8817. <param name="expected">The expected array</param>
  8818. <param name="actual">The actual array</param>
  8819. <param name="failurePoint">Index of the failure point in the underlying collections</param>
  8820. <param name="indent">The indentation level for the message line</param>
  8821. </member>
  8822. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayEnumerableDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,System.Int32)">
  8823. <summary>
  8824. Display the failure information for two IEnumerables that did not match.
  8825. </summary>
  8826. <param name="writer">The MessageWriter on which to display</param>
  8827. <param name="expected">The expected enumeration.</param>
  8828. <param name="actual">The actual enumeration</param>
  8829. <param name="depth">The depth of this failure in a set of nested collections</param>
  8830. </member>
  8831. <member name="P:NUnit.Framework.Constraints.EqualConstraint.IgnoreCase">
  8832. <summary>
  8833. Flag the constraint to ignore case and return self.
  8834. </summary>
  8835. </member>
  8836. <member name="P:NUnit.Framework.Constraints.EqualConstraint.NoClip">
  8837. <summary>
  8838. Flag the constraint to suppress string clipping
  8839. and return self.
  8840. </summary>
  8841. </member>
  8842. <member name="P:NUnit.Framework.Constraints.EqualConstraint.AsCollection">
  8843. <summary>
  8844. Flag the constraint to compare arrays as collections
  8845. and return self.
  8846. </summary>
  8847. </member>
  8848. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Ulps">
  8849. <summary>
  8850. Switches the .Within() modifier to interpret its tolerance as
  8851. a distance in representable values (see remarks).
  8852. </summary>
  8853. <returns>Self.</returns>
  8854. <remarks>
  8855. Ulp stands for "unit in the last place" and describes the minimum
  8856. amount a given value can change. For any integers, an ulp is 1 whole
  8857. digit. For floating point values, the accuracy of which is better
  8858. for smaller numbers and worse for larger numbers, an ulp depends
  8859. on the size of the number. Using ulps for comparison of floating
  8860. point results instead of fixed tolerances is safer because it will
  8861. automatically compensate for the added inaccuracy of larger numbers.
  8862. </remarks>
  8863. </member>
  8864. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Percent">
  8865. <summary>
  8866. Switches the .Within() modifier to interpret its tolerance as
  8867. a percentage that the actual values is allowed to deviate from
  8868. the expected value.
  8869. </summary>
  8870. <returns>Self</returns>
  8871. </member>
  8872. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Days">
  8873. <summary>
  8874. Causes the tolerance to be interpreted as a TimeSpan in days.
  8875. </summary>
  8876. <returns>Self</returns>
  8877. </member>
  8878. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Hours">
  8879. <summary>
  8880. Causes the tolerance to be interpreted as a TimeSpan in hours.
  8881. </summary>
  8882. <returns>Self</returns>
  8883. </member>
  8884. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Minutes">
  8885. <summary>
  8886. Causes the tolerance to be interpreted as a TimeSpan in minutes.
  8887. </summary>
  8888. <returns>Self</returns>
  8889. </member>
  8890. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Seconds">
  8891. <summary>
  8892. Causes the tolerance to be interpreted as a TimeSpan in seconds.
  8893. </summary>
  8894. <returns>Self</returns>
  8895. </member>
  8896. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Milliseconds">
  8897. <summary>
  8898. Causes the tolerance to be interpreted as a TimeSpan in milliseconds.
  8899. </summary>
  8900. <returns>Self</returns>
  8901. </member>
  8902. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Ticks">
  8903. <summary>
  8904. Causes the tolerance to be interpreted as a TimeSpan in clock ticks.
  8905. </summary>
  8906. <returns>Self</returns>
  8907. </member>
  8908. <member name="T:NUnit.Framework.Constraints.EqualityAdapter">
  8909. <summary>
  8910. EqualityAdapter class handles all equality comparisons
  8911. that use an IEqualityComparer, IEqualityComparer&lt;T&gt;
  8912. or a ComparisonAdapter.
  8913. </summary>
  8914. </member>
  8915. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.AreEqual(System.Object,System.Object)">
  8916. <summary>
  8917. Compares two objects, returning true if they are equal
  8918. </summary>
  8919. </member>
  8920. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.CanCompare(System.Object,System.Object)">
  8921. <summary>
  8922. Returns true if the two objects can be compared by this adapter.
  8923. The base adapter cannot handle IEnumerables except for strings.
  8924. </summary>
  8925. </member>
  8926. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IComparer)">
  8927. <summary>
  8928. Returns an EqualityAdapter that wraps an IComparer.
  8929. </summary>
  8930. </member>
  8931. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IEqualityComparer)">
  8932. <summary>
  8933. Returns an EqualityAdapter that wraps an IEqualityComparer.
  8934. </summary>
  8935. </member>
  8936. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IEqualityComparer{``0})">
  8937. <summary>
  8938. Returns an EqualityAdapter that wraps an IEqualityComparer&lt;T&gt;.
  8939. </summary>
  8940. </member>
  8941. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IComparer{``0})">
  8942. <summary>
  8943. Returns an EqualityAdapter that wraps an IComparer&lt;T&gt;.
  8944. </summary>
  8945. </member>
  8946. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Comparison{``0})">
  8947. <summary>
  8948. Returns an EqualityAdapter that wraps a Comparison&lt;T&gt;.
  8949. </summary>
  8950. </member>
  8951. <member name="T:NUnit.Framework.Constraints.EqualityAdapter.ComparerAdapter">
  8952. <summary>
  8953. EqualityAdapter that wraps an IComparer.
  8954. </summary>
  8955. </member>
  8956. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.GenericEqualityAdapter`1.CanCompare(System.Object,System.Object)">
  8957. <summary>
  8958. Returns true if the two objects can be compared by this adapter.
  8959. Generic adapter requires objects of the specified type.
  8960. </summary>
  8961. </member>
  8962. <member name="T:NUnit.Framework.Constraints.EqualityAdapter.ComparerAdapter`1">
  8963. <summary>
  8964. EqualityAdapter that wraps an IComparer.
  8965. </summary>
  8966. </member>
  8967. <member name="T:NUnit.Framework.Constraints.EqualityAdapterList">
  8968. <summary>
  8969. EqualityAdapterList represents a list of EqualityAdapters
  8970. in a common class across platforms.
  8971. </summary>
  8972. </member>
  8973. <member name="T:NUnit.Framework.Constraints.ExactCountConstraint">
  8974. <summary>
  8975. ExactCountConstraint applies another constraint to each
  8976. item in a collection, succeeding only if a specified
  8977. number of items succeed.
  8978. </summary>
  8979. </member>
  8980. <member name="M:NUnit.Framework.Constraints.ExactCountConstraint.#ctor(System.Int32,NUnit.Framework.Constraints.Constraint)">
  8981. <summary>
  8982. Construct an ExactCountConstraint on top of an existing constraint
  8983. </summary>
  8984. <param name="expectedCount"></param>
  8985. <param name="itemConstraint"></param>
  8986. </member>
  8987. <member name="M:NUnit.Framework.Constraints.ExactCountConstraint.Matches(System.Object)">
  8988. <summary>
  8989. Apply the item constraint to each item in the collection,
  8990. succeeding only if the expected number of items pass.
  8991. </summary>
  8992. <param name="actual"></param>
  8993. <returns></returns>
  8994. </member>
  8995. <member name="M:NUnit.Framework.Constraints.ExactCountConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  8996. <summary>
  8997. Write a description of this constraint to a MessageWriter
  8998. </summary>
  8999. <param name="writer"></param>
  9000. </member>
  9001. <member name="T:NUnit.Framework.Constraints.ExactTypeConstraint">
  9002. <summary>
  9003. ExactTypeConstraint is used to test that an object
  9004. is of the exact type provided in the constructor
  9005. </summary>
  9006. </member>
  9007. <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.#ctor(System.Type)">
  9008. <summary>
  9009. Construct an ExactTypeConstraint for a given Type
  9010. </summary>
  9011. <param name="type">The expected Type.</param>
  9012. </member>
  9013. <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.Matches(System.Object)">
  9014. <summary>
  9015. Test that an object is of the exact type specified
  9016. </summary>
  9017. <param name="actual">The actual value.</param>
  9018. <returns>True if the tested object is of the exact type provided, otherwise false.</returns>
  9019. </member>
  9020. <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9021. <summary>
  9022. Write the description of this constraint to a MessageWriter
  9023. </summary>
  9024. <param name="writer">The MessageWriter to use</param>
  9025. </member>
  9026. <member name="T:NUnit.Framework.Constraints.ExceptionTypeConstraint">
  9027. <summary>
  9028. ExceptionTypeConstraint is a special version of ExactTypeConstraint
  9029. used to provided detailed info about the exception thrown in
  9030. an error message.
  9031. </summary>
  9032. </member>
  9033. <member name="M:NUnit.Framework.Constraints.ExceptionTypeConstraint.#ctor(System.Type)">
  9034. <summary>
  9035. Constructs an ExceptionTypeConstraint
  9036. </summary>
  9037. </member>
  9038. <member name="M:NUnit.Framework.Constraints.ExceptionTypeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  9039. <summary>
  9040. Write the actual value for a failing constraint test to a
  9041. MessageWriter. Overriden to write additional information
  9042. in the case of an Exception.
  9043. </summary>
  9044. <param name="writer">The MessageWriter to use</param>
  9045. </member>
  9046. <member name="T:NUnit.Framework.Constraints.FailurePoint">
  9047. <summary>
  9048. FailurePoint class represents one point of failure
  9049. in an equality test.
  9050. </summary>
  9051. </member>
  9052. <member name="F:NUnit.Framework.Constraints.FailurePoint.Position">
  9053. <summary>
  9054. The location of the failure
  9055. </summary>
  9056. </member>
  9057. <member name="F:NUnit.Framework.Constraints.FailurePoint.ExpectedValue">
  9058. <summary>
  9059. The expected value
  9060. </summary>
  9061. </member>
  9062. <member name="F:NUnit.Framework.Constraints.FailurePoint.ActualValue">
  9063. <summary>
  9064. The actual value
  9065. </summary>
  9066. </member>
  9067. <member name="F:NUnit.Framework.Constraints.FailurePoint.ExpectedHasData">
  9068. <summary>
  9069. Indicates whether the expected value is valid
  9070. </summary>
  9071. </member>
  9072. <member name="F:NUnit.Framework.Constraints.FailurePoint.ActualHasData">
  9073. <summary>
  9074. Indicates whether the actual value is valid
  9075. </summary>
  9076. </member>
  9077. <member name="T:NUnit.Framework.Constraints.FailurePointList">
  9078. <summary>
  9079. FailurePointList represents a set of FailurePoints
  9080. in a cross-platform way.
  9081. </summary>
  9082. </member>
  9083. <member name="T:NUnit.Framework.Constraints.FalseConstraint">
  9084. <summary>
  9085. FalseConstraint tests that the actual value is false
  9086. </summary>
  9087. </member>
  9088. <member name="M:NUnit.Framework.Constraints.FalseConstraint.#ctor">
  9089. <summary>
  9090. Initializes a new instance of the <see cref="T:FalseConstraint"/> class.
  9091. </summary>
  9092. </member>
  9093. <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics">
  9094. <summary>Helper routines for working with floating point numbers</summary>
  9095. <remarks>
  9096. <para>
  9097. The floating point comparison code is based on this excellent article:
  9098. http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm
  9099. </para>
  9100. <para>
  9101. "ULP" means Unit in the Last Place and in the context of this library refers to
  9102. the distance between two adjacent floating point numbers. IEEE floating point
  9103. numbers can only represent a finite subset of natural numbers, with greater
  9104. accuracy for smaller numbers and lower accuracy for very large numbers.
  9105. </para>
  9106. <para>
  9107. If a comparison is allowed "2 ulps" of deviation, that means the values are
  9108. allowed to deviate by up to 2 adjacent floating point values, which might be
  9109. as low as 0.0000001 for small numbers or as high as 10.0 for large numbers.
  9110. </para>
  9111. </remarks>
  9112. </member>
  9113. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Single,System.Single,System.Int32)">
  9114. <summary>Compares two floating point values for equality</summary>
  9115. <param name="left">First floating point value to be compared</param>
  9116. <param name="right">Second floating point value t be compared</param>
  9117. <param name="maxUlps">
  9118. Maximum number of representable floating point values that are allowed to
  9119. be between the left and the right floating point values
  9120. </param>
  9121. <returns>True if both numbers are equal or close to being equal</returns>
  9122. <remarks>
  9123. <para>
  9124. Floating point values can only represent a finite subset of natural numbers.
  9125. For example, the values 2.00000000 and 2.00000024 can be stored in a float,
  9126. but nothing inbetween them.
  9127. </para>
  9128. <para>
  9129. This comparison will count how many possible floating point values are between
  9130. the left and the right number. If the number of possible values between both
  9131. numbers is less than or equal to maxUlps, then the numbers are considered as
  9132. being equal.
  9133. </para>
  9134. <para>
  9135. Implementation partially follows the code outlined here:
  9136. http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/
  9137. </para>
  9138. </remarks>
  9139. </member>
  9140. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Double,System.Double,System.Int64)">
  9141. <summary>Compares two double precision floating point values for equality</summary>
  9142. <param name="left">First double precision floating point value to be compared</param>
  9143. <param name="right">Second double precision floating point value t be compared</param>
  9144. <param name="maxUlps">
  9145. Maximum number of representable double precision floating point values that are
  9146. allowed to be between the left and the right double precision floating point values
  9147. </param>
  9148. <returns>True if both numbers are equal or close to being equal</returns>
  9149. <remarks>
  9150. <para>
  9151. Double precision floating point values can only represent a limited series of
  9152. natural numbers. For example, the values 2.0000000000000000 and 2.0000000000000004
  9153. can be stored in a double, but nothing inbetween them.
  9154. </para>
  9155. <para>
  9156. This comparison will count how many possible double precision floating point
  9157. values are between the left and the right number. If the number of possible
  9158. values between both numbers is less than or equal to maxUlps, then the numbers
  9159. are considered as being equal.
  9160. </para>
  9161. <para>
  9162. Implementation partially follows the code outlined here:
  9163. http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/
  9164. </para>
  9165. </remarks>
  9166. </member>
  9167. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsInt(System.Single)">
  9168. <summary>
  9169. Reinterprets the memory contents of a floating point value as an integer value
  9170. </summary>
  9171. <param name="value">
  9172. Floating point value whose memory contents to reinterpret
  9173. </param>
  9174. <returns>
  9175. The memory contents of the floating point value interpreted as an integer
  9176. </returns>
  9177. </member>
  9178. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsLong(System.Double)">
  9179. <summary>
  9180. Reinterprets the memory contents of a double precision floating point
  9181. value as an integer value
  9182. </summary>
  9183. <param name="value">
  9184. Double precision floating point value whose memory contents to reinterpret
  9185. </param>
  9186. <returns>
  9187. The memory contents of the double precision floating point value
  9188. interpreted as an integer
  9189. </returns>
  9190. </member>
  9191. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsFloat(System.Int32)">
  9192. <summary>
  9193. Reinterprets the memory contents of an integer as a floating point value
  9194. </summary>
  9195. <param name="value">Integer value whose memory contents to reinterpret</param>
  9196. <returns>
  9197. The memory contents of the integer value interpreted as a floating point value
  9198. </returns>
  9199. </member>
  9200. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsDouble(System.Int64)">
  9201. <summary>
  9202. Reinterprets the memory contents of an integer value as a double precision
  9203. floating point value
  9204. </summary>
  9205. <param name="value">Integer whose memory contents to reinterpret</param>
  9206. <returns>
  9207. The memory contents of the integer interpreted as a double precision
  9208. floating point value
  9209. </returns>
  9210. </member>
  9211. <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion">
  9212. <summary>Union of a floating point variable and an integer</summary>
  9213. </member>
  9214. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Float">
  9215. <summary>The union's value as a floating point variable</summary>
  9216. </member>
  9217. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Int">
  9218. <summary>The union's value as an integer</summary>
  9219. </member>
  9220. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.UInt">
  9221. <summary>The union's value as an unsigned integer</summary>
  9222. </member>
  9223. <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion">
  9224. <summary>Union of a double precision floating point variable and a long</summary>
  9225. </member>
  9226. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Double">
  9227. <summary>The union's value as a double precision floating point variable</summary>
  9228. </member>
  9229. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Long">
  9230. <summary>The union's value as a long</summary>
  9231. </member>
  9232. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.ULong">
  9233. <summary>The union's value as an unsigned long</summary>
  9234. </member>
  9235. <member name="T:NUnit.Framework.Constraints.GreaterThanConstraint">
  9236. <summary>
  9237. Tests whether a value is greater than the value supplied to its constructor
  9238. </summary>
  9239. </member>
  9240. <member name="F:NUnit.Framework.Constraints.GreaterThanConstraint.expected">
  9241. <summary>
  9242. The value against which a comparison is to be made
  9243. </summary>
  9244. </member>
  9245. <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.#ctor(System.Object)">
  9246. <summary>
  9247. Initializes a new instance of the <see cref="T:GreaterThanConstraint"/> class.
  9248. </summary>
  9249. <param name="expected">The expected value.</param>
  9250. </member>
  9251. <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9252. <summary>
  9253. Write the constraint description to a MessageWriter
  9254. </summary>
  9255. <param name="writer">The writer on which the description is displayed</param>
  9256. </member>
  9257. <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.Matches(System.Object)">
  9258. <summary>
  9259. Test whether the constraint is satisfied by a given value
  9260. </summary>
  9261. <param name="actual">The value to be tested</param>
  9262. <returns>True for success, false for failure</returns>
  9263. </member>
  9264. <member name="T:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint">
  9265. <summary>
  9266. Tests whether a value is greater than or equal to the value supplied to its constructor
  9267. </summary>
  9268. </member>
  9269. <member name="F:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.expected">
  9270. <summary>
  9271. The value against which a comparison is to be made
  9272. </summary>
  9273. </member>
  9274. <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.#ctor(System.Object)">
  9275. <summary>
  9276. Initializes a new instance of the <see cref="T:GreaterThanOrEqualConstraint"/> class.
  9277. </summary>
  9278. <param name="expected">The expected value.</param>
  9279. </member>
  9280. <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9281. <summary>
  9282. Write the constraint description to a MessageWriter
  9283. </summary>
  9284. <param name="writer">The writer on which the description is displayed</param>
  9285. </member>
  9286. <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.Matches(System.Object)">
  9287. <summary>
  9288. Test whether the constraint is satisfied by a given value
  9289. </summary>
  9290. <param name="actual">The value to be tested</param>
  9291. <returns>True for success, false for failure</returns>
  9292. </member>
  9293. <member name="T:NUnit.Framework.Constraints.InstanceOfTypeConstraint">
  9294. <summary>
  9295. InstanceOfTypeConstraint is used to test that an object
  9296. is of the same type provided or derived from it.
  9297. </summary>
  9298. </member>
  9299. <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.#ctor(System.Type)">
  9300. <summary>
  9301. Construct an InstanceOfTypeConstraint for the type provided
  9302. </summary>
  9303. <param name="type">The expected Type</param>
  9304. </member>
  9305. <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.Matches(System.Object)">
  9306. <summary>
  9307. Test whether an object is of the specified type or a derived type
  9308. </summary>
  9309. <param name="actual">The object to be tested</param>
  9310. <returns>True if the object is of the provided type or derives from it, otherwise false.</returns>
  9311. </member>
  9312. <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9313. <summary>
  9314. Write a description of this constraint to a MessageWriter
  9315. </summary>
  9316. <param name="writer">The MessageWriter to use</param>
  9317. </member>
  9318. <member name="T:NUnit.Framework.Constraints.LessThanConstraint">
  9319. <summary>
  9320. Tests whether a value is less than the value supplied to its constructor
  9321. </summary>
  9322. </member>
  9323. <member name="F:NUnit.Framework.Constraints.LessThanConstraint.expected">
  9324. <summary>
  9325. The value against which a comparison is to be made
  9326. </summary>
  9327. </member>
  9328. <member name="M:NUnit.Framework.Constraints.LessThanConstraint.#ctor(System.Object)">
  9329. <summary>
  9330. Initializes a new instance of the <see cref="T:LessThanConstraint"/> class.
  9331. </summary>
  9332. <param name="expected">The expected value.</param>
  9333. </member>
  9334. <member name="M:NUnit.Framework.Constraints.LessThanConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9335. <summary>
  9336. Write the constraint description to a MessageWriter
  9337. </summary>
  9338. <param name="writer">The writer on which the description is displayed</param>
  9339. </member>
  9340. <member name="M:NUnit.Framework.Constraints.LessThanConstraint.Matches(System.Object)">
  9341. <summary>
  9342. Test whether the constraint is satisfied by a given value
  9343. </summary>
  9344. <param name="actual">The value to be tested</param>
  9345. <returns>True for success, false for failure</returns>
  9346. </member>
  9347. <member name="T:NUnit.Framework.Constraints.LessThanOrEqualConstraint">
  9348. <summary>
  9349. Tests whether a value is less than or equal to the value supplied to its constructor
  9350. </summary>
  9351. </member>
  9352. <member name="F:NUnit.Framework.Constraints.LessThanOrEqualConstraint.expected">
  9353. <summary>
  9354. The value against which a comparison is to be made
  9355. </summary>
  9356. </member>
  9357. <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.#ctor(System.Object)">
  9358. <summary>
  9359. Initializes a new instance of the <see cref="T:LessThanOrEqualConstraint"/> class.
  9360. </summary>
  9361. <param name="expected">The expected value.</param>
  9362. </member>
  9363. <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9364. <summary>
  9365. Write the constraint description to a MessageWriter
  9366. </summary>
  9367. <param name="writer">The writer on which the description is displayed</param>
  9368. </member>
  9369. <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.Matches(System.Object)">
  9370. <summary>
  9371. Test whether the constraint is satisfied by a given value
  9372. </summary>
  9373. <param name="actual">The value to be tested</param>
  9374. <returns>True for success, false for failure</returns>
  9375. </member>
  9376. <member name="T:NUnit.Framework.Constraints.MsgUtils">
  9377. <summary>
  9378. Static methods used in creating messages
  9379. </summary>
  9380. </member>
  9381. <member name="F:NUnit.Framework.Constraints.MsgUtils.ELLIPSIS">
  9382. <summary>
  9383. Static string used when strings are clipped
  9384. </summary>
  9385. </member>
  9386. <member name="M:NUnit.Framework.Constraints.MsgUtils.GetTypeRepresentation(System.Object)">
  9387. <summary>
  9388. Returns the representation of a type as used in NUnitLite.
  9389. This is the same as Type.ToString() except for arrays,
  9390. which are displayed with their declared sizes.
  9391. </summary>
  9392. <param name="obj"></param>
  9393. <returns></returns>
  9394. </member>
  9395. <member name="M:NUnit.Framework.Constraints.MsgUtils.EscapeControlChars(System.String)">
  9396. <summary>
  9397. Converts any control characters in a string
  9398. to their escaped representation.
  9399. </summary>
  9400. <param name="s">The string to be converted</param>
  9401. <returns>The converted string</returns>
  9402. </member>
  9403. <member name="M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesAsString(System.Int32[])">
  9404. <summary>
  9405. Return the a string representation for a set of indices into an array
  9406. </summary>
  9407. <param name="indices">Array of indices for which a string is needed</param>
  9408. </member>
  9409. <member name="M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesFromCollectionIndex(System.Collections.IEnumerable,System.Int32)">
  9410. <summary>
  9411. Get an array of indices representing the point in a enumerable,
  9412. collection or array corresponding to a single int index into the
  9413. collection.
  9414. </summary>
  9415. <param name="collection">The collection to which the indices apply</param>
  9416. <param name="index">Index in the collection</param>
  9417. <returns>Array of indices</returns>
  9418. </member>
  9419. <member name="M:NUnit.Framework.Constraints.MsgUtils.ClipString(System.String,System.Int32,System.Int32)">
  9420. <summary>
  9421. Clip a string to a given length, starting at a particular offset, returning the clipped
  9422. string with ellipses representing the removed parts
  9423. </summary>
  9424. <param name="s">The string to be clipped</param>
  9425. <param name="maxStringLength">The maximum permitted length of the result string</param>
  9426. <param name="clipStart">The point at which to start clipping</param>
  9427. <returns>The clipped string</returns>
  9428. </member>
  9429. <member name="M:NUnit.Framework.Constraints.MsgUtils.ClipExpectedAndActual(System.String@,System.String@,System.Int32,System.Int32)">
  9430. <summary>
  9431. Clip the expected and actual strings in a coordinated fashion,
  9432. so that they may be displayed together.
  9433. </summary>
  9434. <param name="expected"></param>
  9435. <param name="actual"></param>
  9436. <param name="maxDisplayLength"></param>
  9437. <param name="mismatch"></param>
  9438. </member>
  9439. <member name="M:NUnit.Framework.Constraints.MsgUtils.FindMismatchPosition(System.String,System.String,System.Int32,System.Boolean)">
  9440. <summary>
  9441. Shows the position two strings start to differ. Comparison
  9442. starts at the start index.
  9443. </summary>
  9444. <param name="expected">The expected string</param>
  9445. <param name="actual">The actual string</param>
  9446. <param name="istart">The index in the strings at which comparison should start</param>
  9447. <param name="ignoreCase">Boolean indicating whether case should be ignored</param>
  9448. <returns>-1 if no mismatch found, or the index where mismatch found</returns>
  9449. </member>
  9450. <member name="T:NUnit.Framework.Constraints.NaNConstraint">
  9451. <summary>
  9452. NaNConstraint tests that the actual value is a double or float NaN
  9453. </summary>
  9454. </member>
  9455. <member name="M:NUnit.Framework.Constraints.NaNConstraint.Matches(System.Object)">
  9456. <summary>
  9457. Test that the actual value is an NaN
  9458. </summary>
  9459. <param name="actual"></param>
  9460. <returns></returns>
  9461. </member>
  9462. <member name="M:NUnit.Framework.Constraints.NaNConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9463. <summary>
  9464. Write the constraint description to a specified writer
  9465. </summary>
  9466. <param name="writer"></param>
  9467. </member>
  9468. <member name="T:NUnit.Framework.Constraints.NoItemConstraint">
  9469. <summary>
  9470. NoItemConstraint applies another constraint to each
  9471. item in a collection, failing if any of them succeeds.
  9472. </summary>
  9473. </member>
  9474. <member name="M:NUnit.Framework.Constraints.NoItemConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  9475. <summary>
  9476. Construct a NoItemConstraint on top of an existing constraint
  9477. </summary>
  9478. <param name="itemConstraint"></param>
  9479. </member>
  9480. <member name="M:NUnit.Framework.Constraints.NoItemConstraint.Matches(System.Object)">
  9481. <summary>
  9482. Apply the item constraint to each item in the collection,
  9483. failing if any item fails.
  9484. </summary>
  9485. <param name="actual"></param>
  9486. <returns></returns>
  9487. </member>
  9488. <member name="M:NUnit.Framework.Constraints.NoItemConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9489. <summary>
  9490. Write a description of this constraint to a MessageWriter
  9491. </summary>
  9492. <param name="writer"></param>
  9493. </member>
  9494. <member name="T:NUnit.Framework.Constraints.NotConstraint">
  9495. <summary>
  9496. NotConstraint negates the effect of some other constraint
  9497. </summary>
  9498. </member>
  9499. <member name="M:NUnit.Framework.Constraints.NotConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  9500. <summary>
  9501. Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.NotConstraint"/> class.
  9502. </summary>
  9503. <param name="baseConstraint">The base constraint to be negated.</param>
  9504. </member>
  9505. <member name="M:NUnit.Framework.Constraints.NotConstraint.Matches(System.Object)">
  9506. <summary>
  9507. Test whether the constraint is satisfied by a given value
  9508. </summary>
  9509. <param name="actual">The value to be tested</param>
  9510. <returns>True for if the base constraint fails, false if it succeeds</returns>
  9511. </member>
  9512. <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9513. <summary>
  9514. Write the constraint description to a MessageWriter
  9515. </summary>
  9516. <param name="writer">The writer on which the description is displayed</param>
  9517. </member>
  9518. <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  9519. <summary>
  9520. Write the actual value for a failing constraint test to a MessageWriter.
  9521. </summary>
  9522. <param name="writer">The writer on which the actual value is displayed</param>
  9523. </member>
  9524. <member name="T:NUnit.Framework.Constraints.NullConstraint">
  9525. <summary>
  9526. NullConstraint tests that the actual value is null
  9527. </summary>
  9528. </member>
  9529. <member name="M:NUnit.Framework.Constraints.NullConstraint.#ctor">
  9530. <summary>
  9531. Initializes a new instance of the <see cref="T:NullConstraint"/> class.
  9532. </summary>
  9533. </member>
  9534. <member name="T:NUnit.Framework.Constraints.NullOrEmptyStringConstraint">
  9535. <summary>
  9536. NullEmptyStringConstraint tests whether a string is either null or empty.
  9537. </summary>
  9538. </member>
  9539. <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.#ctor">
  9540. <summary>
  9541. Constructs a new NullOrEmptyStringConstraint
  9542. </summary>
  9543. </member>
  9544. <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.Matches(System.Object)">
  9545. <summary>
  9546. Test whether the constraint is satisfied by a given value
  9547. </summary>
  9548. <param name="actual">The value to be tested</param>
  9549. <returns>True for success, false for failure</returns>
  9550. </member>
  9551. <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9552. <summary>
  9553. Write the constraint description to a MessageWriter
  9554. </summary>
  9555. <param name="writer">The writer on which the description is displayed</param>
  9556. </member>
  9557. <member name="T:NUnit.Framework.Constraints.Numerics">
  9558. <summary>
  9559. The Numerics class contains common operations on numeric values.
  9560. </summary>
  9561. </member>
  9562. <member name="M:NUnit.Framework.Constraints.Numerics.IsNumericType(System.Object)">
  9563. <summary>
  9564. Checks the type of the object, returning true if
  9565. the object is a numeric type.
  9566. </summary>
  9567. <param name="obj">The object to check</param>
  9568. <returns>true if the object is a numeric type</returns>
  9569. </member>
  9570. <member name="M:NUnit.Framework.Constraints.Numerics.IsFloatingPointNumeric(System.Object)">
  9571. <summary>
  9572. Checks the type of the object, returning true if
  9573. the object is a floating point numeric type.
  9574. </summary>
  9575. <param name="obj">The object to check</param>
  9576. <returns>true if the object is a floating point numeric type</returns>
  9577. </member>
  9578. <member name="M:NUnit.Framework.Constraints.Numerics.IsFixedPointNumeric(System.Object)">
  9579. <summary>
  9580. Checks the type of the object, returning true if
  9581. the object is a fixed point numeric type.
  9582. </summary>
  9583. <param name="obj">The object to check</param>
  9584. <returns>true if the object is a fixed point numeric type</returns>
  9585. </member>
  9586. <member name="M:NUnit.Framework.Constraints.Numerics.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)">
  9587. <summary>
  9588. Test two numeric values for equality, performing the usual numeric
  9589. conversions and using a provided or default tolerance. If the tolerance
  9590. provided is Empty, this method may set it to a default tolerance.
  9591. </summary>
  9592. <param name="expected">The expected value</param>
  9593. <param name="actual">The actual value</param>
  9594. <param name="tolerance">A reference to the tolerance in effect</param>
  9595. <returns>True if the values are equal</returns>
  9596. </member>
  9597. <member name="M:NUnit.Framework.Constraints.Numerics.Compare(System.Object,System.Object)">
  9598. <summary>
  9599. Compare two numeric values, performing the usual numeric conversions.
  9600. </summary>
  9601. <param name="expected">The expected value</param>
  9602. <param name="actual">The actual value</param>
  9603. <returns>The relationship of the values to each other</returns>
  9604. </member>
  9605. <member name="T:NUnit.Framework.Constraints.NUnitComparer">
  9606. <summary>
  9607. NUnitComparer encapsulates NUnit's default behavior
  9608. in comparing two objects.
  9609. </summary>
  9610. </member>
  9611. <member name="M:NUnit.Framework.Constraints.NUnitComparer.Compare(System.Object,System.Object)">
  9612. <summary>
  9613. Compares two objects
  9614. </summary>
  9615. <param name="x"></param>
  9616. <param name="y"></param>
  9617. <returns></returns>
  9618. </member>
  9619. <member name="P:NUnit.Framework.Constraints.NUnitComparer.Default">
  9620. <summary>
  9621. Returns the default NUnitComparer.
  9622. </summary>
  9623. </member>
  9624. <member name="T:NUnit.Framework.Constraints.NUnitComparer`1">
  9625. <summary>
  9626. Generic version of NUnitComparer
  9627. </summary>
  9628. <typeparam name="T"></typeparam>
  9629. </member>
  9630. <member name="M:NUnit.Framework.Constraints.NUnitComparer`1.Compare(`0,`0)">
  9631. <summary>
  9632. Compare two objects of the same type
  9633. </summary>
  9634. </member>
  9635. <member name="T:NUnit.Framework.Constraints.NUnitEqualityComparer">
  9636. <summary>
  9637. NUnitEqualityComparer encapsulates NUnit's handling of
  9638. equality tests between objects.
  9639. </summary>
  9640. </member>
  9641. <member name="T:NUnit.Framework.INUnitEqualityComparer">
  9642. <summary>
  9643. </summary>
  9644. </member>
  9645. <member name="M:NUnit.Framework.INUnitEqualityComparer.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)">
  9646. <summary>
  9647. Compares two objects for equality within a tolerance
  9648. </summary>
  9649. <param name="x">The first object to compare</param>
  9650. <param name="y">The second object to compare</param>
  9651. <param name="tolerance">The tolerance to use in the comparison</param>
  9652. <returns></returns>
  9653. </member>
  9654. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.caseInsensitive">
  9655. <summary>
  9656. If true, all string comparisons will ignore case
  9657. </summary>
  9658. </member>
  9659. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.compareAsCollection">
  9660. <summary>
  9661. If true, arrays will be treated as collections, allowing
  9662. those of different dimensions to be compared
  9663. </summary>
  9664. </member>
  9665. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.externalComparers">
  9666. <summary>
  9667. Comparison objects used in comparisons for some constraints.
  9668. </summary>
  9669. </member>
  9670. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.failurePoints">
  9671. <summary>
  9672. List of points at which a failure occured.
  9673. </summary>
  9674. </member>
  9675. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.recursionDetector">
  9676. <summary>
  9677. RecursionDetector used to check for recursion when
  9678. evaluating self-referencing enumerables.
  9679. </summary>
  9680. </member>
  9681. <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)">
  9682. <summary>
  9683. Compares two objects for equality within a tolerance, setting
  9684. the tolerance to the actual tolerance used if an empty
  9685. tolerance is supplied.
  9686. </summary>
  9687. </member>
  9688. <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.ArraysEqual(System.Array,System.Array,NUnit.Framework.Constraints.Tolerance@)">
  9689. <summary>
  9690. Helper method to compare two arrays
  9691. </summary>
  9692. </member>
  9693. <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.DirectoriesEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  9694. <summary>
  9695. Method to compare two DirectoryInfo objects
  9696. </summary>
  9697. <param name="expected">first directory to compare</param>
  9698. <param name="actual">second directory to compare</param>
  9699. <returns>true if equivalent, false if not</returns>
  9700. </member>
  9701. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.Default">
  9702. <summary>
  9703. Returns the default NUnitEqualityComparer
  9704. </summary>
  9705. </member>
  9706. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.IgnoreCase">
  9707. <summary>
  9708. Gets and sets a flag indicating whether case should
  9709. be ignored in determining equality.
  9710. </summary>
  9711. </member>
  9712. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.CompareAsCollection">
  9713. <summary>
  9714. Gets and sets a flag indicating that arrays should be
  9715. compared as collections, without regard to their shape.
  9716. </summary>
  9717. </member>
  9718. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.ExternalComparers">
  9719. <summary>
  9720. Gets the list of external comparers to be used to
  9721. test for equality. They are applied to members of
  9722. collections, in place of NUnit's own logic.
  9723. </summary>
  9724. </member>
  9725. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoints">
  9726. <summary>
  9727. Gets the list of failure points for the last Match performed.
  9728. The list consists of objects to be interpreted by the caller.
  9729. This generally means that the caller may only make use of
  9730. objects it has placed on the list at a particular depthy.
  9731. </summary>
  9732. </member>
  9733. <member name="T:NUnit.Framework.Constraints.NUnitEqualityComparer.RecursionDetector">
  9734. <summary>
  9735. RecursionDetector detects when a comparison
  9736. between two enumerables has reached a point
  9737. where the same objects that were previously
  9738. compared are again being compared. This allows
  9739. the caller to stop the comparison if desired.
  9740. </summary>
  9741. </member>
  9742. <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.RecursionDetector.CheckRecursion(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  9743. <summary>
  9744. Check whether two objects have previously
  9745. been compared, returning true if they have.
  9746. The two objects are remembered, so that a
  9747. second call will always return true.
  9748. </summary>
  9749. </member>
  9750. <member name="T:NUnit.Framework.Constraints.OrConstraint">
  9751. <summary>
  9752. OrConstraint succeeds if either member succeeds
  9753. </summary>
  9754. </member>
  9755. <member name="M:NUnit.Framework.Constraints.OrConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  9756. <summary>
  9757. Create an OrConstraint from two other constraints
  9758. </summary>
  9759. <param name="left">The first constraint</param>
  9760. <param name="right">The second constraint</param>
  9761. </member>
  9762. <member name="M:NUnit.Framework.Constraints.OrConstraint.Matches(System.Object)">
  9763. <summary>
  9764. Apply the member constraints to an actual value, succeeding
  9765. succeeding as soon as one of them succeeds.
  9766. </summary>
  9767. <param name="actual">The actual value</param>
  9768. <returns>True if either constraint succeeded</returns>
  9769. </member>
  9770. <member name="M:NUnit.Framework.Constraints.OrConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9771. <summary>
  9772. Write a description for this contraint to a MessageWriter
  9773. </summary>
  9774. <param name="writer">The MessageWriter to receive the description</param>
  9775. </member>
  9776. <member name="T:NUnit.Framework.Constraints.PathConstraint">
  9777. <summary>
  9778. PathConstraint serves as the abstract base of constraints
  9779. that operate on paths and provides several helper methods.
  9780. </summary>
  9781. </member>
  9782. <member name="F:NUnit.Framework.Constraints.PathConstraint.expectedPath">
  9783. <summary>
  9784. The expected path used in the constraint
  9785. </summary>
  9786. </member>
  9787. <member name="F:NUnit.Framework.Constraints.PathConstraint.caseInsensitive">
  9788. <summary>
  9789. Flag indicating whether a caseInsensitive comparison should be made
  9790. </summary>
  9791. </member>
  9792. <member name="M:NUnit.Framework.Constraints.PathConstraint.#ctor(System.String)">
  9793. <summary>
  9794. Construct a PathConstraint for a give expected path
  9795. </summary>
  9796. <param name="expectedPath">The expected path</param>
  9797. </member>
  9798. <member name="M:NUnit.Framework.Constraints.PathConstraint.Matches(System.Object)">
  9799. <summary>
  9800. Test whether the constraint is satisfied by a given value
  9801. </summary>
  9802. <param name="actual">The value to be tested</param>
  9803. <returns>True for success, false for failure</returns>
  9804. </member>
  9805. <member name="M:NUnit.Framework.Constraints.PathConstraint.IsMatch(System.String,System.String)">
  9806. <summary>
  9807. Returns true if the expected path and actual path match
  9808. </summary>
  9809. </member>
  9810. <member name="M:NUnit.Framework.Constraints.PathConstraint.GetStringRepresentation">
  9811. <summary>
  9812. Returns the string representation of this constraint
  9813. </summary>
  9814. </member>
  9815. <member name="M:NUnit.Framework.Constraints.PathConstraint.Canonicalize(System.String)">
  9816. <summary>
  9817. Transform the provided path to its canonical form so that it
  9818. may be more easily be compared with other paths.
  9819. </summary>
  9820. <param name="path">The original path</param>
  9821. <returns>The path in canonical form</returns>
  9822. </member>
  9823. <member name="M:NUnit.Framework.Constraints.PathConstraint.IsSubPath(System.String,System.String,System.Boolean)">
  9824. <summary>
  9825. Test whether one path in canonical form is under another.
  9826. </summary>
  9827. <param name="path1">The first path - supposed to be the parent path</param>
  9828. <param name="path2">The second path - supposed to be the child path</param>
  9829. <param name="ignoreCase">Indicates whether case should be ignored</param>
  9830. <returns></returns>
  9831. </member>
  9832. <member name="P:NUnit.Framework.Constraints.PathConstraint.IgnoreCase">
  9833. <summary>
  9834. Modifies the current instance to be case-insensitve
  9835. and returns it.
  9836. </summary>
  9837. </member>
  9838. <member name="P:NUnit.Framework.Constraints.PathConstraint.RespectCase">
  9839. <summary>
  9840. Modifies the current instance to be case-sensitve
  9841. and returns it.
  9842. </summary>
  9843. </member>
  9844. <member name="T:NUnit.Framework.Constraints.PredicateConstraint`1">
  9845. <summary>
  9846. Predicate constraint wraps a Predicate in a constraint,
  9847. returning success if the predicate is true.
  9848. </summary>
  9849. </member>
  9850. <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.#ctor(System.Predicate{`0})">
  9851. <summary>
  9852. Construct a PredicateConstraint from a predicate
  9853. </summary>
  9854. </member>
  9855. <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.Matches(System.Object)">
  9856. <summary>
  9857. Determines whether the predicate succeeds when applied
  9858. to the actual value.
  9859. </summary>
  9860. </member>
  9861. <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9862. <summary>
  9863. Writes the description to a MessageWriter
  9864. </summary>
  9865. </member>
  9866. <member name="T:NUnit.Framework.Constraints.PropertyConstraint">
  9867. <summary>
  9868. PropertyConstraint extracts a named property and uses
  9869. its value as the actual value for a chained constraint.
  9870. </summary>
  9871. </member>
  9872. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.#ctor(System.String,NUnit.Framework.Constraints.Constraint)">
  9873. <summary>
  9874. Initializes a new instance of the <see cref="T:PropertyConstraint"/> class.
  9875. </summary>
  9876. <param name="name">The name.</param>
  9877. <param name="baseConstraint">The constraint to apply to the property.</param>
  9878. </member>
  9879. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.Matches(System.Object)">
  9880. <summary>
  9881. Test whether the constraint is satisfied by a given value
  9882. </summary>
  9883. <param name="actual">The value to be tested</param>
  9884. <returns>True for success, false for failure</returns>
  9885. </member>
  9886. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9887. <summary>
  9888. Write the constraint description to a MessageWriter
  9889. </summary>
  9890. <param name="writer">The writer on which the description is displayed</param>
  9891. </member>
  9892. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  9893. <summary>
  9894. Write the actual value for a failing constraint test to a
  9895. MessageWriter. The default implementation simply writes
  9896. the raw value of actual, leaving it to the writer to
  9897. perform any formatting.
  9898. </summary>
  9899. <param name="writer">The writer on which the actual value is displayed</param>
  9900. </member>
  9901. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.GetStringRepresentation">
  9902. <summary>
  9903. Returns the string representation of the constraint.
  9904. </summary>
  9905. <returns></returns>
  9906. </member>
  9907. <member name="T:NUnit.Framework.Constraints.PropertyExistsConstraint">
  9908. <summary>
  9909. PropertyExistsConstraint tests that a named property
  9910. exists on the object provided through Match.
  9911. Originally, PropertyConstraint provided this feature
  9912. in addition to making optional tests on the vaue
  9913. of the property. The two constraints are now separate.
  9914. </summary>
  9915. </member>
  9916. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.#ctor(System.String)">
  9917. <summary>
  9918. Initializes a new instance of the <see cref="T:PropertyExistConstraint"/> class.
  9919. </summary>
  9920. <param name="name">The name of the property.</param>
  9921. </member>
  9922. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.Matches(System.Object)">
  9923. <summary>
  9924. Test whether the property exists for a given object
  9925. </summary>
  9926. <param name="actual">The object to be tested</param>
  9927. <returns>True for success, false for failure</returns>
  9928. </member>
  9929. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9930. <summary>
  9931. Write the constraint description to a MessageWriter
  9932. </summary>
  9933. <param name="writer">The writer on which the description is displayed</param>
  9934. </member>
  9935. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  9936. <summary>
  9937. Write the actual value for a failing constraint test to a
  9938. MessageWriter.
  9939. </summary>
  9940. <param name="writer">The writer on which the actual value is displayed</param>
  9941. </member>
  9942. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.GetStringRepresentation">
  9943. <summary>
  9944. Returns the string representation of the constraint.
  9945. </summary>
  9946. <returns></returns>
  9947. </member>
  9948. <member name="T:NUnit.Framework.Constraints.RangeConstraint`1">
  9949. <summary>
  9950. RangeConstraint tests whether two values are within a
  9951. specified range.
  9952. </summary>
  9953. </member>
  9954. <member name="M:NUnit.Framework.Constraints.RangeConstraint`1.#ctor(`0,`0)">
  9955. <summary>
  9956. Initializes a new instance of the <see cref="T:RangeConstraint"/> class.
  9957. </summary>
  9958. <param name="from">From.</param>
  9959. <param name="to">To.</param>
  9960. </member>
  9961. <member name="M:NUnit.Framework.Constraints.RangeConstraint`1.Matches(System.Object)">
  9962. <summary>
  9963. Test whether the constraint is satisfied by a given value
  9964. </summary>
  9965. <param name="actual">The value to be tested</param>
  9966. <returns>True for success, false for failure</returns>
  9967. </member>
  9968. <member name="M:NUnit.Framework.Constraints.RangeConstraint`1.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9969. <summary>
  9970. Write the constraint description to a MessageWriter
  9971. </summary>
  9972. <param name="writer">The writer on which the description is displayed</param>
  9973. </member>
  9974. <member name="T:NUnit.Framework.Constraints.RegexConstraint">
  9975. <summary>
  9976. RegexConstraint can test whether a string matches
  9977. the pattern provided.
  9978. </summary>
  9979. </member>
  9980. <member name="M:NUnit.Framework.Constraints.RegexConstraint.#ctor(System.String)">
  9981. <summary>
  9982. Initializes a new instance of the <see cref="T:RegexConstraint"/> class.
  9983. </summary>
  9984. <param name="pattern">The pattern.</param>
  9985. </member>
  9986. <member name="M:NUnit.Framework.Constraints.RegexConstraint.Matches(System.String)">
  9987. <summary>
  9988. Test whether the constraint is satisfied by a given value
  9989. </summary>
  9990. <param name="actual">The value to be tested</param>
  9991. <returns>True for success, false for failure</returns>
  9992. </member>
  9993. <member name="M:NUnit.Framework.Constraints.RegexConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  9994. <summary>
  9995. Write the constraint description to a MessageWriter
  9996. </summary>
  9997. <param name="writer">The writer on which the description is displayed</param>
  9998. </member>
  9999. <member name="T:NUnit.Framework.Constraints.ResolvableConstraintExpression">
  10000. <summary>
  10001. ResolvableConstraintExpression is used to represent a compound
  10002. constraint being constructed at a point where the last operator
  10003. may either terminate the expression or may have additional
  10004. qualifying constraints added to it.
  10005. It is used, for example, for a Property element or for
  10006. an Exception element, either of which may be optionally
  10007. followed by constraints that apply to the property or
  10008. exception.
  10009. </summary>
  10010. </member>
  10011. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor">
  10012. <summary>
  10013. Create a new instance of ResolvableConstraintExpression
  10014. </summary>
  10015. </member>
  10016. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  10017. <summary>
  10018. Create a new instance of ResolvableConstraintExpression,
  10019. passing in a pre-populated ConstraintBuilder.
  10020. </summary>
  10021. </member>
  10022. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.NUnit#Framework#Constraints#IResolveConstraint#Resolve">
  10023. <summary>
  10024. Resolve the current expression to a Constraint
  10025. </summary>
  10026. </member>
  10027. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
  10028. <summary>
  10029. This operator creates a constraint that is satisfied only if both
  10030. argument constraints are satisfied.
  10031. </summary>
  10032. </member>
  10033. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
  10034. <summary>
  10035. This operator creates a constraint that is satisfied only if both
  10036. argument constraints are satisfied.
  10037. </summary>
  10038. </member>
  10039. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.Constraint)">
  10040. <summary>
  10041. This operator creates a constraint that is satisfied only if both
  10042. argument constraints are satisfied.
  10043. </summary>
  10044. </member>
  10045. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
  10046. <summary>
  10047. This operator creates a constraint that is satisfied if either
  10048. of the argument constraints is satisfied.
  10049. </summary>
  10050. </member>
  10051. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.Constraint)">
  10052. <summary>
  10053. This operator creates a constraint that is satisfied if either
  10054. of the argument constraints is satisfied.
  10055. </summary>
  10056. </member>
  10057. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
  10058. <summary>
  10059. This operator creates a constraint that is satisfied if either
  10060. of the argument constraints is satisfied.
  10061. </summary>
  10062. </member>
  10063. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_LogicalNot(NUnit.Framework.Constraints.ResolvableConstraintExpression)">
  10064. <summary>
  10065. This operator creates a constraint that is satisfied if the
  10066. argument constraint is not satisfied.
  10067. </summary>
  10068. </member>
  10069. <member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.And">
  10070. <summary>
  10071. Appends an And Operator to the expression
  10072. </summary>
  10073. </member>
  10074. <member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.Or">
  10075. <summary>
  10076. Appends an Or operator to the expression.
  10077. </summary>
  10078. </member>
  10079. <member name="T:NUnit.Framework.Constraints.ReusableConstraint">
  10080. <summary>
  10081. ReusableConstraint wraps a constraint expression after
  10082. resolving it so that it can be reused consistently.
  10083. </summary>
  10084. </member>
  10085. <member name="M:NUnit.Framework.Constraints.ReusableConstraint.#ctor(NUnit.Framework.Constraints.IResolveConstraint)">
  10086. <summary>
  10087. Construct a ReusableConstraint from a constraint expression
  10088. </summary>
  10089. <param name="c">The expression to be resolved and reused</param>
  10090. </member>
  10091. <member name="M:NUnit.Framework.Constraints.ReusableConstraint.op_Implicit(NUnit.Framework.Constraints.Constraint)~NUnit.Framework.Constraints.ReusableConstraint">
  10092. <summary>
  10093. Converts a constraint to a ReusableConstraint
  10094. </summary>
  10095. <param name="c">The constraint to be converted</param>
  10096. <returns>A ReusableConstraint</returns>
  10097. </member>
  10098. <member name="M:NUnit.Framework.Constraints.ReusableConstraint.ToString">
  10099. <summary>
  10100. Returns the string representation of the constraint.
  10101. </summary>
  10102. <returns>A string representing the constraint</returns>
  10103. </member>
  10104. <member name="M:NUnit.Framework.Constraints.ReusableConstraint.Resolve">
  10105. <summary>
  10106. Resolves the ReusableConstraint by returning the constraint
  10107. that it originally wrapped.
  10108. </summary>
  10109. <returns>A resolved constraint</returns>
  10110. </member>
  10111. <member name="T:NUnit.Framework.Constraints.SameAsConstraint">
  10112. <summary>
  10113. SameAsConstraint tests whether an object is identical to
  10114. the object passed to its constructor
  10115. </summary>
  10116. </member>
  10117. <member name="M:NUnit.Framework.Constraints.SameAsConstraint.#ctor(System.Object)">
  10118. <summary>
  10119. Initializes a new instance of the <see cref="T:SameAsConstraint"/> class.
  10120. </summary>
  10121. <param name="expected">The expected object.</param>
  10122. </member>
  10123. <member name="M:NUnit.Framework.Constraints.SameAsConstraint.Matches(System.Object)">
  10124. <summary>
  10125. Test whether the constraint is satisfied by a given value
  10126. </summary>
  10127. <param name="actual">The value to be tested</param>
  10128. <returns>True for success, false for failure</returns>
  10129. </member>
  10130. <member name="M:NUnit.Framework.Constraints.SameAsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  10131. <summary>
  10132. Write the constraint description to a MessageWriter
  10133. </summary>
  10134. <param name="writer">The writer on which the description is displayed</param>
  10135. </member>
  10136. <member name="T:NUnit.Framework.Constraints.SamePathConstraint">
  10137. <summary>
  10138. Summary description for SamePathConstraint.
  10139. </summary>
  10140. </member>
  10141. <member name="M:NUnit.Framework.Constraints.SamePathConstraint.#ctor(System.String)">
  10142. <summary>
  10143. Initializes a new instance of the <see cref="T:SamePathConstraint"/> class.
  10144. </summary>
  10145. <param name="expected">The expected path</param>
  10146. </member>
  10147. <member name="M:NUnit.Framework.Constraints.SamePathConstraint.IsMatch(System.String,System.String)">
  10148. <summary>
  10149. Test whether the constraint is satisfied by a given value
  10150. </summary>
  10151. <param name="expectedPath">The expected path</param>
  10152. <param name="actualPath">The actual path</param>
  10153. <returns>True for success, false for failure</returns>
  10154. </member>
  10155. <member name="M:NUnit.Framework.Constraints.SamePathConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  10156. <summary>
  10157. Write the constraint description to a MessageWriter
  10158. </summary>
  10159. <param name="writer">The writer on which the description is displayed</param>
  10160. </member>
  10161. <member name="T:NUnit.Framework.Constraints.SamePathOrUnderConstraint">
  10162. <summary>
  10163. SamePathOrUnderConstraint tests that one path is under another
  10164. </summary>
  10165. </member>
  10166. <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.#ctor(System.String)">
  10167. <summary>
  10168. Initializes a new instance of the <see cref="T:SamePathOrUnderConstraint"/> class.
  10169. </summary>
  10170. <param name="expected">The expected path</param>
  10171. </member>
  10172. <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.IsMatch(System.String,System.String)">
  10173. <summary>
  10174. Test whether the constraint is satisfied by a given value
  10175. </summary>
  10176. <param name="expectedPath">The expected path</param>
  10177. <param name="actualPath">The actual path</param>
  10178. <returns>True for success, false for failure</returns>
  10179. </member>
  10180. <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  10181. <summary>
  10182. Write the constraint description to a MessageWriter
  10183. </summary>
  10184. <param name="writer">The writer on which the description is displayed</param>
  10185. </member>
  10186. <member name="T:NUnit.Framework.Constraints.SomeItemsConstraint">
  10187. <summary>
  10188. SomeItemsConstraint applies another constraint to each
  10189. item in a collection, succeeding if any of them succeeds.
  10190. </summary>
  10191. </member>
  10192. <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  10193. <summary>
  10194. Construct a SomeItemsConstraint on top of an existing constraint
  10195. </summary>
  10196. <param name="itemConstraint"></param>
  10197. </member>
  10198. <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.Matches(System.Object)">
  10199. <summary>
  10200. Apply the item constraint to each item in the collection,
  10201. succeeding if any item succeeds.
  10202. </summary>
  10203. <param name="actual"></param>
  10204. <returns></returns>
  10205. </member>
  10206. <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  10207. <summary>
  10208. Write a description of this constraint to a MessageWriter
  10209. </summary>
  10210. <param name="writer"></param>
  10211. </member>
  10212. <member name="T:NUnit.Framework.Constraints.StartsWithConstraint">
  10213. <summary>
  10214. StartsWithConstraint can test whether a string starts
  10215. with an expected substring.
  10216. </summary>
  10217. </member>
  10218. <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.#ctor(System.String)">
  10219. <summary>
  10220. Initializes a new instance of the <see cref="T:StartsWithConstraint"/> class.
  10221. </summary>
  10222. <param name="expected">The expected string</param>
  10223. </member>
  10224. <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.Matches(System.String)">
  10225. <summary>
  10226. Test whether the constraint is matched by the actual value.
  10227. This is a template method, which calls the IsMatch method
  10228. of the derived class.
  10229. </summary>
  10230. <param name="actual"></param>
  10231. <returns></returns>
  10232. </member>
  10233. <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  10234. <summary>
  10235. Write the constraint description to a MessageWriter
  10236. </summary>
  10237. <param name="writer">The writer on which the description is displayed</param>
  10238. </member>
  10239. <member name="T:NUnit.Framework.Constraints.SubPathConstraint">
  10240. <summary>
  10241. SubPathConstraint tests that the actual path is under the expected path
  10242. </summary>
  10243. </member>
  10244. <member name="M:NUnit.Framework.Constraints.SubPathConstraint.#ctor(System.String)">
  10245. <summary>
  10246. Initializes a new instance of the <see cref="T:SubPathConstraint"/> class.
  10247. </summary>
  10248. <param name="expected">The expected path</param>
  10249. </member>
  10250. <member name="M:NUnit.Framework.Constraints.SubPathConstraint.IsMatch(System.String,System.String)">
  10251. <summary>
  10252. Test whether the constraint is satisfied by a given value
  10253. </summary>
  10254. <param name="expectedPath">The expected path</param>
  10255. <param name="actualPath">The actual path</param>
  10256. <returns>True for success, false for failure</returns>
  10257. </member>
  10258. <member name="M:NUnit.Framework.Constraints.SubPathConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  10259. <summary>
  10260. Write the constraint description to a MessageWriter
  10261. </summary>
  10262. <param name="writer">The writer on which the description is displayed</param>
  10263. </member>
  10264. <member name="T:NUnit.Framework.Constraints.SubstringConstraint">
  10265. <summary>
  10266. SubstringConstraint can test whether a string contains
  10267. the expected substring.
  10268. </summary>
  10269. </member>
  10270. <member name="M:NUnit.Framework.Constraints.SubstringConstraint.#ctor(System.String)">
  10271. <summary>
  10272. Initializes a new instance of the <see cref="T:SubstringConstraint"/> class.
  10273. </summary>
  10274. <param name="expected">The expected.</param>
  10275. </member>
  10276. <member name="M:NUnit.Framework.Constraints.SubstringConstraint.Matches(System.String)">
  10277. <summary>
  10278. Test whether the constraint is satisfied by a given value
  10279. </summary>
  10280. <param name="actual">The value to be tested</param>
  10281. <returns>True for success, false for failure</returns>
  10282. </member>
  10283. <member name="M:NUnit.Framework.Constraints.SubstringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  10284. <summary>
  10285. Write the constraint description to a MessageWriter
  10286. </summary>
  10287. <param name="writer">The writer on which the description is displayed</param>
  10288. </member>
  10289. <member name="T:NUnit.Framework.Constraints.ThrowsConstraint">
  10290. <summary>
  10291. ThrowsConstraint is used to test the exception thrown by
  10292. a delegate by applying a constraint to it.
  10293. </summary>
  10294. </member>
  10295. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  10296. <summary>
  10297. Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.ThrowsConstraint"/> class,
  10298. using a constraint to be applied to the exception.
  10299. </summary>
  10300. <param name="baseConstraint">A constraint to apply to the caught exception.</param>
  10301. </member>
  10302. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.Matches(System.Object)">
  10303. <summary>
  10304. Executes the code of the delegate and captures any exception.
  10305. If a non-null base constraint was provided, it applies that
  10306. constraint to the exception.
  10307. </summary>
  10308. <param name="actual">A delegate representing the code to be tested</param>
  10309. <returns>True if an exception is thrown and the constraint succeeds, otherwise false</returns>
  10310. </member>
  10311. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.Matches``1(NUnit.Framework.Constraints.ActualValueDelegate{``0})">
  10312. <summary>
  10313. Converts an ActualValueDelegate to a TestDelegate
  10314. before calling the primary overload.
  10315. </summary>
  10316. </member>
  10317. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  10318. <summary>
  10319. Write the constraint description to a MessageWriter
  10320. </summary>
  10321. <param name="writer">The writer on which the description is displayed</param>
  10322. </member>
  10323. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  10324. <summary>
  10325. Write the actual value for a failing constraint test to a
  10326. MessageWriter. The default implementation simply writes
  10327. the raw value of actual, leaving it to the writer to
  10328. perform any formatting.
  10329. </summary>
  10330. <param name="writer">The writer on which the actual value is displayed</param>
  10331. </member>
  10332. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.GetStringRepresentation">
  10333. <summary>
  10334. Returns the string representation of this constraint
  10335. </summary>
  10336. </member>
  10337. <member name="P:NUnit.Framework.Constraints.ThrowsConstraint.ActualException">
  10338. <summary>
  10339. Get the actual exception thrown - used by Assert.Throws.
  10340. </summary>
  10341. </member>
  10342. <member name="T:NUnit.Framework.Constraints.ThrowsNothingConstraint">
  10343. <summary>
  10344. ThrowsNothingConstraint tests that a delegate does not
  10345. throw an exception.
  10346. </summary>
  10347. </member>
  10348. <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.Matches(System.Object)">
  10349. <summary>
  10350. Test whether the constraint is satisfied by a given value
  10351. </summary>
  10352. <param name="actual">The value to be tested</param>
  10353. <returns>True if no exception is thrown, otherwise false</returns>
  10354. </member>
  10355. <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.Matches``1(NUnit.Framework.Constraints.ActualValueDelegate{``0})">
  10356. <summary>
  10357. Test whether the constraint is satisfied by a given delegate
  10358. </summary>
  10359. <param name="del">Delegate returning the value to be tested</param>
  10360. <returns>True if no exception is thrown, otherwise false</returns>
  10361. </member>
  10362. <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  10363. <summary>
  10364. Write the constraint description to a MessageWriter
  10365. </summary>
  10366. <param name="writer">The writer on which the description is displayed</param>
  10367. </member>
  10368. <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  10369. <summary>
  10370. Write the actual value for a failing constraint test to a
  10371. MessageWriter. Overridden in ThrowsNothingConstraint to write
  10372. information about the exception that was actually caught.
  10373. </summary>
  10374. <param name="writer">The writer on which the actual value is displayed</param>
  10375. </member>
  10376. <member name="T:NUnit.Framework.Constraints.Tolerance">
  10377. <summary>
  10378. The Tolerance class generalizes the notion of a tolerance
  10379. within which an equality test succeeds. Normally, it is
  10380. used with numeric types, but it can be used with any
  10381. type that supports taking a difference between two
  10382. objects and comparing that difference to a value.
  10383. </summary>
  10384. </member>
  10385. <member name="M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object)">
  10386. <summary>
  10387. Constructs a linear tolerance of a specdified amount
  10388. </summary>
  10389. </member>
  10390. <member name="M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object,NUnit.Framework.Constraints.ToleranceMode)">
  10391. <summary>
  10392. Constructs a tolerance given an amount and ToleranceMode
  10393. </summary>
  10394. </member>
  10395. <member name="M:NUnit.Framework.Constraints.Tolerance.CheckLinearAndNumeric">
  10396. <summary>
  10397. Tests that the current Tolerance is linear with a
  10398. numeric value, throwing an exception if it is not.
  10399. </summary>
  10400. </member>
  10401. <member name="P:NUnit.Framework.Constraints.Tolerance.Empty">
  10402. <summary>
  10403. Returns an empty Tolerance object, equivalent to
  10404. specifying no tolerance. In most cases, it results
  10405. in an exact match but for floats and doubles a
  10406. default tolerance may be used.
  10407. </summary>
  10408. </member>
  10409. <member name="P:NUnit.Framework.Constraints.Tolerance.Zero">
  10410. <summary>
  10411. Returns a zero Tolerance object, equivalent to
  10412. specifying an exact match.
  10413. </summary>
  10414. </member>
  10415. <member name="P:NUnit.Framework.Constraints.Tolerance.Mode">
  10416. <summary>
  10417. Gets the ToleranceMode for the current Tolerance
  10418. </summary>
  10419. </member>
  10420. <member name="P:NUnit.Framework.Constraints.Tolerance.Value">
  10421. <summary>
  10422. Gets the value of the current Tolerance instance.
  10423. </summary>
  10424. </member>
  10425. <member name="P:NUnit.Framework.Constraints.Tolerance.Percent">
  10426. <summary>
  10427. Returns a new tolerance, using the current amount as a percentage.
  10428. </summary>
  10429. </member>
  10430. <member name="P:NUnit.Framework.Constraints.Tolerance.Ulps">
  10431. <summary>
  10432. Returns a new tolerance, using the current amount in Ulps.
  10433. </summary>
  10434. </member>
  10435. <member name="P:NUnit.Framework.Constraints.Tolerance.Days">
  10436. <summary>
  10437. Returns a new tolerance with a TimeSpan as the amount, using
  10438. the current amount as a number of days.
  10439. </summary>
  10440. </member>
  10441. <member name="P:NUnit.Framework.Constraints.Tolerance.Hours">
  10442. <summary>
  10443. Returns a new tolerance with a TimeSpan as the amount, using
  10444. the current amount as a number of hours.
  10445. </summary>
  10446. </member>
  10447. <member name="P:NUnit.Framework.Constraints.Tolerance.Minutes">
  10448. <summary>
  10449. Returns a new tolerance with a TimeSpan as the amount, using
  10450. the current amount as a number of minutes.
  10451. </summary>
  10452. </member>
  10453. <member name="P:NUnit.Framework.Constraints.Tolerance.Seconds">
  10454. <summary>
  10455. Returns a new tolerance with a TimeSpan as the amount, using
  10456. the current amount as a number of seconds.
  10457. </summary>
  10458. </member>
  10459. <member name="P:NUnit.Framework.Constraints.Tolerance.Milliseconds">
  10460. <summary>
  10461. Returns a new tolerance with a TimeSpan as the amount, using
  10462. the current amount as a number of milliseconds.
  10463. </summary>
  10464. </member>
  10465. <member name="P:NUnit.Framework.Constraints.Tolerance.Ticks">
  10466. <summary>
  10467. Returns a new tolerance with a TimeSpan as the amount, using
  10468. the current amount as a number of clock ticks.
  10469. </summary>
  10470. </member>
  10471. <member name="P:NUnit.Framework.Constraints.Tolerance.IsEmpty">
  10472. <summary>
  10473. Returns true if the current tolerance is empty.
  10474. </summary>
  10475. </member>
  10476. <member name="T:NUnit.Framework.Constraints.ToleranceMode">
  10477. <summary>
  10478. Modes in which the tolerance value for a comparison can be interpreted.
  10479. </summary>
  10480. </member>
  10481. <member name="F:NUnit.Framework.Constraints.ToleranceMode.None">
  10482. <summary>
  10483. The tolerance was created with a value, without specifying
  10484. how the value would be used. This is used to prevent setting
  10485. the mode more than once and is generally changed to Linear
  10486. upon execution of the test.
  10487. </summary>
  10488. </member>
  10489. <member name="F:NUnit.Framework.Constraints.ToleranceMode.Linear">
  10490. <summary>
  10491. The tolerance is used as a numeric range within which
  10492. two compared values are considered to be equal.
  10493. </summary>
  10494. </member>
  10495. <member name="F:NUnit.Framework.Constraints.ToleranceMode.Percent">
  10496. <summary>
  10497. Interprets the tolerance as the percentage by which
  10498. the two compared values my deviate from each other.
  10499. </summary>
  10500. </member>
  10501. <member name="F:NUnit.Framework.Constraints.ToleranceMode.Ulps">
  10502. <summary>
  10503. Compares two values based in their distance in
  10504. representable numbers.
  10505. </summary>
  10506. </member>
  10507. <member name="T:NUnit.Framework.Constraints.TrueConstraint">
  10508. <summary>
  10509. TrueConstraint tests that the actual value is true
  10510. </summary>
  10511. </member>
  10512. <member name="M:NUnit.Framework.Constraints.TrueConstraint.#ctor">
  10513. <summary>
  10514. Initializes a new instance of the <see cref="T:TrueConstraint"/> class.
  10515. </summary>
  10516. </member>
  10517. <member name="T:NUnit.Framework.Constraints.UniqueItemsConstraint">
  10518. <summary>
  10519. UniqueItemsConstraint tests whether all the items in a
  10520. collection are unique.
  10521. </summary>
  10522. </member>
  10523. <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.doMatch(System.Collections.IEnumerable)">
  10524. <summary>
  10525. Check that all items are unique.
  10526. </summary>
  10527. <param name="actual"></param>
  10528. <returns></returns>
  10529. </member>
  10530. <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  10531. <summary>
  10532. Write a description of this constraint to a MessageWriter
  10533. </summary>
  10534. <param name="writer"></param>
  10535. </member>
  10536. <member name="T:NUnit.Framework.Constraints.XmlSerializableConstraint">
  10537. <summary>
  10538. XmlSerializableConstraint tests whether
  10539. an object is serializable in XML format.
  10540. </summary>
  10541. </member>
  10542. <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.Matches(System.Object)">
  10543. <summary>
  10544. Test whether the constraint is satisfied by a given value
  10545. </summary>
  10546. <param name="actual">The value to be tested</param>
  10547. <returns>True for success, false for failure</returns>
  10548. </member>
  10549. <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  10550. <summary>
  10551. Write the constraint description to a MessageWriter
  10552. </summary>
  10553. <param name="writer">The writer on which the description is displayed</param>
  10554. </member>
  10555. <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  10556. <summary>
  10557. Write the actual value for a failing constraint test to a
  10558. MessageWriter. The default implementation simply writes
  10559. the raw value of actual, leaving it to the writer to
  10560. perform any formatting.
  10561. </summary>
  10562. <param name="writer">The writer on which the actual value is displayed</param>
  10563. </member>
  10564. <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.GetStringRepresentation">
  10565. <summary>
  10566. Returns the string representation of this constraint
  10567. </summary>
  10568. </member>
  10569. <member name="T:NUnit.Framework.Constraints.AllOperator">
  10570. <summary>
  10571. Represents a constraint that succeeds if all the
  10572. members of a collection match a base constraint.
  10573. </summary>
  10574. </member>
  10575. <member name="T:NUnit.Framework.Constraints.CollectionOperator">
  10576. <summary>
  10577. Abstract base for operators that indicate how to
  10578. apply a constraint to items in a collection.
  10579. </summary>
  10580. </member>
  10581. <member name="T:NUnit.Framework.Constraints.PrefixOperator">
  10582. <summary>
  10583. PrefixOperator takes a single constraint and modifies
  10584. it's action in some way.
  10585. </summary>
  10586. </member>
  10587. <member name="T:NUnit.Framework.Constraints.ConstraintOperator">
  10588. <summary>
  10589. The ConstraintOperator class is used internally by a
  10590. ConstraintBuilder to represent an operator that
  10591. modifies or combines constraints.
  10592. Constraint operators use left and right precedence
  10593. values to determine whether the top operator on the
  10594. stack should be reduced before pushing a new operator.
  10595. </summary>
  10596. </member>
  10597. <member name="F:NUnit.Framework.Constraints.ConstraintOperator.left_precedence">
  10598. <summary>
  10599. The precedence value used when the operator
  10600. is about to be pushed to the stack.
  10601. </summary>
  10602. </member>
  10603. <member name="F:NUnit.Framework.Constraints.ConstraintOperator.right_precedence">
  10604. <summary>
  10605. The precedence value used when the operator
  10606. is on the top of the stack.
  10607. </summary>
  10608. </member>
  10609. <member name="M:NUnit.Framework.Constraints.ConstraintOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  10610. <summary>
  10611. Reduce produces a constraint from the operator and
  10612. any arguments. It takes the arguments from the constraint
  10613. stack and pushes the resulting constraint on it.
  10614. </summary>
  10615. <param name="stack"></param>
  10616. </member>
  10617. <member name="P:NUnit.Framework.Constraints.ConstraintOperator.LeftContext">
  10618. <summary>
  10619. The syntax element preceding this operator
  10620. </summary>
  10621. </member>
  10622. <member name="P:NUnit.Framework.Constraints.ConstraintOperator.RightContext">
  10623. <summary>
  10624. The syntax element folowing this operator
  10625. </summary>
  10626. </member>
  10627. <member name="P:NUnit.Framework.Constraints.ConstraintOperator.LeftPrecedence">
  10628. <summary>
  10629. The precedence value used when the operator
  10630. is about to be pushed to the stack.
  10631. </summary>
  10632. </member>
  10633. <member name="P:NUnit.Framework.Constraints.ConstraintOperator.RightPrecedence">
  10634. <summary>
  10635. The precedence value used when the operator
  10636. is on the top of the stack.
  10637. </summary>
  10638. </member>
  10639. <member name="M:NUnit.Framework.Constraints.PrefixOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  10640. <summary>
  10641. Reduce produces a constraint from the operator and
  10642. any arguments. It takes the arguments from the constraint
  10643. stack and pushes the resulting constraint on it.
  10644. </summary>
  10645. <param name="stack"></param>
  10646. </member>
  10647. <member name="M:NUnit.Framework.Constraints.PrefixOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  10648. <summary>
  10649. Returns the constraint created by applying this
  10650. prefix to another constraint.
  10651. </summary>
  10652. <param name="constraint"></param>
  10653. <returns></returns>
  10654. </member>
  10655. <member name="M:NUnit.Framework.Constraints.CollectionOperator.#ctor">
  10656. <summary>
  10657. Constructs a CollectionOperator
  10658. </summary>
  10659. </member>
  10660. <member name="M:NUnit.Framework.Constraints.AllOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  10661. <summary>
  10662. Returns a constraint that will apply the argument
  10663. to the members of a collection, succeeding if
  10664. they all succeed.
  10665. </summary>
  10666. </member>
  10667. <member name="T:NUnit.Framework.Constraints.AndOperator">
  10668. <summary>
  10669. Operator that requires both it's arguments to succeed
  10670. </summary>
  10671. </member>
  10672. <member name="T:NUnit.Framework.Constraints.BinaryOperator">
  10673. <summary>
  10674. Abstract base class for all binary operators
  10675. </summary>
  10676. </member>
  10677. <member name="M:NUnit.Framework.Constraints.BinaryOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  10678. <summary>
  10679. Reduce produces a constraint from the operator and
  10680. any arguments. It takes the arguments from the constraint
  10681. stack and pushes the resulting constraint on it.
  10682. </summary>
  10683. <param name="stack"></param>
  10684. </member>
  10685. <member name="M:NUnit.Framework.Constraints.BinaryOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  10686. <summary>
  10687. Abstract method that produces a constraint by applying
  10688. the operator to its left and right constraint arguments.
  10689. </summary>
  10690. </member>
  10691. <member name="P:NUnit.Framework.Constraints.BinaryOperator.LeftPrecedence">
  10692. <summary>
  10693. Gets the left precedence of the operator
  10694. </summary>
  10695. </member>
  10696. <member name="P:NUnit.Framework.Constraints.BinaryOperator.RightPrecedence">
  10697. <summary>
  10698. Gets the right precedence of the operator
  10699. </summary>
  10700. </member>
  10701. <member name="M:NUnit.Framework.Constraints.AndOperator.#ctor">
  10702. <summary>
  10703. Construct an AndOperator
  10704. </summary>
  10705. </member>
  10706. <member name="M:NUnit.Framework.Constraints.AndOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  10707. <summary>
  10708. Apply the operator to produce an AndConstraint
  10709. </summary>
  10710. </member>
  10711. <member name="T:NUnit.Framework.Constraints.AttributeOperator">
  10712. <summary>
  10713. Operator that tests for the presence of a particular attribute
  10714. on a type and optionally applies further tests to the attribute.
  10715. </summary>
  10716. </member>
  10717. <member name="T:NUnit.Framework.Constraints.SelfResolvingOperator">
  10718. <summary>
  10719. Abstract base class for operators that are able to reduce to a
  10720. constraint whether or not another syntactic element follows.
  10721. </summary>
  10722. </member>
  10723. <member name="M:NUnit.Framework.Constraints.AttributeOperator.#ctor(System.Type)">
  10724. <summary>
  10725. Construct an AttributeOperator for a particular Type
  10726. </summary>
  10727. <param name="type">The Type of attribute tested</param>
  10728. </member>
  10729. <member name="M:NUnit.Framework.Constraints.AttributeOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  10730. <summary>
  10731. Reduce produces a constraint from the operator and
  10732. any arguments. It takes the arguments from the constraint
  10733. stack and pushes the resulting constraint on it.
  10734. </summary>
  10735. </member>
  10736. <member name="T:NUnit.Framework.Constraints.ExactCountOperator">
  10737. <summary>
  10738. Represents a constraint that succeeds if the specified
  10739. count of members of a collection match a base constraint.
  10740. </summary>
  10741. </member>
  10742. <member name="M:NUnit.Framework.Constraints.ExactCountOperator.#ctor(System.Int32)">
  10743. <summary>
  10744. Construct an ExactCountOperator for a specified count
  10745. </summary>
  10746. <param name="expectedCount">The expected count</param>
  10747. </member>
  10748. <member name="M:NUnit.Framework.Constraints.ExactCountOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  10749. <summary>
  10750. Returns a constraint that will apply the argument
  10751. to the members of a collection, succeeding if
  10752. none of them succeed.
  10753. </summary>
  10754. </member>
  10755. <member name="T:NUnit.Framework.Constraints.NoneOperator">
  10756. <summary>
  10757. Represents a constraint that succeeds if none of the
  10758. members of a collection match a base constraint.
  10759. </summary>
  10760. </member>
  10761. <member name="M:NUnit.Framework.Constraints.NoneOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  10762. <summary>
  10763. Returns a constraint that will apply the argument
  10764. to the members of a collection, succeeding if
  10765. none of them succeed.
  10766. </summary>
  10767. </member>
  10768. <member name="T:NUnit.Framework.Constraints.NotOperator">
  10769. <summary>
  10770. Negates the test of the constraint it wraps.
  10771. </summary>
  10772. </member>
  10773. <member name="M:NUnit.Framework.Constraints.NotOperator.#ctor">
  10774. <summary>
  10775. Constructs a new NotOperator
  10776. </summary>
  10777. </member>
  10778. <member name="M:NUnit.Framework.Constraints.NotOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  10779. <summary>
  10780. Returns a NotConstraint applied to its argument.
  10781. </summary>
  10782. </member>
  10783. <member name="T:NUnit.Framework.Constraints.OrOperator">
  10784. <summary>
  10785. Operator that requires at least one of it's arguments to succeed
  10786. </summary>
  10787. </member>
  10788. <member name="M:NUnit.Framework.Constraints.OrOperator.#ctor">
  10789. <summary>
  10790. Construct an OrOperator
  10791. </summary>
  10792. </member>
  10793. <member name="M:NUnit.Framework.Constraints.OrOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  10794. <summary>
  10795. Apply the operator to produce an OrConstraint
  10796. </summary>
  10797. </member>
  10798. <member name="T:NUnit.Framework.Constraints.PropOperator">
  10799. <summary>
  10800. Operator used to test for the presence of a named Property
  10801. on an object and optionally apply further tests to the
  10802. value of that property.
  10803. </summary>
  10804. </member>
  10805. <member name="M:NUnit.Framework.Constraints.PropOperator.#ctor(System.String)">
  10806. <summary>
  10807. Constructs a PropOperator for a particular named property
  10808. </summary>
  10809. </member>
  10810. <member name="M:NUnit.Framework.Constraints.PropOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  10811. <summary>
  10812. Reduce produces a constraint from the operator and
  10813. any arguments. It takes the arguments from the constraint
  10814. stack and pushes the resulting constraint on it.
  10815. </summary>
  10816. <param name="stack"></param>
  10817. </member>
  10818. <member name="P:NUnit.Framework.Constraints.PropOperator.Name">
  10819. <summary>
  10820. Gets the name of the property to which the operator applies
  10821. </summary>
  10822. </member>
  10823. <member name="T:NUnit.Framework.Constraints.SomeOperator">
  10824. <summary>
  10825. Represents a constraint that succeeds if any of the
  10826. members of a collection match a base constraint.
  10827. </summary>
  10828. </member>
  10829. <member name="M:NUnit.Framework.Constraints.SomeOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  10830. <summary>
  10831. Returns a constraint that will apply the argument
  10832. to the members of a collection, succeeding if
  10833. any of them succeed.
  10834. </summary>
  10835. </member>
  10836. <member name="T:NUnit.Framework.Constraints.ThrowsOperator">
  10837. <summary>
  10838. Operator that tests that an exception is thrown and
  10839. optionally applies further tests to the exception.
  10840. </summary>
  10841. </member>
  10842. <member name="M:NUnit.Framework.Constraints.ThrowsOperator.#ctor">
  10843. <summary>
  10844. Construct a ThrowsOperator
  10845. </summary>
  10846. </member>
  10847. <member name="M:NUnit.Framework.Constraints.ThrowsOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  10848. <summary>
  10849. Reduce produces a constraint from the operator and
  10850. any arguments. It takes the arguments from the constraint
  10851. stack and pushes the resulting constraint on it.
  10852. </summary>
  10853. </member>
  10854. <member name="T:NUnit.Framework.Constraints.WithOperator">
  10855. <summary>
  10856. Represents a constraint that simply wraps the
  10857. constraint provided as an argument, without any
  10858. further functionality, but which modifes the
  10859. order of evaluation because of its precedence.
  10860. </summary>
  10861. </member>
  10862. <member name="M:NUnit.Framework.Constraints.WithOperator.#ctor">
  10863. <summary>
  10864. Constructor for the WithOperator
  10865. </summary>
  10866. </member>
  10867. <member name="M:NUnit.Framework.Constraints.WithOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  10868. <summary>
  10869. Returns a constraint that wraps its argument
  10870. </summary>
  10871. </member>
  10872. <member name="T:NUnit.Framework.AssertionException">
  10873. <summary>
  10874. Thrown when an assertion failed.
  10875. </summary>
  10876. </member>
  10877. <member name="M:NUnit.Framework.AssertionException.#ctor(System.String)">
  10878. <param name="message">The error message that explains
  10879. the reason for the exception</param>
  10880. </member>
  10881. <member name="M:NUnit.Framework.AssertionException.#ctor(System.String,System.Exception)">
  10882. <param name="message">The error message that explains
  10883. the reason for the exception</param>
  10884. <param name="inner">The exception that caused the
  10885. current exception</param>
  10886. </member>
  10887. <member name="M:NUnit.Framework.AssertionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  10888. <summary>
  10889. Serialization Constructor
  10890. </summary>
  10891. </member>
  10892. <member name="T:NUnit.Framework.IgnoreException">
  10893. <summary>
  10894. Thrown when an assertion failed.
  10895. </summary>
  10896. </member>
  10897. <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String)">
  10898. <param name="message"></param>
  10899. </member>
  10900. <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String,System.Exception)">
  10901. <param name="message">The error message that explains
  10902. the reason for the exception</param>
  10903. <param name="inner">The exception that caused the
  10904. current exception</param>
  10905. </member>
  10906. <member name="M:NUnit.Framework.IgnoreException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  10907. <summary>
  10908. Serialization Constructor
  10909. </summary>
  10910. </member>
  10911. <member name="T:NUnit.Framework.InconclusiveException">
  10912. <summary>
  10913. Thrown when a test executes inconclusively.
  10914. </summary>
  10915. </member>
  10916. <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.String)">
  10917. <param name="message">The error message that explains
  10918. the reason for the exception</param>
  10919. </member>
  10920. <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.String,System.Exception)">
  10921. <param name="message">The error message that explains
  10922. the reason for the exception</param>
  10923. <param name="inner">The exception that caused the
  10924. current exception</param>
  10925. </member>
  10926. <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  10927. <summary>
  10928. Serialization Constructor
  10929. </summary>
  10930. </member>
  10931. <member name="T:NUnit.Framework.SuccessException">
  10932. <summary>
  10933. Thrown when an assertion failed.
  10934. </summary>
  10935. </member>
  10936. <member name="M:NUnit.Framework.SuccessException.#ctor(System.String)">
  10937. <param name="message"></param>
  10938. </member>
  10939. <member name="M:NUnit.Framework.SuccessException.#ctor(System.String,System.Exception)">
  10940. <param name="message">The error message that explains
  10941. the reason for the exception</param>
  10942. <param name="inner">The exception that caused the
  10943. current exception</param>
  10944. </member>
  10945. <member name="M:NUnit.Framework.SuccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  10946. <summary>
  10947. Serialization Constructor
  10948. </summary>
  10949. </member>
  10950. <member name="T:NUnit.Framework.INUnitEqualityComparer`1">
  10951. <summary>
  10952. </summary>
  10953. <typeparam name="T"></typeparam>
  10954. </member>
  10955. <member name="M:NUnit.Framework.INUnitEqualityComparer`1.AreEqual(`0,`0,NUnit.Framework.Constraints.Tolerance@)">
  10956. <summary>
  10957. Compares two objects of a given Type for equality within a tolerance
  10958. </summary>
  10959. <param name="x">The first object to compare</param>
  10960. <param name="y">The second object to compare</param>
  10961. <param name="tolerance">The tolerance to use in the comparison</param>
  10962. <returns></returns>
  10963. </member>
  10964. </members>
  10965. </doc>