nunit.framework.xml 297 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>nunit.framework</name>
  5. </assembly>
  6. <members>
  7. <member name="T:NUnit.Framework.Constraints.EmptyStringConstraint">
  8. <summary>
  9. EmptyStringConstraint tests whether a string is empty.
  10. </summary>
  11. </member>
  12. <member name="T:NUnit.Framework.Constraints.EmptyConstraint">
  13. <summary>
  14. EmptyConstraint tests a whether a string or collection is empty,
  15. postponing the decision about which test is applied until the
  16. type of the actual argument is known.
  17. </summary>
  18. </member>
  19. <member name="T:NUnit.Framework.Constraints.Constraint">
  20. <summary>
  21. The Constraint class is the base of all built-in or
  22. user-defined constraints in NUnit. It provides the operator
  23. overloads used to combine constraints.
  24. </summary>
  25. </member>
  26. <member name="F:NUnit.Framework.Constraints.Constraint.UNSET">
  27. <summary>
  28. Static UnsetObject used to detect derived constraints
  29. failing to set the actual value.
  30. </summary>
  31. </member>
  32. <member name="F:NUnit.Framework.Constraints.Constraint.caseInsensitive">
  33. <summary>
  34. If true, all string comparisons will ignore case
  35. </summary>
  36. </member>
  37. <member name="F:NUnit.Framework.Constraints.Constraint.clipStrings">
  38. <summary>
  39. If true, strings in error messages will be clipped
  40. </summary>
  41. </member>
  42. <member name="F:NUnit.Framework.Constraints.Constraint.compareAsCollection">
  43. <summary>
  44. If true, arrays will be treated as collections, allowing
  45. those of different dimensions to be compared
  46. </summary>
  47. </member>
  48. <member name="F:NUnit.Framework.Constraints.Constraint.tolerance">
  49. <summary>
  50. If non-zero, equality comparisons within the specified
  51. tolerance will succeed.
  52. </summary>
  53. </member>
  54. <member name="F:NUnit.Framework.Constraints.Constraint.compareWith">
  55. <summary>
  56. IComparer object used in comparisons for some constraints.
  57. </summary>
  58. </member>
  59. <member name="F:NUnit.Framework.Constraints.Constraint.actual">
  60. <summary>
  61. The actual value being tested against a constraint
  62. </summary>
  63. </member>
  64. <member name="M:NUnit.Framework.Constraints.Constraint.Within(System.Object)">
  65. <summary>
  66. Flag the constraint to use a tolerance when determining equality.
  67. Currently only used for doubles and floats.
  68. </summary>
  69. <param name="tolerance">Tolerance to be used</param>
  70. <returns>Self.</returns>
  71. </member>
  72. <member name="M:NUnit.Framework.Constraints.Constraint.Comparer(System.Collections.IComparer)">
  73. <summary>
  74. Flag the constraint to use the supplied IComparer object.
  75. </summary>
  76. <param name="comparer">The IComparer object to use.</param>
  77. <returns>Self.</returns>
  78. </member>
  79. <member name="M:NUnit.Framework.Constraints.Constraint.WriteMessageTo(NUnit.Framework.MessageWriter)">
  80. <summary>
  81. Write the failure message to the MessageWriter provided
  82. as an argument. The default implementation simply passes
  83. the constraint and the actual value to the writer, which
  84. then displays the constraint description and the value.
  85. Constraints that need to provide additional details,
  86. such as where the error occured can override this.
  87. </summary>
  88. <param name="writer">The MessageWriter on which to display the message</param>
  89. </member>
  90. <member name="M:NUnit.Framework.Constraints.Constraint.Matches(System.Object)">
  91. <summary>
  92. Test whether the constraint is satisfied by a given value
  93. </summary>
  94. <param name="actual">The value to be tested</param>
  95. <returns>True for success, false for failure</returns>
  96. </member>
  97. <member name="M:NUnit.Framework.Constraints.Constraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  98. <summary>
  99. Write the constraint description to a MessageWriter
  100. </summary>
  101. <param name="writer">The writer on which the description is displayed</param>
  102. </member>
  103. <member name="M:NUnit.Framework.Constraints.Constraint.WriteActualValueTo(NUnit.Framework.MessageWriter)">
  104. <summary>
  105. Write the actual value for a failing constraint test to a
  106. MessageWriter. The default implementation simply writes
  107. the raw value of actual, leaving it to the writer to
  108. perform any formatting.
  109. </summary>
  110. <param name="writer">The writer on which the actual value is displayed</param>
  111. </member>
  112. <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  113. <summary>
  114. This operator creates a constraint that is satisfied only if both
  115. argument constraints are satisfied.
  116. </summary>
  117. </member>
  118. <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  119. <summary>
  120. This operator creates a constraint that is satisfied if either
  121. of the argument constraints is satisfied.
  122. </summary>
  123. </member>
  124. <member name="M:NUnit.Framework.Constraints.Constraint.op_LogicalNot(NUnit.Framework.Constraints.Constraint)">
  125. <summary>
  126. This operator creates a constraint that is satisfied if the
  127. argument constraint is not satisfied.
  128. </summary>
  129. </member>
  130. <member name="P:NUnit.Framework.Constraints.Constraint.IgnoreCase">
  131. <summary>
  132. Flag the constraint to ignore case and return self.
  133. </summary>
  134. </member>
  135. <member name="P:NUnit.Framework.Constraints.Constraint.NoClip">
  136. <summary>
  137. Flag the constraint to suppress string clipping
  138. and return self.
  139. </summary>
  140. </member>
  141. <member name="P:NUnit.Framework.Constraints.Constraint.AsCollection">
  142. <summary>
  143. Flag the constraint to compare arrays as collections
  144. and return self.
  145. </summary>
  146. </member>
  147. <member name="T:NUnit.Framework.Constraints.Constraint.UnsetObject">
  148. <summary>
  149. Class used to detect any derived constraints
  150. that fail to set the actual value in their
  151. Matches override.
  152. </summary>
  153. </member>
  154. <member name="M:NUnit.Framework.Constraints.EmptyConstraint.Matches(System.Object)">
  155. <summary>
  156. Test whether the constraint is satisfied by a given value
  157. </summary>
  158. <param name="actual">The value to be tested</param>
  159. <returns>True for success, false for failure</returns>
  160. </member>
  161. <member name="M:NUnit.Framework.Constraints.EmptyConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  162. <summary>
  163. Write the constraint description to a MessageWriter
  164. </summary>
  165. <param name="writer">The writer on which the description is displayed</param>
  166. </member>
  167. <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.Matches(System.Object)">
  168. <summary>
  169. Test whether the constraint is satisfied by a given value
  170. </summary>
  171. <param name="actual">The value to be tested</param>
  172. <returns>True for success, false for failure</returns>
  173. </member>
  174. <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  175. <summary>
  176. Write the constraint description to a MessageWriter
  177. </summary>
  178. <param name="writer">The writer on which the description is displayed</param>
  179. </member>
  180. <member name="T:NUnit.Framework.Constraints.SubstringConstraint">
  181. <summary>
  182. SubstringConstraint can test whether a string contains
  183. the expected substring.
  184. </summary>
  185. </member>
  186. <member name="M:NUnit.Framework.Constraints.SubstringConstraint.#ctor(System.String)">
  187. <summary>
  188. Initializes a new instance of the <see cref="T:SubstringConstraint"/> class.
  189. </summary>
  190. <param name="expected">The expected.</param>
  191. </member>
  192. <member name="M:NUnit.Framework.Constraints.SubstringConstraint.Matches(System.Object)">
  193. <summary>
  194. Test whether the constraint is satisfied by a given value
  195. </summary>
  196. <param name="actual">The value to be tested</param>
  197. <returns>True for success, false for failure</returns>
  198. </member>
  199. <member name="M:NUnit.Framework.Constraints.SubstringConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  200. <summary>
  201. Write the constraint description to a MessageWriter
  202. </summary>
  203. <param name="writer">The writer on which the description is displayed</param>
  204. </member>
  205. <member name="T:NUnit.Framework.Constraints.StartsWithConstraint">
  206. <summary>
  207. StartsWithConstraint can test whether a string starts
  208. with an expected substring.
  209. </summary>
  210. </member>
  211. <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.#ctor(System.String)">
  212. <summary>
  213. Initializes a new instance of the <see cref="T:StartsWithConstraint"/> class.
  214. </summary>
  215. <param name="expected">The expected string</param>
  216. </member>
  217. <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.Matches(System.Object)">
  218. <summary>
  219. Test whether the constraint is matched by the actual value.
  220. This is a template method, which calls the IsMatch method
  221. of the derived class.
  222. </summary>
  223. <param name="actual"></param>
  224. <returns></returns>
  225. </member>
  226. <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  227. <summary>
  228. Write the constraint description to a MessageWriter
  229. </summary>
  230. <param name="writer">The writer on which the description is displayed</param>
  231. </member>
  232. <member name="T:NUnit.Framework.Constraints.EndsWithConstraint">
  233. <summary>
  234. EndsWithConstraint can test whether a string ends
  235. with an expected substring.
  236. </summary>
  237. </member>
  238. <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.#ctor(System.String)">
  239. <summary>
  240. Initializes a new instance of the <see cref="T:EndsWithConstraint"/> class.
  241. </summary>
  242. <param name="expected">The expected string</param>
  243. </member>
  244. <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.Matches(System.Object)">
  245. <summary>
  246. Test whether the constraint is matched by the actual value.
  247. This is a template method, which calls the IsMatch method
  248. of the derived class.
  249. </summary>
  250. <param name="actual"></param>
  251. <returns></returns>
  252. </member>
  253. <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  254. <summary>
  255. Write the constraint description to a MessageWriter
  256. </summary>
  257. <param name="writer">The writer on which the description is displayed</param>
  258. </member>
  259. <member name="T:NUnit.Framework.Constraints.RegexConstraint">
  260. <summary>
  261. RegexConstraint can test whether a string matches
  262. the pattern provided.
  263. </summary>
  264. </member>
  265. <member name="M:NUnit.Framework.Constraints.RegexConstraint.#ctor(System.String)">
  266. <summary>
  267. Initializes a new instance of the <see cref="T:RegexConstraint"/> class.
  268. </summary>
  269. <param name="pattern">The pattern.</param>
  270. </member>
  271. <member name="M:NUnit.Framework.Constraints.RegexConstraint.Matches(System.Object)">
  272. <summary>
  273. Test whether the constraint is satisfied by a given value
  274. </summary>
  275. <param name="actual">The value to be tested</param>
  276. <returns>True for success, false for failure</returns>
  277. </member>
  278. <member name="M:NUnit.Framework.Constraints.RegexConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  279. <summary>
  280. Write the constraint description to a MessageWriter
  281. </summary>
  282. <param name="writer">The writer on which the description is displayed</param>
  283. </member>
  284. <member name="T:NUnit.Framework.Constraints.ConstraintBuilder">
  285. <summary>
  286. ConstraintBuilder is used to resolve the Not and All properties,
  287. which serve as prefix operators for constraints. With the addition
  288. of an operand stack, And and Or could be supported, but we have
  289. left them out in favor of a simpler, more type-safe implementation.
  290. Use the &amp; and | operator overloads to combine constraints.
  291. </summary>
  292. </member>
  293. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.op_Implicit(NUnit.Framework.Constraints.ConstraintBuilder)~NUnit.Framework.Constraints.Constraint">
  294. <summary>
  295. Implicitly convert ConstraintBuilder to an actual Constraint
  296. at the point where the syntax demands it.
  297. </summary>
  298. <param name="builder"></param>
  299. <returns></returns>
  300. </member>
  301. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.EqualTo(System.Object)">
  302. <summary>
  303. Resolves the chain of constraints using an
  304. EqualConstraint as base.
  305. </summary>
  306. </member>
  307. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.SameAs(System.Object)">
  308. <summary>
  309. Resolves the chain of constraints using a
  310. SameAsConstraint as base.
  311. </summary>
  312. </member>
  313. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.LessThan(System.IComparable)">
  314. <summary>
  315. Resolves the chain of constraints using a
  316. LessThanConstraint as base.
  317. </summary>
  318. </member>
  319. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.GreaterThan(System.IComparable)">
  320. <summary>
  321. Resolves the chain of constraints using a
  322. GreaterThanConstraint as base.
  323. </summary>
  324. </member>
  325. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.LessThanOrEqualTo(System.IComparable)">
  326. <summary>
  327. Resolves the chain of constraints using a
  328. LessThanOrEqualConstraint as base.
  329. </summary>
  330. </member>
  331. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.AtMost(System.IComparable)">
  332. <summary>
  333. Resolves the chain of constraints using a
  334. LessThanOrEqualConstraint as base.
  335. </summary>
  336. </member>
  337. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.GreaterThanOrEqualTo(System.IComparable)">
  338. <summary>
  339. Resolves the chain of constraints using a
  340. GreaterThanOrEqualConstraint as base.
  341. </summary>
  342. </member>
  343. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.AtLeast(System.IComparable)">
  344. <summary>
  345. Resolves the chain of constraints using a
  346. GreaterThanOrEqualConstraint as base.
  347. </summary>
  348. </member>
  349. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.TypeOf(System.Type)">
  350. <summary>
  351. Resolves the chain of constraints using an
  352. ExactTypeConstraint as base.
  353. </summary>
  354. </member>
  355. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.InstanceOfType(System.Type)">
  356. <summary>
  357. Resolves the chain of constraints using an
  358. InstanceOfTypeConstraint as base.
  359. </summary>
  360. </member>
  361. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.AssignableFrom(System.Type)">
  362. <summary>
  363. Resolves the chain of constraints using an
  364. AssignableFromConstraint as base.
  365. </summary>
  366. </member>
  367. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Contains(System.Object)">
  368. <summary>
  369. Resolves the chain of constraints using a
  370. ContainsConstraint as base. This constraint
  371. will, in turn, make use of the appropriate
  372. second-level constraint, depending on the
  373. type of the actual argument.
  374. </summary>
  375. </member>
  376. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Member(System.Object)">
  377. <summary>
  378. Resolves the chain of constraints using a
  379. CollectionContainsConstraint as base.
  380. </summary>
  381. <param name="expected">The expected object</param>
  382. </member>
  383. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.StartsWith(System.String)">
  384. <summary>
  385. Resolves the chain of constraints using a
  386. StartsWithConstraint as base.
  387. </summary>
  388. </member>
  389. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.EndsWith(System.String)">
  390. <summary>
  391. Resolves the chain of constraints using a
  392. StringEndingConstraint as base.
  393. </summary>
  394. </member>
  395. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Matches(System.String)">
  396. <summary>
  397. Resolves the chain of constraints using a
  398. StringMatchingConstraint as base.
  399. </summary>
  400. </member>
  401. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.EquivalentTo(System.Collections.ICollection)">
  402. <summary>
  403. Resolves the chain of constraints using a
  404. CollectionEquivalentConstraint as base.
  405. </summary>
  406. </member>
  407. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.CollectionContaining(System.Object)">
  408. <summary>
  409. Resolves the chain of constraints using a
  410. CollectionContainingConstraint as base.
  411. </summary>
  412. </member>
  413. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.SubsetOf(System.Collections.ICollection)">
  414. <summary>
  415. Resolves the chain of constraints using a
  416. CollectionSubsetConstraint as base.
  417. </summary>
  418. </member>
  419. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Property(System.String,System.Object)">
  420. <summary>
  421. Resolves the chain of constraints using a
  422. PropertyConstraint as base
  423. </summary>
  424. </member>
  425. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Length(System.Int32)">
  426. <summary>
  427. Resolves the chain of constraints using a
  428. PropertyCOnstraint on Length as base
  429. </summary>
  430. <param name="length"></param>
  431. <returns></returns>
  432. </member>
  433. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Count(System.Int32)">
  434. <summary>
  435. Resolves the chain of constraints using a
  436. PropertyCOnstraint on Length as base
  437. </summary>
  438. <param name="count"></param>
  439. <returns></returns>
  440. </member>
  441. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Property(System.String)">
  442. <summary>
  443. Modifies the ConstraintBuilder by pushing a Prop operator on the
  444. ops stack and the name of the property on the opnds stack.
  445. </summary>
  446. <param name="name"></param>
  447. <returns></returns>
  448. </member>
  449. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Resolve(NUnit.Framework.Constraints.Constraint)">
  450. <summary>
  451. Resolve a constraint that has been recognized by applying
  452. any pending operators and returning the resulting Constraint.
  453. </summary>
  454. <returns>A constraint that incorporates all pending operators</returns>
  455. </member>
  456. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Null">
  457. <summary>
  458. Resolves the chain of constraints using
  459. EqualConstraint(null) as base.
  460. </summary>
  461. </member>
  462. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.True">
  463. <summary>
  464. Resolves the chain of constraints using
  465. EqualConstraint(true) as base.
  466. </summary>
  467. </member>
  468. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.False">
  469. <summary>
  470. Resolves the chain of constraints using
  471. EqualConstraint(false) as base.
  472. </summary>
  473. </member>
  474. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.NaN">
  475. <summary>
  476. Resolves the chain of constraints using
  477. Is.NaN as base.
  478. </summary>
  479. </member>
  480. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Empty">
  481. <summary>
  482. Resolves the chain of constraints using
  483. Is.Empty as base.
  484. </summary>
  485. </member>
  486. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Unique">
  487. <summary>
  488. Resolves the chain of constraints using
  489. Is.Unique as base.
  490. </summary>
  491. </member>
  492. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Not">
  493. <summary>
  494. Modifies the ConstraintBuilder by pushing a Not operator on the stack.
  495. </summary>
  496. </member>
  497. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.No">
  498. <summary>
  499. Modifies the ConstraintBuilder by pushing a Not operator on the stack.
  500. </summary>
  501. </member>
  502. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.All">
  503. <summary>
  504. Modifies the ConstraintBuilder by pushing an All operator on the stack.
  505. </summary>
  506. </member>
  507. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Some">
  508. <summary>
  509. Modifies the ConstraintBuilder by pushing a Some operator on the stack.
  510. </summary>
  511. </member>
  512. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.None">
  513. <summary>
  514. Modifies the constraint builder by pushing All and Not operators on the stack
  515. </summary>
  516. </member>
  517. <member name="T:NUnit.Framework.Constraints.CollectionConstraint">
  518. <summary>
  519. CollectionConstraint is the abstract base class for
  520. constraints that operate on collections.
  521. </summary>
  522. </member>
  523. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.Matches(System.Object)">
  524. <summary>
  525. Test whether the constraint is satisfied by a given value
  526. </summary>
  527. <param name="actual">The value to be tested</param>
  528. <returns>True for success, false for failure</returns>
  529. </member>
  530. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.doMatch(System.Collections.IEnumerable)">
  531. <summary>
  532. Protected method to be implemented by derived classes
  533. </summary>
  534. <param name="collection"></param>
  535. <returns></returns>
  536. </member>
  537. <member name="T:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally">
  538. <summary>
  539. CollectionTally counts (tallies) the number of
  540. occurences of each object in one or more enuerations.
  541. </summary>
  542. </member>
  543. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally.#ctor(System.Collections.IEnumerable)">
  544. <summary>
  545. Construct a CollectionTally object from a collection
  546. </summary>
  547. <param name="c"></param>
  548. </member>
  549. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally.CanRemove(System.Collections.IEnumerable)">
  550. <summary>
  551. Remove the counts for a collection from the tally,
  552. so long as their are sufficient items to remove.
  553. The tallies are not permitted to become negative.
  554. </summary>
  555. <param name="c">The collection to remove</param>
  556. <returns>True if there were enough items to remove, otherwise false</returns>
  557. </member>
  558. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally.AllCountsEqualTo(System.Int32)">
  559. <summary>
  560. Test whether all the counts are equal to a given value
  561. </summary>
  562. <param name="count">The value to be looked for</param>
  563. <returns>True if all counts are equal to the value, otherwise false</returns>
  564. </member>
  565. <member name="P:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally.Item(System.Object)">
  566. <summary>
  567. Get the count of the number of times an object is present in the tally
  568. </summary>
  569. </member>
  570. <member name="T:NUnit.Framework.Constraints.EmptyCollectionConstraint">
  571. <summary>
  572. EmptyCollectionConstraint tests whether a colletion is empty.
  573. </summary>
  574. </member>
  575. <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.doMatch(System.Collections.IEnumerable)">
  576. <summary>
  577. Check that the collection is empty
  578. </summary>
  579. <param name="collection"></param>
  580. <returns></returns>
  581. </member>
  582. <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  583. <summary>
  584. Write the constraint description to a MessageWriter
  585. </summary>
  586. <param name="writer"></param>
  587. </member>
  588. <member name="T:NUnit.Framework.Constraints.UniqueItemsConstraint">
  589. <summary>
  590. UniqueItemsConstraint tests whether all the items in a
  591. collection are unique.
  592. </summary>
  593. </member>
  594. <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.doMatch(System.Collections.IEnumerable)">
  595. <summary>
  596. Check that all items are unique.
  597. </summary>
  598. <param name="actual"></param>
  599. <returns></returns>
  600. </member>
  601. <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  602. <summary>
  603. Write a description of this constraint to a MessageWriter
  604. </summary>
  605. <param name="writer"></param>
  606. </member>
  607. <member name="T:NUnit.Framework.Constraints.CollectionContainsConstraint">
  608. <summary>
  609. CollectionContainsConstraint is used to test whether a collection
  610. contains an expected object as a member.
  611. </summary>
  612. </member>
  613. <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.#ctor(System.Object)">
  614. <summary>
  615. Construct a CollectionContainsConstraint
  616. </summary>
  617. <param name="expected"></param>
  618. </member>
  619. <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.doMatch(System.Collections.IEnumerable)">
  620. <summary>
  621. Test whether the expected item is contained in the collection
  622. </summary>
  623. <param name="actual"></param>
  624. <returns></returns>
  625. </member>
  626. <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  627. <summary>
  628. Write a descripton of the constraint to a MessageWriter
  629. </summary>
  630. <param name="writer"></param>
  631. </member>
  632. <member name="T:NUnit.Framework.Constraints.CollectionEquivalentConstraint">
  633. <summary>
  634. CollectionEquivalentCOnstraint is used to determine whether two
  635. collections are equivalent.
  636. </summary>
  637. </member>
  638. <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.#ctor(System.Collections.IEnumerable)">
  639. <summary>
  640. Construct a CollectionEquivalentConstraint
  641. </summary>
  642. <param name="expected"></param>
  643. </member>
  644. <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.doMatch(System.Collections.IEnumerable)">
  645. <summary>
  646. Test whether two collections are equivalent
  647. </summary>
  648. <param name="actual"></param>
  649. <returns></returns>
  650. </member>
  651. <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  652. <summary>
  653. Write a description of this constraint to a MessageWriter
  654. </summary>
  655. <param name="writer"></param>
  656. </member>
  657. <member name="T:NUnit.Framework.Constraints.CollectionSubsetConstraint">
  658. <summary>
  659. CollectionSubsetConstraint is used to determine whether
  660. one collection is a subset of another
  661. </summary>
  662. </member>
  663. <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.#ctor(System.Collections.IEnumerable)">
  664. <summary>
  665. Construct a CollectionSubsetConstraint
  666. </summary>
  667. <param name="expected">The collection that the actual value is expected to be a subset of</param>
  668. </member>
  669. <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.doMatch(System.Collections.IEnumerable)">
  670. <summary>
  671. Test whether the actual collection is a subset of
  672. the expected collection provided.
  673. </summary>
  674. <param name="actual"></param>
  675. <returns></returns>
  676. </member>
  677. <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  678. <summary>
  679. Write a description of this constraint to a MessageWriter
  680. </summary>
  681. <param name="writer"></param>
  682. </member>
  683. <member name="T:NUnit.Framework.Constraints.EqualConstraint">
  684. <summary>
  685. EqualConstraint is able to compare an actual value with the
  686. expected value provided in its constructor.
  687. </summary>
  688. </member>
  689. <member name="M:NUnit.Framework.Constraints.EqualConstraint.#ctor(System.Object)">
  690. <summary>
  691. Initializes a new instance of the <see cref="T:EqualConstraint"/> class.
  692. </summary>
  693. <param name="expected">The expected value.</param>
  694. </member>
  695. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Matches(System.Object)">
  696. <summary>
  697. Test whether the constraint is satisfied by a given value
  698. </summary>
  699. <param name="actual">The value to be tested</param>
  700. <returns>True for success, false for failure</returns>
  701. </member>
  702. <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteMessageTo(NUnit.Framework.MessageWriter)">
  703. <summary>
  704. Write a failure message. Overridden to provide custom
  705. failure messages for EqualConstraint.
  706. </summary>
  707. <param name="writer">The MessageWriter to write to</param>
  708. </member>
  709. <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  710. <summary>
  711. Write description of this constraint
  712. </summary>
  713. <param name="writer">The MessageWriter to write to</param>
  714. </member>
  715. <member name="M:NUnit.Framework.Constraints.EqualConstraint.ArraysEqual(System.Array,System.Array)">
  716. <summary>
  717. Helper method to compare two arrays
  718. </summary>
  719. </member>
  720. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionDifferences(NUnit.Framework.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
  721. <summary>
  722. Display the failure information for two collections that did not match.
  723. </summary>
  724. <param name="writer">The MessageWriter on which to display</param>
  725. <param name="expected">The expected collection.</param>
  726. <param name="actual">The actual collection</param>
  727. <param name="depth">The depth of this failure in a set of nested collections</param>
  728. </member>
  729. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionTypesAndSizes(NUnit.Framework.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
  730. <summary>
  731. Displays a single line showing the types and sizes of the expected
  732. and actual collections or arrays. If both are identical, the value is
  733. only shown once.
  734. </summary>
  735. <param name="writer">The MessageWriter on which to display</param>
  736. <param name="expected">The expected collection or array</param>
  737. <param name="actual">The actual collection or array</param>
  738. <param name="indent">The indentation level for the message line</param>
  739. </member>
  740. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayFailurePoint(NUnit.Framework.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32,System.Int32)">
  741. <summary>
  742. Displays a single line showing the point in the expected and actual
  743. arrays at which the comparison failed. If the arrays have different
  744. structures or dimensions, both values are shown.
  745. </summary>
  746. <param name="writer">The MessageWriter on which to display</param>
  747. <param name="expected">The expected array</param>
  748. <param name="actual">The actual array</param>
  749. <param name="failurePoint">Index of the failure point in the underlying collections</param>
  750. <param name="indent">The indentation level for the message line</param>
  751. </member>
  752. <member name="T:NUnit.Framework.Constraints.PrefixConstraint">
  753. <summary>
  754. Abstract base class used for prefixes
  755. </summary>
  756. </member>
  757. <member name="F:NUnit.Framework.Constraints.PrefixConstraint.baseConstraint">
  758. <summary>
  759. The base constraint
  760. </summary>
  761. </member>
  762. <member name="M:NUnit.Framework.Constraints.PrefixConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  763. <summary>
  764. Construct given a base constraint
  765. </summary>
  766. <param name="baseConstraint"></param>
  767. </member>
  768. <member name="M:NUnit.Framework.Constraints.PrefixConstraint.PassModifiersToBase">
  769. <summary>
  770. Set all modifiers applied to the prefix into
  771. the base constraint before matching
  772. </summary>
  773. </member>
  774. <member name="T:NUnit.Framework.Constraints.NotConstraint">
  775. <summary>
  776. NotConstraint negates the effect of some other constraint
  777. </summary>
  778. </member>
  779. <member name="M:NUnit.Framework.Constraints.NotConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  780. <summary>
  781. Initializes a new instance of the <see cref="T:NotConstraint"/> class.
  782. </summary>
  783. <param name="baseConstraint">The base constraint to be negated.</param>
  784. </member>
  785. <member name="M:NUnit.Framework.Constraints.NotConstraint.Matches(System.Object)">
  786. <summary>
  787. Test whether the constraint is satisfied by a given value
  788. </summary>
  789. <param name="actual">The value to be tested</param>
  790. <returns>True for if the base constraint fails, false if it succeeds</returns>
  791. </member>
  792. <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  793. <summary>
  794. Write the constraint description to a MessageWriter
  795. </summary>
  796. <param name="writer">The writer on which the description is displayed</param>
  797. </member>
  798. <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteActualValueTo(NUnit.Framework.MessageWriter)">
  799. <summary>
  800. Write the actual value for a failing constraint test to a MessageWriter.
  801. </summary>
  802. <param name="writer">The writer on which the actual value is displayed</param>
  803. </member>
  804. <member name="T:NUnit.Framework.Constraints.AllItemsConstraint">
  805. <summary>
  806. AllItemsConstraint applies another constraint to each
  807. item in a collection, succeeding if they all succeed.
  808. </summary>
  809. </member>
  810. <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  811. <summary>
  812. Construct an AllItemsConstraint on top of an existing constraint
  813. </summary>
  814. <param name="itemConstraint"></param>
  815. </member>
  816. <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.Matches(System.Object)">
  817. <summary>
  818. Apply the item constraint to each item in the collection,
  819. failing if any item fails.
  820. </summary>
  821. <param name="actual"></param>
  822. <returns></returns>
  823. </member>
  824. <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  825. <summary>
  826. Write a description of this constraint to a MessageWriter
  827. </summary>
  828. <param name="writer"></param>
  829. </member>
  830. <member name="T:NUnit.Framework.Constraints.SomeItemsConstraint">
  831. <summary>
  832. SomeItemsConstraint applies another constraint to each
  833. item in a collection, succeeding if any of them succeeds.
  834. </summary>
  835. </member>
  836. <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  837. <summary>
  838. Construct a SomeItemsConstraint on top of an existing constraint
  839. </summary>
  840. <param name="itemConstraint"></param>
  841. </member>
  842. <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.Matches(System.Object)">
  843. <summary>
  844. Apply the item constraint to each item in the collection,
  845. failing if any item fails.
  846. </summary>
  847. <param name="actual"></param>
  848. <returns></returns>
  849. </member>
  850. <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  851. <summary>
  852. Write a description of this constraint to a MessageWriter
  853. </summary>
  854. <param name="writer"></param>
  855. </member>
  856. <member name="T:NUnit.Framework.Constraints.NoItemConstraint">
  857. <summary>
  858. SomeItemsConstraint applies another constraint to each
  859. item in a collection, succeeding if any of them succeeds.
  860. </summary>
  861. </member>
  862. <member name="M:NUnit.Framework.Constraints.NoItemConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  863. <summary>
  864. Construct a SomeItemsConstraint on top of an existing constraint
  865. </summary>
  866. <param name="itemConstraint"></param>
  867. </member>
  868. <member name="M:NUnit.Framework.Constraints.NoItemConstraint.Matches(System.Object)">
  869. <summary>
  870. Apply the item constraint to each item in the collection,
  871. failing if any item fails.
  872. </summary>
  873. <param name="actual"></param>
  874. <returns></returns>
  875. </member>
  876. <member name="M:NUnit.Framework.Constraints.NoItemConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  877. <summary>
  878. Write a description of this constraint to a MessageWriter
  879. </summary>
  880. <param name="writer"></param>
  881. </member>
  882. <member name="T:NUnit.Framework.Constraints.SameAsConstraint">
  883. <summary>
  884. SameAsConstraint tests whether an object is identical to
  885. the object passed to its constructor
  886. </summary>
  887. </member>
  888. <member name="M:NUnit.Framework.Constraints.SameAsConstraint.#ctor(System.Object)">
  889. <summary>
  890. Initializes a new instance of the <see cref="T:SameAsConstraint"/> class.
  891. </summary>
  892. <param name="expected">The expected object.</param>
  893. </member>
  894. <member name="M:NUnit.Framework.Constraints.SameAsConstraint.Matches(System.Object)">
  895. <summary>
  896. Test whether the constraint is satisfied by a given value
  897. </summary>
  898. <param name="actual">The value to be tested</param>
  899. <returns>True for success, false for failure</returns>
  900. </member>
  901. <member name="M:NUnit.Framework.Constraints.SameAsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  902. <summary>
  903. Write the constraint description to a MessageWriter
  904. </summary>
  905. <param name="writer">The writer on which the description is displayed</param>
  906. </member>
  907. <member name="T:NUnit.Framework.Constraints.TypeConstraint">
  908. <summary>
  909. TypeConstraint is the abstract base for constraints
  910. that take a Type as their expected value.
  911. </summary>
  912. </member>
  913. <member name="F:NUnit.Framework.Constraints.TypeConstraint.expectedType">
  914. <summary>
  915. The expected Type used by the constraint
  916. </summary>
  917. </member>
  918. <member name="M:NUnit.Framework.Constraints.TypeConstraint.#ctor(System.Type)">
  919. <summary>
  920. Construct a TypeConstraint for a given Type
  921. </summary>
  922. <param name="type"></param>
  923. </member>
  924. <member name="M:NUnit.Framework.Constraints.TypeConstraint.WriteActualValueTo(NUnit.Framework.MessageWriter)">
  925. <summary>
  926. Write the actual value for a failing constraint test to a
  927. MessageWriter. TypeCOnstraints override this method to write
  928. the name of the type.
  929. </summary>
  930. <param name="writer">The writer on which the actual value is displayed</param>
  931. </member>
  932. <member name="T:NUnit.Framework.Constraints.ExactTypeConstraint">
  933. <summary>
  934. ExactTypeConstraint is used to test that an object
  935. is of the exact type provided in the constructor
  936. </summary>
  937. </member>
  938. <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.#ctor(System.Type)">
  939. <summary>
  940. Construct an ExactTypeConstraint for a given Type
  941. </summary>
  942. <param name="type"></param>
  943. </member>
  944. <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.Matches(System.Object)">
  945. <summary>
  946. Test that an object is of the exact type specified
  947. </summary>
  948. <param name="actual"></param>
  949. <returns></returns>
  950. </member>
  951. <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  952. <summary>
  953. Write the description of this constraint to a MessageWriter
  954. </summary>
  955. <param name="writer"></param>
  956. </member>
  957. <member name="T:NUnit.Framework.Constraints.InstanceOfTypeConstraint">
  958. <summary>
  959. InstanceOfTypeConstraint is used to test that an object
  960. is of the same type provided or derived from it.
  961. </summary>
  962. </member>
  963. <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.#ctor(System.Type)">
  964. <summary>
  965. Construct an InstanceOfTypeConstraint for the type provided
  966. </summary>
  967. <param name="type"></param>
  968. </member>
  969. <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.Matches(System.Object)">
  970. <summary>
  971. Test whether an object is of the specified type or a derived type
  972. </summary>
  973. <param name="actual"></param>
  974. <returns></returns>
  975. </member>
  976. <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  977. <summary>
  978. Write a description of this constraint to a MessageWriter
  979. </summary>
  980. <param name="writer"></param>
  981. </member>
  982. <member name="T:NUnit.Framework.Constraints.AssignableFromConstraint">
  983. <summary>
  984. AssignableFromConstraint is used to test that an object
  985. can be assigned from a given Type.
  986. </summary>
  987. </member>
  988. <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.#ctor(System.Type)">
  989. <summary>
  990. Construct an AssignableFromConstraint for the type provided
  991. </summary>
  992. <param name="type"></param>
  993. </member>
  994. <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.Matches(System.Object)">
  995. <summary>
  996. Test whether an object can be assigned from the specified type
  997. </summary>
  998. <param name="actual"></param>
  999. <returns></returns>
  1000. </member>
  1001. <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  1002. <summary>
  1003. Write a description of this constraint to a MessageWriter
  1004. </summary>
  1005. <param name="writer"></param>
  1006. </member>
  1007. <member name="T:NUnit.Framework.Constraints.ComparisonConstraint">
  1008. <summary>
  1009. Abstract base class for constraints that compare values to
  1010. determine if one is greater than, equal to or less than
  1011. the other.
  1012. </summary>
  1013. </member>
  1014. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.expected">
  1015. <summary>
  1016. The value against which a comparison is to be made
  1017. </summary>
  1018. </member>
  1019. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.ltOK">
  1020. <summary>
  1021. If true, less than returns success
  1022. </summary>
  1023. </member>
  1024. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.eqOK">
  1025. <summary>
  1026. if true, equal returns success
  1027. </summary>
  1028. </member>
  1029. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.gtOK">
  1030. <summary>
  1031. if true, greater than returns success
  1032. </summary>
  1033. </member>
  1034. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.predicate">
  1035. <summary>
  1036. The predicate used as a part of the description
  1037. </summary>
  1038. </member>
  1039. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.IComparable,System.Boolean,System.Boolean,System.Boolean,System.String)">
  1040. <summary>
  1041. Initializes a new instance of the <see cref="T:ComparisonConstraint"/> class.
  1042. </summary>
  1043. <param name="value">The value against which to make a comparison.</param>
  1044. <param name="ltOK">if set to <c>true</c> less succeeds.</param>
  1045. <param name="eqOK">if set to <c>true</c> equal succeeds.</param>
  1046. <param name="gtOK">if set to <c>true</c> greater succeeds.</param>
  1047. <param name="predicate">String used in describing the constraint.</param>
  1048. </member>
  1049. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Matches(System.Object)">
  1050. <summary>
  1051. Test whether the constraint is satisfied by a given value
  1052. </summary>
  1053. <param name="actual">The value to be tested</param>
  1054. <returns>True for success, false for failure</returns>
  1055. </member>
  1056. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  1057. <summary>
  1058. Write the constraint description to a MessageWriter
  1059. </summary>
  1060. <param name="writer">The writer on which the description is displayed</param>
  1061. </member>
  1062. <member name="T:NUnit.Framework.Constraints.GreaterThanConstraint">
  1063. <summary>
  1064. Tests whether a value is greater than the value supplied to its constructor
  1065. </summary>
  1066. </member>
  1067. <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.#ctor(System.IComparable)">
  1068. <summary>
  1069. Initializes a new instance of the <see cref="T:GreaterThanConstraint"/> class.
  1070. </summary>
  1071. <param name="expected">The expected value.</param>
  1072. </member>
  1073. <member name="T:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint">
  1074. <summary>
  1075. Tests whether a value is greater than or equal to the value supplied to its constructor
  1076. </summary>
  1077. </member>
  1078. <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.#ctor(System.IComparable)">
  1079. <summary>
  1080. Initializes a new instance of the <see cref="T:GreaterThanOrEqualConstraint"/> class.
  1081. </summary>
  1082. <param name="expected">The expected value.</param>
  1083. </member>
  1084. <member name="T:NUnit.Framework.Constraints.LessThanConstraint">
  1085. <summary>
  1086. Tests whether a value is less than the value supplied to its constructor
  1087. </summary>
  1088. </member>
  1089. <member name="M:NUnit.Framework.Constraints.LessThanConstraint.#ctor(System.IComparable)">
  1090. <summary>
  1091. Initializes a new instance of the <see cref="T:LessThanConstraint"/> class.
  1092. </summary>
  1093. <param name="expected">The expected value.</param>
  1094. </member>
  1095. <member name="T:NUnit.Framework.Constraints.LessThanOrEqualConstraint">
  1096. <summary>
  1097. Tests whether a value is less than or equal to the value supplied to its constructor
  1098. </summary>
  1099. </member>
  1100. <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.#ctor(System.IComparable)">
  1101. <summary>
  1102. Initializes a new instance of the <see cref="T:LessThanOrEqualConstraint"/> class.
  1103. </summary>
  1104. <param name="expected">The expected value.</param>
  1105. </member>
  1106. <member name="T:NUnit.Framework.Constraints.Numerics">
  1107. <summary>
  1108. The Numerics class contains common operations on numeric values.
  1109. </summary>
  1110. </member>
  1111. <member name="M:NUnit.Framework.Constraints.Numerics.IsNumericType(System.Object)">
  1112. <summary>
  1113. Checks the type of the object, returning true if
  1114. the object is a numeric type.
  1115. </summary>
  1116. <param name="obj">The object to check</param>
  1117. <returns>true if the object is a numeric type</returns>
  1118. </member>
  1119. <member name="M:NUnit.Framework.Constraints.Numerics.IsFloatingPointNumeric(System.Object)">
  1120. <summary>
  1121. Checks the type of the object, returning true if
  1122. the object is a floating point numeric type.
  1123. </summary>
  1124. <param name="obj">The object to check</param>
  1125. <returns>true if the object is a floating point numeric type</returns>
  1126. </member>
  1127. <member name="M:NUnit.Framework.Constraints.Numerics.IsFixedPointNumeric(System.Object)">
  1128. <summary>
  1129. Checks the type of the object, returning true if
  1130. the object is a fixed point numeric type.
  1131. </summary>
  1132. <param name="obj">The object to check</param>
  1133. <returns>true if the object is a fixed point numeric type</returns>
  1134. </member>
  1135. <member name="M:NUnit.Framework.Constraints.Numerics.AreEqual(System.Object,System.Object,System.Object@)">
  1136. <summary>
  1137. Test two numeric values for equality, performing the usual numeric
  1138. conversions and using a provided or default tolerance. If the value
  1139. referred to by tolerance is null, this method may set it to a default.
  1140. </summary>
  1141. <param name="expected">The expected value</param>
  1142. <param name="actual">The actual value</param>
  1143. <param name="tolerance">A reference to the numeric tolerance in effect</param>
  1144. <returns>True if the values are equal</returns>
  1145. </member>
  1146. <member name="M:NUnit.Framework.Constraints.Numerics.Compare(System.IComparable,System.Object)">
  1147. <summary>
  1148. Compare two numeric values, performing the usual numeric conversions.
  1149. </summary>
  1150. <param name="expected">The expected value</param>
  1151. <param name="actual">The actual value</param>
  1152. <returns></returns>
  1153. </member>
  1154. <member name="T:NUnit.Framework.Constraints.ContainsConstraint">
  1155. <summary>
  1156. ContainsConstraint tests a whether a string contains a substring
  1157. or a collection contains an object. It postpones the decision of
  1158. which test to use until the type of the actual argument is known.
  1159. This allows testing whether a string is contained in a collection
  1160. or as a substring of another string using the same syntax.
  1161. </summary>
  1162. </member>
  1163. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.#ctor(System.Object)">
  1164. <summary>
  1165. Initializes a new instance of the <see cref="T:ContainsConstraint"/> class.
  1166. </summary>
  1167. <param name="expected">The expected.</param>
  1168. </member>
  1169. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Matches(System.Object)">
  1170. <summary>
  1171. Test whether the constraint is satisfied by a given value
  1172. </summary>
  1173. <param name="actual">The value to be tested</param>
  1174. <returns>True for success, false for failure</returns>
  1175. </member>
  1176. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  1177. <summary>
  1178. Write the constraint description to a MessageWriter
  1179. </summary>
  1180. <param name="writer">The writer on which the description is displayed</param>
  1181. </member>
  1182. <member name="T:NUnit.Framework.Constraints.PropertyConstraint">
  1183. <summary>
  1184. Summary description for PropertyConstraint.
  1185. </summary>
  1186. </member>
  1187. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.#ctor(System.String,NUnit.Framework.Constraints.Constraint)">
  1188. <summary>
  1189. Initializes a new instance of the <see cref="T:PropertyConstraint"/> class.
  1190. </summary>
  1191. <param name="name">The name.</param>
  1192. <param name="baseConstraint">The constraint to apply to the property.</param>
  1193. </member>
  1194. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.Matches(System.Object)">
  1195. <summary>
  1196. Test whether the constraint is satisfied by a given value
  1197. </summary>
  1198. <param name="actual">The value to be tested</param>
  1199. <returns>True for success, false for failure</returns>
  1200. </member>
  1201. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  1202. <summary>
  1203. Write the constraint description to a MessageWriter
  1204. </summary>
  1205. <param name="writer">The writer on which the description is displayed</param>
  1206. </member>
  1207. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteActualValueTo(NUnit.Framework.MessageWriter)">
  1208. <summary>
  1209. Write the actual value for a failing constraint test to a
  1210. MessageWriter. The default implementation simply writes
  1211. the raw value of actual, leaving it to the writer to
  1212. perform any formatting.
  1213. </summary>
  1214. <param name="writer">The writer on which the actual value is displayed</param>
  1215. </member>
  1216. <member name="T:NUnit.Framework.Constraints.BinaryOperation">
  1217. <summary>
  1218. BinaryOperation is the abstract base of all constraints
  1219. that combine two other constraints in some fashion.
  1220. </summary>
  1221. </member>
  1222. <member name="F:NUnit.Framework.Constraints.BinaryOperation.left">
  1223. <summary>
  1224. The first constraint being combined
  1225. </summary>
  1226. </member>
  1227. <member name="F:NUnit.Framework.Constraints.BinaryOperation.right">
  1228. <summary>
  1229. The second constraint being combined
  1230. </summary>
  1231. </member>
  1232. <member name="M:NUnit.Framework.Constraints.BinaryOperation.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  1233. <summary>
  1234. Construct a BinaryOperation from two other constraints
  1235. </summary>
  1236. <param name="left">The first constraint</param>
  1237. <param name="right">The second constraint</param>
  1238. </member>
  1239. <member name="T:NUnit.Framework.Constraints.AndConstraint">
  1240. <summary>
  1241. AndConstraint succeeds only if both members succeed.
  1242. </summary>
  1243. </member>
  1244. <member name="M:NUnit.Framework.Constraints.AndConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  1245. <summary>
  1246. Create an AndConstraint from two other constraints
  1247. </summary>
  1248. <param name="left">The first constraint</param>
  1249. <param name="right">The second constraint</param>
  1250. </member>
  1251. <member name="M:NUnit.Framework.Constraints.AndConstraint.Matches(System.Object)">
  1252. <summary>
  1253. Apply both member constraints to an actual value, succeeding
  1254. succeeding only if both of them succeed.
  1255. </summary>
  1256. <param name="actual">The actual value</param>
  1257. <returns>True if the constraints both succeeded</returns>
  1258. </member>
  1259. <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  1260. <summary>
  1261. Write a description for this contraint to a MessageWriter
  1262. </summary>
  1263. <param name="writer">The MessageWriter to receive the description</param>
  1264. </member>
  1265. <member name="T:NUnit.Framework.Constraints.OrConstraint">
  1266. <summary>
  1267. OrConstraint succeeds if either member succeeds
  1268. </summary>
  1269. </member>
  1270. <member name="M:NUnit.Framework.Constraints.OrConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  1271. <summary>
  1272. Create an OrConstraint from two other constraints
  1273. </summary>
  1274. <param name="left">The first constraint</param>
  1275. <param name="right">The second constraint</param>
  1276. </member>
  1277. <member name="M:NUnit.Framework.Constraints.OrConstraint.Matches(System.Object)">
  1278. <summary>
  1279. Apply the member constraints to an actual value, succeeding
  1280. succeeding as soon as one of them succeeds.
  1281. </summary>
  1282. <param name="actual">The actual value</param>
  1283. <returns>True if either constraint succeeded</returns>
  1284. </member>
  1285. <member name="M:NUnit.Framework.Constraints.OrConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
  1286. <summary>
  1287. Write a description for this contraint to a MessageWriter
  1288. </summary>
  1289. <param name="writer">The MessageWriter to receive the description</param>
  1290. </member>
  1291. <member name="T:NUnit.Framework.SyntaxHelpers.Is">
  1292. <summary>
  1293. The Is class is a helper class with properties and methods
  1294. that supply a number of constraints used in Asserts.
  1295. </summary>
  1296. </member>
  1297. <member name="F:NUnit.Framework.SyntaxHelpers.Is.Null">
  1298. <summary>
  1299. Is.Null returns a static constraint that tests for null
  1300. </summary>
  1301. </member>
  1302. <member name="F:NUnit.Framework.SyntaxHelpers.Is.True">
  1303. <summary>
  1304. Is.True returns a static constraint that tests whether a value is true
  1305. </summary>
  1306. </member>
  1307. <member name="F:NUnit.Framework.SyntaxHelpers.Is.False">
  1308. <summary>
  1309. Is.False returns a static constraint that tests whether a value is false
  1310. </summary>
  1311. </member>
  1312. <member name="F:NUnit.Framework.SyntaxHelpers.Is.NaN">
  1313. <summary>
  1314. Is.NaN returns a static constraint that tests whether a value is an NaN
  1315. </summary>
  1316. </member>
  1317. <member name="F:NUnit.Framework.SyntaxHelpers.Is.Empty">
  1318. <summary>
  1319. Is.Empty returns a static constraint that tests whether a string or collection is empty
  1320. </summary>
  1321. </member>
  1322. <member name="F:NUnit.Framework.SyntaxHelpers.Is.Unique">
  1323. <summary>
  1324. Is.Unique returns a static constraint that tests whether a collection contains all unque items.
  1325. </summary>
  1326. </member>
  1327. <member name="M:NUnit.Framework.SyntaxHelpers.Is.EqualTo(System.Object)">
  1328. <summary>
  1329. Is.EqualTo returns a constraint that tests whether the
  1330. actual value equals the supplied argument
  1331. </summary>
  1332. <param name="expected"></param>
  1333. <returns></returns>
  1334. </member>
  1335. <member name="M:NUnit.Framework.SyntaxHelpers.Is.SameAs(System.Object)">
  1336. <summary>
  1337. Is.SameAs returns a constraint that tests whether the
  1338. actual value is the same object as the supplied argument.
  1339. </summary>
  1340. <param name="expected"></param>
  1341. <returns></returns>
  1342. </member>
  1343. <member name="M:NUnit.Framework.SyntaxHelpers.Is.GreaterThan(System.IComparable)">
  1344. <summary>
  1345. Is.GreaterThan returns a constraint that tests whether the
  1346. actual value is greater than the suppled argument
  1347. </summary>
  1348. </member>
  1349. <member name="M:NUnit.Framework.SyntaxHelpers.Is.GreaterThanOrEqualTo(System.IComparable)">
  1350. <summary>
  1351. Is.GreaterThanOrEqualTo returns a constraint that tests whether the
  1352. actual value is greater than or equal to the suppled argument
  1353. </summary>
  1354. </member>
  1355. <member name="M:NUnit.Framework.SyntaxHelpers.Is.AtLeast(System.IComparable)">
  1356. <summary>
  1357. Is.AtLeast is a synonym for Is.GreaterThanOrEqualTo
  1358. </summary>
  1359. </member>
  1360. <member name="M:NUnit.Framework.SyntaxHelpers.Is.LessThan(System.IComparable)">
  1361. <summary>
  1362. Is.LessThan returns a constraint that tests whether the
  1363. actual value is less than the suppled argument
  1364. </summary>
  1365. </member>
  1366. <member name="M:NUnit.Framework.SyntaxHelpers.Is.LessThanOrEqualTo(System.IComparable)">
  1367. <summary>
  1368. Is.LessThanOrEqualTo returns a constraint that tests whether the
  1369. actual value is less than or equal to the suppled argument
  1370. </summary>
  1371. </member>
  1372. <member name="M:NUnit.Framework.SyntaxHelpers.Is.AtMost(System.IComparable)">
  1373. <summary>
  1374. Is.AtMost is a synonym for Is.LessThanOrEqualTo
  1375. </summary>
  1376. </member>
  1377. <member name="M:NUnit.Framework.SyntaxHelpers.Is.TypeOf(System.Type)">
  1378. <summary>
  1379. Is.TypeOf returns a constraint that tests whether the actual
  1380. value is of the exact type supplied as an argument.
  1381. </summary>
  1382. </member>
  1383. <member name="M:NUnit.Framework.SyntaxHelpers.Is.InstanceOfType(System.Type)">
  1384. <summary>
  1385. Is.InstanceOfType returns a constraint that tests whether
  1386. the actual value is of the type supplied as an argument
  1387. or a derived type.
  1388. </summary>
  1389. </member>
  1390. <member name="M:NUnit.Framework.SyntaxHelpers.Is.AssignableFrom(System.Type)">
  1391. <summary>
  1392. Is.AssignableFrom returns a constraint that tests whether
  1393. the actual value is assignable from the type supplied as
  1394. an argument.
  1395. </summary>
  1396. <param name="expectedType"></param>
  1397. <returns></returns>
  1398. </member>
  1399. <member name="M:NUnit.Framework.SyntaxHelpers.Is.EquivalentTo(System.Collections.ICollection)">
  1400. <summary>
  1401. Is.EquivalentTo returns a constraint that tests whether
  1402. the actual value is a collection containing the same
  1403. elements as the collection supplied as an arument
  1404. </summary>
  1405. </member>
  1406. <member name="M:NUnit.Framework.SyntaxHelpers.Is.SubsetOf(System.Collections.ICollection)">
  1407. <summary>
  1408. Is.SubsetOf returns a constraint that tests whether
  1409. the actual value is a subset of the collection
  1410. supplied as an arument
  1411. </summary>
  1412. </member>
  1413. <member name="P:NUnit.Framework.SyntaxHelpers.Is.Not">
  1414. <summary>
  1415. Is.Not returns a ConstraintBuilder that negates
  1416. the constraint that follows it.
  1417. </summary>
  1418. </member>
  1419. <member name="P:NUnit.Framework.SyntaxHelpers.Is.All">
  1420. <summary>
  1421. Is.All returns a ConstraintBuilder, which will apply
  1422. the following constraint to all members of a collection,
  1423. succeeding if all of them succeed. This property is
  1424. a synonym for Has.AllItems.
  1425. </summary>
  1426. </member>
  1427. <member name="T:NUnit.Framework.SyntaxHelpers.Iz">
  1428. <summary>
  1429. The Iz class is a synonym for Is intended for use in VB,
  1430. which regards Is as a keyword.
  1431. </summary>
  1432. </member>
  1433. <member name="T:NUnit.Framework.SyntaxHelpers.Text">
  1434. <summary>
  1435. The Text class is a helper class with properties and methods
  1436. that supply a number of constraints used with strings.
  1437. </summary>
  1438. </member>
  1439. <member name="M:NUnit.Framework.SyntaxHelpers.Text.Contains(System.String)">
  1440. <summary>
  1441. Contains returns a constraint that succeeds if the actual
  1442. value contains the substring supplied as an argument.
  1443. </summary>
  1444. </member>
  1445. <member name="M:NUnit.Framework.SyntaxHelpers.Text.DoesNotContain(System.String)">
  1446. <summary>
  1447. DoesNotContain returns a constraint that fails if the actual
  1448. value contains the substring supplied as an argument.
  1449. </summary>
  1450. </member>
  1451. <member name="M:NUnit.Framework.SyntaxHelpers.Text.StartsWith(System.String)">
  1452. <summary>
  1453. StartsWith returns a constraint that succeeds if the actual
  1454. value starts with the substring supplied as an argument.
  1455. </summary>
  1456. </member>
  1457. <member name="M:NUnit.Framework.SyntaxHelpers.Text.DoesNotStartWith(System.String)">
  1458. <summary>
  1459. DoesNotStartWith returns a constraint that fails if the actual
  1460. value starts with the substring supplied as an argument.
  1461. </summary>
  1462. </member>
  1463. <member name="M:NUnit.Framework.SyntaxHelpers.Text.EndsWith(System.String)">
  1464. <summary>
  1465. EndsWith returns a constraint that succeeds if the actual
  1466. value ends with the substring supplied as an argument.
  1467. </summary>
  1468. </member>
  1469. <member name="M:NUnit.Framework.SyntaxHelpers.Text.DoesNotEndWith(System.String)">
  1470. <summary>
  1471. DoesNotEndWith returns a constraint that fails if the actual
  1472. value ends with the substring supplied as an argument.
  1473. </summary>
  1474. </member>
  1475. <member name="M:NUnit.Framework.SyntaxHelpers.Text.Matches(System.String)">
  1476. <summary>
  1477. Matches returns a constraint that succeeds if the actual
  1478. value matches the pattern supplied as an argument.
  1479. </summary>
  1480. <param name="pattern"></param>
  1481. <returns></returns>
  1482. </member>
  1483. <member name="M:NUnit.Framework.SyntaxHelpers.Text.DoesNotMatch(System.String)">
  1484. <summary>
  1485. DoesNotMatch returns a constraint that failss if the actual
  1486. value matches the pattern supplied as an argument.
  1487. </summary>
  1488. <param name="pattern"></param>
  1489. <returns></returns>
  1490. </member>
  1491. <member name="P:NUnit.Framework.SyntaxHelpers.Text.All">
  1492. <summary>
  1493. Text.All returns a ConstraintBuilder, which will apply
  1494. the following constraint to all members of a collection,
  1495. succeeding if all of them succeed.
  1496. </summary>
  1497. </member>
  1498. <member name="T:NUnit.Framework.SyntaxHelpers.List">
  1499. <summary>
  1500. The List class is a helper class with properties and methods
  1501. that supply a number of constraints used with lists and collections.
  1502. </summary>
  1503. </member>
  1504. <member name="M:NUnit.Framework.SyntaxHelpers.List.Map(System.Collections.ICollection)">
  1505. <summary>
  1506. List.Map returns a ListMapper, which can be used to map
  1507. the original collection to another collection.
  1508. </summary>
  1509. <param name="actual"></param>
  1510. <returns></returns>
  1511. </member>
  1512. <member name="T:NUnit.Framework.SyntaxHelpers.ListMapper">
  1513. <summary>
  1514. ListMapper is used to transform a collection used as an actual argument
  1515. producing another collection to be used in the assertion.
  1516. </summary>
  1517. </member>
  1518. <member name="M:NUnit.Framework.SyntaxHelpers.ListMapper.#ctor(System.Collections.ICollection)">
  1519. <summary>
  1520. Construct a ListMapper based on a collection
  1521. </summary>
  1522. <param name="original">The collection to be transformed</param>
  1523. </member>
  1524. <member name="M:NUnit.Framework.SyntaxHelpers.ListMapper.Property(System.String)">
  1525. <summary>
  1526. Produces a collection containing all the values of a property
  1527. </summary>
  1528. <param name="name">The collection of property values</param>
  1529. <returns></returns>
  1530. </member>
  1531. <member name="T:NUnit.Framework.SyntaxHelpers.Has">
  1532. <summary>
  1533. Summary description for HasNoPrefixB.
  1534. </summary>
  1535. </member>
  1536. <member name="M:NUnit.Framework.SyntaxHelpers.Has.Property(System.String)">
  1537. <summary>
  1538. Returns a new ConstraintBuilder, which will apply the
  1539. following constraint to a named property of the object
  1540. being tested.
  1541. </summary>
  1542. <param name="name">The name of the property</param>
  1543. </member>
  1544. <member name="M:NUnit.Framework.SyntaxHelpers.Has.Property(System.String,System.Object)">
  1545. <summary>
  1546. Returns a new PropertyConstraint checking for the
  1547. existence of a particular property value.
  1548. </summary>
  1549. <param name="name">The name of the property to look for</param>
  1550. <param name="expected">The expected value of the property</param>
  1551. </member>
  1552. <member name="M:NUnit.Framework.SyntaxHelpers.Has.Length(System.Int32)">
  1553. <summary>
  1554. Returns a new PropertyConstraint for the Length property
  1555. </summary>
  1556. <param name="length"></param>
  1557. <returns></returns>
  1558. </member>
  1559. <member name="M:NUnit.Framework.SyntaxHelpers.Has.Count(System.Int32)">
  1560. <summary>
  1561. Returns a new PropertyConstraint or the Count property
  1562. </summary>
  1563. <param name="count"></param>
  1564. <returns></returns>
  1565. </member>
  1566. <member name="M:NUnit.Framework.SyntaxHelpers.Has.Member(System.Object)">
  1567. <summary>
  1568. Returns a new CollectionContainsConstraint checking for the
  1569. presence of a particular object in the collection.
  1570. </summary>
  1571. <param name="expected">The expected object</param>
  1572. </member>
  1573. <member name="P:NUnit.Framework.SyntaxHelpers.Has.No">
  1574. <summary>
  1575. Has.No returns a ConstraintBuilder that negates
  1576. the constraint that follows it.
  1577. </summary>
  1578. </member>
  1579. <member name="P:NUnit.Framework.SyntaxHelpers.Has.All">
  1580. <summary>
  1581. Has.AllItems returns a ConstraintBuilder, which will apply
  1582. the following constraint to all members of a collection,
  1583. succeeding if all of them succeed.
  1584. </summary>
  1585. </member>
  1586. <member name="P:NUnit.Framework.SyntaxHelpers.Has.Some">
  1587. <summary>
  1588. Has.Some returns a ConstraintBuilder, which will apply
  1589. the following constraint to all members of a collection,
  1590. succeeding if any of them succeed. It is a synonym
  1591. for Has.Item.
  1592. </summary>
  1593. </member>
  1594. <member name="P:NUnit.Framework.SyntaxHelpers.Has.None">
  1595. <summary>
  1596. Has.None returns a ConstraintBuilder, which will apply
  1597. the following constraint to all members of a collection,
  1598. succeeding only if none of them succeed.
  1599. </summary>
  1600. </member>
  1601. <member name="T:NUnit.Framework.SyntaxHelpers.Has.HasNoPrefixBuilder">
  1602. <summary>
  1603. Nested class that allows us to restrict the number
  1604. of key words that may appear after Has.No.
  1605. </summary>
  1606. </member>
  1607. <member name="M:NUnit.Framework.SyntaxHelpers.Has.HasNoPrefixBuilder.Property(System.String)">
  1608. <summary>
  1609. Return a ConstraintBuilder conditioned to apply
  1610. the following constraint to a property.
  1611. </summary>
  1612. <param name="name">The property name</param>
  1613. <returns>A ConstraintBuilder</returns>
  1614. </member>
  1615. <member name="M:NUnit.Framework.SyntaxHelpers.Has.HasNoPrefixBuilder.Member(System.Object)">
  1616. <summary>
  1617. Return a Constraint that succeeds if the expected object is
  1618. not contained in a collection.
  1619. </summary>
  1620. <param name="expected">The expected object</param>
  1621. <returns>A Constraint</returns>
  1622. </member>
  1623. <member name="T:NUnit.Framework.Assert">
  1624. <summary>
  1625. The Assert class contains a collection of static methods that
  1626. implement the most common assertions used in NUnit.
  1627. </summary>
  1628. </member>
  1629. <member name="M:NUnit.Framework.Assert.#ctor">
  1630. <summary>
  1631. We don't actually want any instances of this object, but some people
  1632. like to inherit from it to add other static methods. Hence, the
  1633. protected constructor disallows any instances of this object.
  1634. </summary>
  1635. </member>
  1636. <member name="M:NUnit.Framework.Assert.Equals(System.Object,System.Object)">
  1637. <summary>
  1638. The Equals method throws an AssertionException. This is done
  1639. to make sure there is no mistake by calling this function.
  1640. </summary>
  1641. <param name="a"></param>
  1642. <param name="b"></param>
  1643. </member>
  1644. <member name="M:NUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
  1645. <summary>
  1646. override the default ReferenceEquals to throw an AssertionException. This
  1647. implementation makes sure there is no mistake in calling this function
  1648. as part of Assert.
  1649. </summary>
  1650. <param name="a"></param>
  1651. <param name="b"></param>
  1652. </member>
  1653. <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
  1654. <summary>
  1655. Asserts that a condition is true. If the condition is false the method throws
  1656. an <see cref="T:NUnit.Framework.AssertionException"/>.
  1657. </summary>
  1658. <param name="condition">The evaluated condition</param>
  1659. <param name="message">The message to display if the condition is false</param>
  1660. <param name="args">Arguments to be used in formatting the message</param>
  1661. </member>
  1662. <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
  1663. <summary>
  1664. Asserts that a condition is true. If the condition is false the method throws
  1665. an <see cref="T:NUnit.Framework.AssertionException"/>.
  1666. </summary>
  1667. <param name="condition">The evaluated condition</param>
  1668. <param name="message">The message to display if the condition is false</param>
  1669. </member>
  1670. <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean)">
  1671. <summary>
  1672. Asserts that a condition is true. If the condition is false the method throws
  1673. an <see cref="T:NUnit.Framework.AssertionException"/>.
  1674. </summary>
  1675. <param name="condition">The evaluated condition</param>
  1676. </member>
  1677. <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
  1678. <summary>
  1679. Asserts that a condition is false. If the condition is true the method throws
  1680. an <see cref="T:NUnit.Framework.AssertionException"/>.
  1681. </summary>
  1682. <param name="condition">The evaluated condition</param>
  1683. <param name="message">The message to display if the condition is true</param>
  1684. <param name="args">Arguments to be used in formatting the message</param>
  1685. </member>
  1686. <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
  1687. <summary>
  1688. Asserts that a condition is false. If the condition is true the method throws
  1689. an <see cref="T:NUnit.Framework.AssertionException"/>.
  1690. </summary>
  1691. <param name="condition">The evaluated condition</param>
  1692. <param name="message">The message to display if the condition is true</param>
  1693. </member>
  1694. <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean)">
  1695. <summary>
  1696. Asserts that a condition is false. If the condition is true the method throws
  1697. an <see cref="T:NUnit.Framework.AssertionException"/>.
  1698. </summary>
  1699. <param name="condition">The evaluated condition</param>
  1700. </member>
  1701. <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
  1702. <summary>
  1703. Verifies that the object that is passed in is not equal to <code>null</code>
  1704. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1705. is thrown.
  1706. </summary>
  1707. <param name="anObject">The object that is to be tested</param>
  1708. <param name="message">The message to be displayed when the object is null</param>
  1709. <param name="args">Arguments to be used in formatting the message</param>
  1710. </member>
  1711. <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
  1712. <summary>
  1713. Verifies that the object that is passed in is not equal to <code>null</code>
  1714. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1715. is thrown.
  1716. </summary>
  1717. <param name="anObject">The object that is to be tested</param>
  1718. <param name="message">The message to be displayed when the object is null</param>
  1719. </member>
  1720. <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object)">
  1721. <summary>
  1722. Verifies that the object that is passed in is not equal to <code>null</code>
  1723. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1724. is thrown.
  1725. </summary>
  1726. <param name="anObject">The object that is to be tested</param>
  1727. </member>
  1728. <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
  1729. <summary>
  1730. Verifies that the object that is passed in is equal to <code>null</code>
  1731. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1732. is thrown.
  1733. </summary>
  1734. <param name="anObject">The object that is to be tested</param>
  1735. <param name="message">The message to be displayed when the object is not null</param>
  1736. <param name="args">Arguments to be used in formatting the message</param>
  1737. </member>
  1738. <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String)">
  1739. <summary>
  1740. Verifies that the object that is passed in is equal to <code>null</code>
  1741. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1742. is thrown.
  1743. </summary>
  1744. <param name="anObject">The object that is to be tested</param>
  1745. <param name="message">The message to be displayed when the object is not null</param>
  1746. </member>
  1747. <member name="M:NUnit.Framework.Assert.IsNull(System.Object)">
  1748. <summary>
  1749. Verifies that the object that is passed in is equal to <code>null</code>
  1750. If the object is not null <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1751. is thrown.
  1752. </summary>
  1753. <param name="anObject">The object that is to be tested</param>
  1754. </member>
  1755. <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
  1756. <summary>
  1757. Verifies that the double is passed is an <code>NaN</code> value.
  1758. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1759. is thrown.
  1760. </summary>
  1761. <param name="aDouble">The value that is to be tested</param>
  1762. <param name="message">The message to be displayed when the object is not null</param>
  1763. <param name="args">Arguments to be used in formatting the message</param>
  1764. </member>
  1765. <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String)">
  1766. <summary>
  1767. Verifies that the double is passed is an <code>NaN</code> value.
  1768. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1769. is thrown.
  1770. </summary>
  1771. <param name="aDouble">The object that is to be tested</param>
  1772. <param name="message">The message to be displayed when the object is not null</param>
  1773. </member>
  1774. <member name="M:NUnit.Framework.Assert.IsNaN(System.Double)">
  1775. <summary>
  1776. Verifies that the double is passed is an <code>NaN</code> value.
  1777. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  1778. is thrown.
  1779. </summary>
  1780. <param name="aDouble">The object that is to be tested</param>
  1781. </member>
  1782. <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
  1783. <summary>
  1784. Assert that a string is empty - that is equal to string.Empty
  1785. </summary>
  1786. <param name="aString">The string to be tested</param>
  1787. <param name="message">The message to be displayed on failure</param>
  1788. <param name="args">Arguments to be used in formatting the message</param>
  1789. </member>
  1790. <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String)">
  1791. <summary>
  1792. Assert that a string is empty - that is equal to string.Emtpy
  1793. </summary>
  1794. <param name="aString">The string to be tested</param>
  1795. <param name="message">The message to be displayed on failure</param>
  1796. </member>
  1797. <member name="M:NUnit.Framework.Assert.IsEmpty(System.String)">
  1798. <summary>
  1799. Assert that a string is empty - that is equal to string.Emtpy
  1800. </summary>
  1801. <param name="aString">The string to be tested</param>
  1802. </member>
  1803. <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String,System.Object[])">
  1804. <summary>
  1805. Assert that an array, list or other collection is empty
  1806. </summary>
  1807. <param name="collection">An array, list or other collection implementing ICollection</param>
  1808. <param name="message">The message to be displayed on failure</param>
  1809. <param name="args">Arguments to be used in formatting the message</param>
  1810. </member>
  1811. <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String)">
  1812. <summary>
  1813. Assert that an array, list or other collection is empty
  1814. </summary>
  1815. <param name="collection">An array, list or other collection implementing ICollection</param>
  1816. <param name="message">The message to be displayed on failure</param>
  1817. </member>
  1818. <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection)">
  1819. <summary>
  1820. Assert that an array,list or other collection is empty
  1821. </summary>
  1822. <param name="collection">An array, list or other collection implementing ICollection</param>
  1823. </member>
  1824. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
  1825. <summary>
  1826. Assert that a string is not empty - that is not equal to string.Empty
  1827. </summary>
  1828. <param name="aString">The string to be tested</param>
  1829. <param name="message">The message to be displayed on failure</param>
  1830. <param name="args">Arguments to be used in formatting the message</param>
  1831. </member>
  1832. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
  1833. <summary>
  1834. Assert that a string is empty - that is equal to string.Emtpy
  1835. </summary>
  1836. <param name="aString">The string to be tested</param>
  1837. <param name="message">The message to be displayed on failure</param>
  1838. </member>
  1839. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String)">
  1840. <summary>
  1841. Assert that a string is empty - that is equal to string.Emtpy
  1842. </summary>
  1843. <param name="aString">The string to be tested</param>
  1844. </member>
  1845. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String,System.Object[])">
  1846. <summary>
  1847. Assert that an array, list or other collection is empty
  1848. </summary>
  1849. <param name="collection">An array, list or other collection implementing ICollection</param>
  1850. <param name="message">The message to be displayed on failure</param>
  1851. <param name="args">Arguments to be used in formatting the message</param>
  1852. </member>
  1853. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String)">
  1854. <summary>
  1855. Assert that an array, list or other collection is empty
  1856. </summary>
  1857. <param name="collection">An array, list or other collection implementing ICollection</param>
  1858. <param name="message">The message to be displayed on failure</param>
  1859. </member>
  1860. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection)">
  1861. <summary>
  1862. Assert that an array,list or other collection is empty
  1863. </summary>
  1864. <param name="collection">An array, list or other collection implementing ICollection</param>
  1865. </member>
  1866. <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
  1867. <summary>
  1868. Asserts that an object may be assigned a value of a given Type.
  1869. </summary>
  1870. <param name="expected">The expected Type.</param>
  1871. <param name="actual">The object under examination</param>
  1872. </member>
  1873. <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
  1874. <summary>
  1875. Asserts that an object may be assigned a value of a given Type.
  1876. </summary>
  1877. <param name="expected">The expected Type.</param>
  1878. <param name="actual">The object under examination</param>
  1879. <param name="message">The messge to display in case of failure</param>
  1880. </member>
  1881. <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
  1882. <summary>
  1883. Asserts that an object may be assigned a value of a given Type.
  1884. </summary>
  1885. <param name="expected">The expected Type.</param>
  1886. <param name="actual">The object under examination</param>
  1887. <param name="message">The message to display in case of failure</param>
  1888. <param name="args">Array of objects to be used in formatting the message</param>
  1889. </member>
  1890. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
  1891. <summary>
  1892. Asserts that an object may not be assigned a value of a given Type.
  1893. </summary>
  1894. <param name="expected">The expected Type.</param>
  1895. <param name="actual">The object under examination</param>
  1896. </member>
  1897. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
  1898. <summary>
  1899. Asserts that an object may not be assigned a value of a given Type.
  1900. </summary>
  1901. <param name="expected">The expected Type.</param>
  1902. <param name="actual">The object under examination</param>
  1903. <param name="message">The messge to display in case of failure</param>
  1904. </member>
  1905. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
  1906. <summary>
  1907. Asserts that an object may not be assigned a value of a given Type.
  1908. </summary>
  1909. <param name="expected">The expected Type.</param>
  1910. <param name="actual">The object under examination</param>
  1911. <param name="message">The message to display in case of failure</param>
  1912. <param name="args">Array of objects to be used in formatting the message</param>
  1913. </member>
  1914. <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
  1915. <summary>
  1916. Asserts that an object is an instance of a given type.
  1917. </summary>
  1918. <param name="expected">The expected Type</param>
  1919. <param name="actual">The object being examined</param>
  1920. </member>
  1921. <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
  1922. <summary>
  1923. Asserts that an object is an instance of a given type.
  1924. </summary>
  1925. <param name="expected">The expected Type</param>
  1926. <param name="actual">The object being examined</param>
  1927. <param name="message">A message to display in case of failure</param>
  1928. </member>
  1929. <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
  1930. <summary>
  1931. Asserts that an object is an instance of a given type.
  1932. </summary>
  1933. <param name="expected">The expected Type</param>
  1934. <param name="actual">The object being examined</param>
  1935. <param name="message">A message to display in case of failure</param>
  1936. <param name="args">An array of objects to be used in formatting the message</param>
  1937. </member>
  1938. <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
  1939. <summary>
  1940. Asserts that an object is not an instance of a given type.
  1941. </summary>
  1942. <param name="expected">The expected Type</param>
  1943. <param name="actual">The object being examined</param>
  1944. </member>
  1945. <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
  1946. <summary>
  1947. Asserts that an object is not an instance of a given type.
  1948. </summary>
  1949. <param name="expected">The expected Type</param>
  1950. <param name="actual">The object being examined</param>
  1951. <param name="message">A message to display in case of failure</param>
  1952. </member>
  1953. <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
  1954. <summary>
  1955. Asserts that an object is not an instance of a given type.
  1956. </summary>
  1957. <param name="expected">The expected Type</param>
  1958. <param name="actual">The object being examined</param>
  1959. <param name="message">A message to display in case of failure</param>
  1960. <param name="args">An array of objects to be used in formatting the message</param>
  1961. </member>
  1962. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
  1963. <summary>
  1964. Verifies that two ints are equal. If they are not, then an
  1965. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1966. </summary>
  1967. <param name="expected">The expected value</param>
  1968. <param name="actual">The actual value</param>
  1969. <param name="message">The message that will be displayed on failure</param>
  1970. <param name="args">Arguments to be used in formatting the message</param>
  1971. </member>
  1972. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
  1973. <summary>
  1974. Verifies that two ints are equal. If they are not, then an
  1975. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1976. </summary>
  1977. <param name="expected">The expected value</param>
  1978. <param name="actual">The actual value</param>
  1979. <param name="message">The message that will be displayed on failure</param>
  1980. </member>
  1981. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
  1982. <summary>
  1983. Verifies that two ints are equal. If they are not, then an
  1984. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1985. </summary>
  1986. <param name="expected">The expected value</param>
  1987. <param name="actual">The actual value</param>
  1988. </member>
  1989. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String,System.Object[])">
  1990. <summary>
  1991. Verifies that two longs are equal. If they are not, then an
  1992. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  1993. </summary>
  1994. <param name="expected">The expected value</param>
  1995. <param name="actual">The actual value</param>
  1996. <param name="message">The message that will be displayed on failure</param>
  1997. <param name="args">Arguments to be used in formatting the message</param>
  1998. </member>
  1999. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String)">
  2000. <summary>
  2001. Verifies that two longs are equal. If they are not, then an
  2002. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2003. </summary>
  2004. <param name="expected">The expected value</param>
  2005. <param name="actual">The actual value</param>
  2006. <param name="message">The message that will be displayed on failure</param>
  2007. </member>
  2008. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64)">
  2009. <summary>
  2010. Verifies that two longs are equal. If they are not, then an
  2011. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2012. </summary>
  2013. <param name="expected">The expected value</param>
  2014. <param name="actual">The actual value</param>
  2015. </member>
  2016. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  2017. <summary>
  2018. Verifies that two uints are equal. If they are not, then an
  2019. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2020. </summary>
  2021. <param name="expected">The expected value</param>
  2022. <param name="actual">The actual value</param>
  2023. <param name="message">The message that will be displayed on failure</param>
  2024. <param name="args">Arguments to be used in formatting the message</param>
  2025. </member>
  2026. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String)">
  2027. <summary>
  2028. Verifies that two uints are equal. If they are not, then an
  2029. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2030. </summary>
  2031. <param name="expected">The expected value</param>
  2032. <param name="actual">The actual value</param>
  2033. <param name="message">The message that will be displayed on failure</param>
  2034. </member>
  2035. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32)">
  2036. <summary>
  2037. Verifies that two uints are equal. If they are not, then an
  2038. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2039. </summary>
  2040. <param name="expected">The expected value</param>
  2041. <param name="actual">The actual value</param>
  2042. </member>
  2043. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  2044. <summary>
  2045. Verifies that two ulongs are equal. If they are not, then an
  2046. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2047. </summary>
  2048. <param name="expected">The expected value</param>
  2049. <param name="actual">The actual value</param>
  2050. <param name="message">The message that will be displayed on failure</param>
  2051. <param name="args">Arguments to be used in formatting the message</param>
  2052. </member>
  2053. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String)">
  2054. <summary>
  2055. Verifies that two ulongs are equal. If they are not, then an
  2056. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2057. </summary>
  2058. <param name="expected">The expected value</param>
  2059. <param name="actual">The actual value</param>
  2060. <param name="message">The message that will be displayed on failure</param>
  2061. </member>
  2062. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64)">
  2063. <summary>
  2064. Verifies that two ulongs are equal. If they are not, then an
  2065. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2066. </summary>
  2067. <param name="expected">The expected value</param>
  2068. <param name="actual">The actual value</param>
  2069. </member>
  2070. <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  2071. <summary>
  2072. Verifies that two decimals are equal. If they are not, then an
  2073. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2074. </summary>
  2075. <param name="expected">The expected value</param>
  2076. <param name="actual">The actual value</param>
  2077. <param name="message">The message that will be displayed on failure</param>
  2078. <param name="args">Arguments to be used in formatting the message</param>
  2079. </member>
  2080. <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
  2081. <summary>
  2082. Verifies that two decimal are equal. If they are not, then an
  2083. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2084. </summary>
  2085. <param name="expected">The expected value</param>
  2086. <param name="actual">The actual value</param>
  2087. <param name="message">The message that will be displayed on failure</param>
  2088. </member>
  2089. <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
  2090. <summary>
  2091. Verifies that two decimals are equal. If they are not, then an
  2092. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2093. </summary>
  2094. <param name="expected">The expected value</param>
  2095. <param name="actual">The actual value</param>
  2096. </member>
  2097. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
  2098. <summary>
  2099. Verifies that two doubles are equal considering a delta. If the
  2100. expected value is infinity then the delta value is ignored. If
  2101. they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
  2102. thrown.
  2103. </summary>
  2104. <param name="expected">The expected value</param>
  2105. <param name="actual">The actual value</param>
  2106. <param name="delta">The maximum acceptable difference between the
  2107. the expected and the actual</param>
  2108. <param name="message">The message that will be displayed on failure</param>
  2109. <param name="args">Arguments to be used in formatting the message</param>
  2110. </member>
  2111. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
  2112. <summary>
  2113. Verifies that two doubles are equal considering a delta. If the
  2114. expected value is infinity then the delta value is ignored. If
  2115. they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
  2116. thrown.
  2117. </summary>
  2118. <param name="expected">The expected value</param>
  2119. <param name="actual">The actual value</param>
  2120. <param name="delta">The maximum acceptable difference between the
  2121. the expected and the actual</param>
  2122. <param name="message">The message that will be displayed on failure</param>
  2123. </member>
  2124. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
  2125. <summary>
  2126. Verifies that two doubles are equal considering a delta. If the
  2127. expected value is infinity then the delta value is ignored. If
  2128. they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
  2129. thrown.
  2130. </summary>
  2131. <param name="expected">The expected value</param>
  2132. <param name="actual">The actual value</param>
  2133. <param name="delta">The maximum acceptable difference between the
  2134. the expected and the actual</param>
  2135. </member>
  2136. <member name="M:NUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String,System.Object[])">
  2137. <summary>
  2138. Verifies that two floats are equal considering a delta. If the
  2139. expected value is infinity then the delta value is ignored. If
  2140. they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
  2141. thrown.
  2142. </summary>
  2143. <param name="expected">The expected value</param>
  2144. <param name="actual">The actual value</param>
  2145. <param name="delta">The maximum acceptable difference between the
  2146. the expected and the actual</param>
  2147. <param name="message">The message displayed upon failure</param>
  2148. <param name="args">Arguments to be used in formatting the message</param>
  2149. </member>
  2150. <member name="M:NUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String)">
  2151. <summary>
  2152. Verifies that two floats are equal considering a delta. If the
  2153. expected value is infinity then the delta value is ignored. If
  2154. they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
  2155. thrown.
  2156. </summary>
  2157. <param name="expected">The expected value</param>
  2158. <param name="actual">The actual value</param>
  2159. <param name="delta">The maximum acceptable difference between the
  2160. the expected and the actual</param>
  2161. <param name="message">The message displayed upon failure</param>
  2162. </member>
  2163. <member name="M:NUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single)">
  2164. <summary>
  2165. Verifies that two floats are equal considering a delta. If the
  2166. expected value is infinity then the delta value is ignored. If
  2167. they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
  2168. thrown.
  2169. </summary>
  2170. <param name="expected">The expected value</param>
  2171. <param name="actual">The actual value</param>
  2172. <param name="delta">The maximum acceptable difference between the
  2173. the expected and the actual</param>
  2174. </member>
  2175. <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
  2176. <summary>
  2177. Verifies that two objects are equal. Two objects are considered
  2178. equal if both are null, or if both have the same value. All
  2179. non-numeric types are compared by using the <c>Equals</c> method.
  2180. Arrays are compared by comparing each element using the same rules.
  2181. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2182. </summary>
  2183. <param name="expected">The value that is expected</param>
  2184. <param name="actual">The actual value</param>
  2185. <param name="message">The message to display if objects are not equal</param>
  2186. <param name="args">Arguments to be used in formatting the message</param>
  2187. </member>
  2188. <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
  2189. <summary>
  2190. Verifies that two objects are equal. Two objects are considered
  2191. equal if both are null, or if both have the same value. All
  2192. non-numeric types are compared by using the <c>Equals</c> method.
  2193. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2194. </summary>
  2195. <param name="expected">The value that is expected</param>
  2196. <param name="actual">The actual value</param>
  2197. <param name="message">The message to display if objects are not equal</param>
  2198. </member>
  2199. <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
  2200. <summary>
  2201. Verifies that two objects are equal. Two objects are considered
  2202. equal if both are null, or if both have the same value. All
  2203. non-numeric types are compared by using the <c>Equals</c> method.
  2204. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2205. </summary>
  2206. <param name="expected">The value that is expected</param>
  2207. <param name="actual">The actual value</param>
  2208. </member>
  2209. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
  2210. <summary>
  2211. Asserts that two objects are not equal. If they are equal
  2212. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2213. </summary>
  2214. <param name="expected">The expected object</param>
  2215. <param name="actual">The actual object</param>
  2216. <param name="message">The message to be displayed when the two objects are the same object.</param>
  2217. <param name="args">Arguments to be used in formatting the message</param>
  2218. </member>
  2219. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
  2220. <summary>
  2221. Asserts that two objects are not equal. If they are equal
  2222. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2223. </summary>
  2224. <param name="expected">The expected object</param>
  2225. <param name="actual">The actual object</param>
  2226. <param name="message">The message to be displayed when the objects are the same</param>
  2227. </member>
  2228. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
  2229. <summary>
  2230. Asserts that two objects are not equal. If they are equal
  2231. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2232. </summary>
  2233. <param name="expected">The expected object</param>
  2234. <param name="actual">The actual object</param>
  2235. </member>
  2236. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
  2237. <summary>
  2238. Asserts that two ints are not equal. If they are equal
  2239. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2240. </summary>
  2241. <param name="expected">The expected object</param>
  2242. <param name="actual">The actual object</param>
  2243. <param name="message">The message to be displayed when the two objects are the same object.</param>
  2244. <param name="args">Arguments to be used in formatting the message</param>
  2245. </member>
  2246. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
  2247. <summary>
  2248. Asserts that two ints are not equal. If they are equal
  2249. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2250. </summary>
  2251. <param name="expected">The expected object</param>
  2252. <param name="actual">The actual object</param>
  2253. <param name="message">The message to be displayed when the objects are the same</param>
  2254. </member>
  2255. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
  2256. <summary>
  2257. Asserts that two ints are not equal. If they are equal
  2258. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2259. </summary>
  2260. <param name="expected">The expected object</param>
  2261. <param name="actual">The actual object</param>
  2262. </member>
  2263. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String,System.Object[])">
  2264. <summary>
  2265. Asserts that two longss are not equal. If they are equal
  2266. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2267. </summary>
  2268. <param name="expected">The expected object</param>
  2269. <param name="actual">The actual object</param>
  2270. <param name="message">The message to be displayed when the two objects are the same object.</param>
  2271. <param name="args">Arguments to be used in formatting the message</param>
  2272. </member>
  2273. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String)">
  2274. <summary>
  2275. Asserts that two longs are not equal. If they are equal
  2276. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2277. </summary>
  2278. <param name="expected">The expected object</param>
  2279. <param name="actual">The actual object</param>
  2280. <param name="message">The message to be displayed when the objects are the same</param>
  2281. </member>
  2282. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64)">
  2283. <summary>
  2284. Asserts that two longs are not equal. If they are equal
  2285. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2286. </summary>
  2287. <param name="expected">The expected object</param>
  2288. <param name="actual">The actual object</param>
  2289. </member>
  2290. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  2291. <summary>
  2292. Asserts that two uints are not equal. If they are equal
  2293. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2294. </summary>
  2295. <param name="expected">The expected object</param>
  2296. <param name="actual">The actual object</param>
  2297. <param name="message">The message to be displayed when the two objects are the same object.</param>
  2298. <param name="args">Arguments to be used in formatting the message</param>
  2299. </member>
  2300. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
  2301. <summary>
  2302. Asserts that two uints are not equal. If they are equal
  2303. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2304. </summary>
  2305. <param name="expected">The expected object</param>
  2306. <param name="actual">The actual object</param>
  2307. <param name="message">The message to be displayed when the objects are the same</param>
  2308. </member>
  2309. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
  2310. <summary>
  2311. Asserts that two uints are not equal. If they are equal
  2312. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2313. </summary>
  2314. <param name="expected">The expected object</param>
  2315. <param name="actual">The actual object</param>
  2316. </member>
  2317. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  2318. <summary>
  2319. Asserts that two ulongs are not equal. If they are equal
  2320. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2321. </summary>
  2322. <param name="expected">The expected object</param>
  2323. <param name="actual">The actual object</param>
  2324. <param name="message">The message to be displayed when the two objects are the same object.</param>
  2325. <param name="args">Arguments to be used in formatting the message</param>
  2326. </member>
  2327. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String)">
  2328. <summary>
  2329. Asserts that two ulongs are not equal. If they are equal
  2330. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2331. </summary>
  2332. <param name="expected">The expected object</param>
  2333. <param name="actual">The actual object</param>
  2334. <param name="message">The message to be displayed when the objects are the same</param>
  2335. </member>
  2336. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64)">
  2337. <summary>
  2338. Asserts that two ulong are not equal. If they are equal
  2339. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2340. </summary>
  2341. <param name="expected">The expected object</param>
  2342. <param name="actual">The actual object</param>
  2343. </member>
  2344. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  2345. <summary>
  2346. Asserts that two decimals are not equal. If they are equal
  2347. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2348. </summary>
  2349. <param name="expected">The expected object</param>
  2350. <param name="actual">The actual object</param>
  2351. <param name="message">The message to be displayed when the two objects are the same object.</param>
  2352. <param name="args">Arguments to be used in formatting the message</param>
  2353. </member>
  2354. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
  2355. <summary>
  2356. Asserts that two decimals are not equal. If they are equal
  2357. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2358. </summary>
  2359. <param name="expected">The expected object</param>
  2360. <param name="actual">The actual object</param>
  2361. <param name="message">The message to be displayed when the objects are the same</param>
  2362. </member>
  2363. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
  2364. <summary>
  2365. Asserts that two decimals are not equal. If they are equal
  2366. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2367. </summary>
  2368. <param name="expected">The expected object</param>
  2369. <param name="actual">The actual object</param>
  2370. </member>
  2371. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
  2372. <summary>
  2373. Asserts that two floats are not equal. If they are equal
  2374. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2375. </summary>
  2376. <param name="expected">The expected object</param>
  2377. <param name="actual">The actual object</param>
  2378. <param name="message">The message to be displayed when the two objects are the same object.</param>
  2379. <param name="args">Arguments to be used in formatting the message</param>
  2380. </member>
  2381. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
  2382. <summary>
  2383. Asserts that two floats are not equal. If they are equal
  2384. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2385. </summary>
  2386. <param name="expected">The expected object</param>
  2387. <param name="actual">The actual object</param>
  2388. <param name="message">The message to be displayed when the objects are the same</param>
  2389. </member>
  2390. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
  2391. <summary>
  2392. Asserts that two floats are not equal. If they are equal
  2393. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2394. </summary>
  2395. <param name="expected">The expected object</param>
  2396. <param name="actual">The actual object</param>
  2397. </member>
  2398. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
  2399. <summary>
  2400. Asserts that two doubles are not equal. If they are equal
  2401. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2402. </summary>
  2403. <param name="expected">The expected object</param>
  2404. <param name="actual">The actual object</param>
  2405. <param name="message">The message to be displayed when the two objects are the same object.</param>
  2406. <param name="args">Arguments to be used in formatting the message</param>
  2407. </member>
  2408. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
  2409. <summary>
  2410. Asserts that two doubles are not equal. If they are equal
  2411. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2412. </summary>
  2413. <param name="expected">The expected object</param>
  2414. <param name="actual">The actual object</param>
  2415. <param name="message">The message to be displayed when the objects are the same</param>
  2416. </member>
  2417. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
  2418. <summary>
  2419. Asserts that two doubles are not equal. If they are equal
  2420. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2421. </summary>
  2422. <param name="expected">The expected object</param>
  2423. <param name="actual">The actual object</param>
  2424. </member>
  2425. <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
  2426. <summary>
  2427. Asserts that two objects refer to the same object. If they
  2428. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2429. </summary>
  2430. <param name="expected">The expected object</param>
  2431. <param name="actual">The actual object</param>
  2432. <param name="message">The message to be displayed when the two objects are not the same object.</param>
  2433. <param name="args">Arguments to be used in formatting the message</param>
  2434. </member>
  2435. <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
  2436. <summary>
  2437. Asserts that two objects refer to the same object. If they
  2438. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2439. </summary>
  2440. <param name="expected">The expected object</param>
  2441. <param name="actual">The actual object</param>
  2442. <param name="message">The message to be displayed when the object is null</param>
  2443. </member>
  2444. <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object)">
  2445. <summary>
  2446. Asserts that two objects refer to the same object. If they
  2447. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2448. </summary>
  2449. <param name="expected">The expected object</param>
  2450. <param name="actual">The actual object</param>
  2451. </member>
  2452. <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String,System.Object[])">
  2453. <summary>
  2454. Asserts that two objects do not refer to the same object. If they
  2455. are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2456. </summary>
  2457. <param name="expected">The expected object</param>
  2458. <param name="actual">The actual object</param>
  2459. <param name="message">The message to be displayed when the two objects are the same object.</param>
  2460. <param name="args">Arguments to be used in formatting the message</param>
  2461. </member>
  2462. <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String)">
  2463. <summary>
  2464. Asserts that two objects do not refer to the same object. If they
  2465. are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2466. </summary>
  2467. <param name="expected">The expected object</param>
  2468. <param name="actual">The actual object</param>
  2469. <param name="message">The message to be displayed when the objects are the same</param>
  2470. </member>
  2471. <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object)">
  2472. <summary>
  2473. Asserts that two objects do not refer to the same object. If they
  2474. are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2475. </summary>
  2476. <param name="expected">The expected object</param>
  2477. <param name="actual">The actual object</param>
  2478. </member>
  2479. <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
  2480. <summary>
  2481. Verifies that the first value is greater than the second
  2482. value. If they are not, then an
  2483. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2484. </summary>
  2485. <param name="arg1">The first value, expected to be greater</param>
  2486. <param name="arg2">The second value, expected to be less</param>
  2487. <param name="message">The message that will be displayed on failure</param>
  2488. <param name="args">Arguments to be used in formatting the message</param>
  2489. </member>
  2490. <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
  2491. <summary>
  2492. Verifies that the first value is greater than the second
  2493. value. If they are not, then an
  2494. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2495. </summary>
  2496. <param name="arg1">The first value, expected to be greater</param>
  2497. <param name="arg2">The second value, expected to be less</param>
  2498. <param name="message">The message that will be displayed on failure</param>
  2499. </member>
  2500. <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
  2501. <summary>
  2502. Verifies that the first value is greater than the second
  2503. value. If they are not, then an
  2504. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2505. </summary>
  2506. <param name="arg1">The first value, expected to be greater</param>
  2507. <param name="arg2">The second value, expected to be less</param>
  2508. </member>
  2509. <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
  2510. <summary>
  2511. Verifies that the first value is greater than the second
  2512. value. If they are not, then an
  2513. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2514. </summary>
  2515. <param name="arg1">The first value, expected to be greater</param>
  2516. <param name="arg2">The second value, expected to be less</param>
  2517. <param name="message">The message that will be displayed on failure</param>
  2518. <param name="args">Arguments to be used in formatting the message</param>
  2519. </member>
  2520. <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
  2521. <summary>
  2522. Verifies that the first value is greater than the second
  2523. value. If they are not, then an
  2524. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2525. </summary>
  2526. <param name="arg1">The first value, expected to be greater</param>
  2527. <param name="arg2">The second value, expected to be less</param>
  2528. <param name="message">The message that will be displayed on failure</param>
  2529. </member>
  2530. <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
  2531. <summary>
  2532. Verifies that the first value is greater than the second
  2533. value. If they are not, then an
  2534. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2535. </summary>
  2536. <param name="arg1">The first value, expected to be greater</param>
  2537. <param name="arg2">The second value, expected to be less</param>
  2538. </member>
  2539. <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
  2540. <summary>
  2541. Verifies that the first value is greater than the second
  2542. value. If they are not, then an
  2543. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2544. </summary>
  2545. <param name="arg1">The first value, expected to be greater</param>
  2546. <param name="arg2">The second value, expected to be less</param>
  2547. <param name="message">The message that will be displayed on failure</param>
  2548. <param name="args">Arguments to be used in formatting the message</param>
  2549. </member>
  2550. <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
  2551. <summary>
  2552. Verifies that the first value is greater than the second
  2553. value. If they are not, then an
  2554. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2555. </summary>
  2556. <param name="arg1">The first value, expected to be greater</param>
  2557. <param name="arg2">The second value, expected to be less</param>
  2558. <param name="message">The message that will be displayed on failure</param>
  2559. </member>
  2560. <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
  2561. <summary>
  2562. Verifies that the first value is greater than the second
  2563. value. If they are not, then an
  2564. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2565. </summary>
  2566. <param name="arg1">The first value, expected to be greater</param>
  2567. <param name="arg2">The second value, expected to be less</param>
  2568. </member>
  2569. <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String,System.Object[])">
  2570. <summary>
  2571. Verifies that the first value is greater than the second
  2572. value. If they are not, then an
  2573. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2574. </summary>
  2575. <param name="arg1">The first value, expected to be greater</param>
  2576. <param name="arg2">The second value, expected to be less</param>
  2577. <param name="message">The message that will be displayed on failure</param>
  2578. <param name="args">Arguments to be used in formatting the message</param>
  2579. </member>
  2580. <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String)">
  2581. <summary>
  2582. Verifies that the first value is greater than the second
  2583. value. If they are not, then an
  2584. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2585. </summary>
  2586. <param name="arg1">The first value, expected to be greater</param>
  2587. <param name="arg2">The second value, expected to be less</param>
  2588. <param name="message">The message that will be displayed on failure</param>
  2589. </member>
  2590. <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64)">
  2591. <summary>
  2592. Verifies that the first value is greater than the second
  2593. value. If they are not, then an
  2594. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2595. </summary>
  2596. <param name="arg1">The first value, expected to be greater</param>
  2597. <param name="arg2">The second value, expected to be less</param>
  2598. </member>
  2599. <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
  2600. <summary>
  2601. Verifies that the first value is greater than the second
  2602. value. If they are not, then an
  2603. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2604. </summary>
  2605. <param name="arg1">The first value, expected to be greater</param>
  2606. <param name="arg2">The second value, expected to be less</param>
  2607. <param name="message">The message that will be displayed on failure</param>
  2608. <param name="args">Arguments to be used in formatting the message</param>
  2609. </member>
  2610. <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
  2611. <summary>
  2612. Verifies that the first value is greater than the second
  2613. value. If they are not, then an
  2614. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2615. </summary>
  2616. <param name="arg1">The first value, expected to be greater</param>
  2617. <param name="arg2">The second value, expected to be less</param>
  2618. <param name="message">The message that will be displayed on failure</param>
  2619. </member>
  2620. <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
  2621. <summary>
  2622. Verifies that the first value is greater than the second
  2623. value. If they are not, then an
  2624. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2625. </summary>
  2626. <param name="arg1">The first value, expected to be greater</param>
  2627. <param name="arg2">The second value, expected to be less</param>
  2628. </member>
  2629. <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
  2630. <summary>
  2631. Verifies that the first value is greater than the second
  2632. value. If they are not, then an
  2633. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2634. </summary>
  2635. <param name="arg1">The first value, expected to be greater</param>
  2636. <param name="arg2">The second value, expected to be less</param>
  2637. <param name="message">The message that will be displayed on failure</param>
  2638. <param name="args">Arguments to be used in formatting the message</param>
  2639. </member>
  2640. <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
  2641. <summary>
  2642. Verifies that the first value is greater than the second
  2643. value. If they are not, then an
  2644. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2645. </summary>
  2646. <param name="arg1">The first value, expected to be greater</param>
  2647. <param name="arg2">The second value, expected to be less</param>
  2648. <param name="message">The message that will be displayed on failure</param>
  2649. </member>
  2650. <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double)">
  2651. <summary>
  2652. Verifies that the first value is greater than the second
  2653. value. If they are not, then an
  2654. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2655. </summary>
  2656. <param name="arg1">The first value, expected to be greater</param>
  2657. <param name="arg2">The second value, expected to be less</param>
  2658. </member>
  2659. <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
  2660. <summary>
  2661. Verifies that the first value is greater than the second
  2662. value. If they are not, then an
  2663. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2664. </summary>
  2665. <param name="arg1">The first value, expected to be greater</param>
  2666. <param name="arg2">The second value, expected to be less</param>
  2667. <param name="message">The message that will be displayed on failure</param>
  2668. <param name="args">Arguments to be used in formatting the message</param>
  2669. </member>
  2670. <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
  2671. <summary>
  2672. Verifies that the first value is greater than the second
  2673. value. If they are not, then an
  2674. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2675. </summary>
  2676. <param name="arg1">The first value, expected to be greater</param>
  2677. <param name="arg2">The second value, expected to be less</param>
  2678. <param name="message">The message that will be displayed on failure</param>
  2679. </member>
  2680. <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single)">
  2681. <summary>
  2682. Verifies that the first value is greater than the second
  2683. value. If they are not, then an
  2684. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2685. </summary>
  2686. <param name="arg1">The first value, expected to be greater</param>
  2687. <param name="arg2">The second value, expected to be less</param>
  2688. </member>
  2689. <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
  2690. <summary>
  2691. Verifies that the first value is greater than the second
  2692. value. If they are not, then an
  2693. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2694. </summary>
  2695. <param name="arg1">The first value, expected to be greater</param>
  2696. <param name="arg2">The second value, expected to be less</param>
  2697. <param name="message">The message that will be displayed on failure</param>
  2698. <param name="args">Arguments to be used in formatting the message</param>
  2699. </member>
  2700. <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
  2701. <summary>
  2702. Verifies that the first value is greater than the second
  2703. value. If they are not, then an
  2704. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2705. </summary>
  2706. <param name="arg1">The first value, expected to be greater</param>
  2707. <param name="arg2">The second value, expected to be less</param>
  2708. <param name="message">The message that will be displayed on failure</param>
  2709. </member>
  2710. <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
  2711. <summary>
  2712. Verifies that the first value is greater than the second
  2713. value. If they are not, then an
  2714. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2715. </summary>
  2716. <param name="arg1">The first value, expected to be greater</param>
  2717. <param name="arg2">The second value, expected to be less</param>
  2718. </member>
  2719. <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
  2720. <summary>
  2721. Verifies that the first value is less than the second
  2722. value. If it is not, then an
  2723. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2724. </summary>
  2725. <param name="arg1">The first value, expected to be less</param>
  2726. <param name="arg2">The second value, expected to be greater</param>
  2727. <param name="message">The message that will be displayed on failure</param>
  2728. <param name="args">Arguments to be used in formatting the message</param>
  2729. </member>
  2730. <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
  2731. <summary>
  2732. Verifies that the first value is less than the second
  2733. value. If it is not, then an
  2734. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2735. </summary>
  2736. <param name="arg1">The first value, expected to be less</param>
  2737. <param name="arg2">The second value, expected to be greater</param>
  2738. <param name="message">The message that will be displayed on failure</param>
  2739. </member>
  2740. <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32)">
  2741. <summary>
  2742. Verifies that the first value is less than the second
  2743. value. If it is not, then an
  2744. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2745. </summary>
  2746. <param name="arg1">The first value, expected to be less</param>
  2747. <param name="arg2">The second value, expected to be greater</param>
  2748. </member>
  2749. <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
  2750. <summary>
  2751. Verifies that the first value is less than the second
  2752. value. If it is not, then an
  2753. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2754. </summary>
  2755. <param name="arg1">The first value, expected to be less</param>
  2756. <param name="arg2">The second value, expected to be greater</param>
  2757. <param name="message">The message that will be displayed on failure</param>
  2758. <param name="args">Arguments to be used in formatting the message</param>
  2759. </member>
  2760. <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
  2761. <summary>
  2762. Verifies that the first value is less than the second
  2763. value. If it is not, then an
  2764. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2765. </summary>
  2766. <param name="arg1">The first value, expected to be less</param>
  2767. <param name="arg2">The second value, expected to be greater</param>
  2768. <param name="message">The message that will be displayed on failure</param>
  2769. </member>
  2770. <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
  2771. <summary>
  2772. Verifies that the first value is less than the second
  2773. value. If it is not, then an
  2774. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2775. </summary>
  2776. <param name="arg1">The first value, expected to be less</param>
  2777. <param name="arg2">The second value, expected to be greater</param>
  2778. </member>
  2779. <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
  2780. <summary>
  2781. Verifies that the first value is less than the second
  2782. value. If it is not, then an
  2783. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2784. </summary>
  2785. <param name="arg1">The first value, expected to be less</param>
  2786. <param name="arg2">The second value, expected to be greater</param>
  2787. <param name="message">The message that will be displayed on failure</param>
  2788. <param name="args">Arguments to be used in formatting the message</param>
  2789. </member>
  2790. <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
  2791. <summary>
  2792. Verifies that the first value is less than the second
  2793. value. If it is not, then an
  2794. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2795. </summary>
  2796. <param name="arg1">The first value, expected to be less</param>
  2797. <param name="arg2">The second value, expected to be greater</param>
  2798. <param name="message">The message that will be displayed on failure</param>
  2799. </member>
  2800. <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64)">
  2801. <summary>
  2802. Verifies that the first value is less than the second
  2803. value. If it is not, then an
  2804. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2805. </summary>
  2806. <param name="arg1">The first value, expected to be less</param>
  2807. <param name="arg2">The second value, expected to be greater</param>
  2808. </member>
  2809. <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String,System.Object[])">
  2810. <summary>
  2811. Verifies that the first value is less than the second
  2812. value. If it is not, then an
  2813. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2814. </summary>
  2815. <param name="arg1">The first value, expected to be less</param>
  2816. <param name="arg2">The second value, expected to be greater</param>
  2817. <param name="message">The message that will be displayed on failure</param>
  2818. <param name="args">Arguments to be used in formatting the message</param>
  2819. </member>
  2820. <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String)">
  2821. <summary>
  2822. Verifies that the first value is less than the second
  2823. value. If it is not, then an
  2824. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2825. </summary>
  2826. <param name="arg1">The first value, expected to be less</param>
  2827. <param name="arg2">The second value, expected to be greater</param>
  2828. <param name="message">The message that will be displayed on failure</param>
  2829. </member>
  2830. <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64)">
  2831. <summary>
  2832. Verifies that the first value is less than the second
  2833. value. If it is not, then an
  2834. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2835. </summary>
  2836. <param name="arg1">The first value, expected to be less</param>
  2837. <param name="arg2">The second value, expected to be greater</param>
  2838. </member>
  2839. <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
  2840. <summary>
  2841. Verifies that the first value is less than the second
  2842. value. If it is not, then an
  2843. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2844. </summary>
  2845. <param name="arg1">The first value, expected to be less</param>
  2846. <param name="arg2">The second value, expected to be greater</param>
  2847. <param name="message">The message that will be displayed on failure</param>
  2848. <param name="args">Arguments to be used in formatting the message</param>
  2849. </member>
  2850. <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
  2851. <summary>
  2852. Verifies that the first value is less than the second
  2853. value. If it is not, then an
  2854. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2855. </summary>
  2856. <param name="arg1">The first value, expected to be less</param>
  2857. <param name="arg2">The second value, expected to be greater</param>
  2858. <param name="message">The message that will be displayed on failure</param>
  2859. </member>
  2860. <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
  2861. <summary>
  2862. Verifies that the first value is less than the second
  2863. value. If it is not, then an
  2864. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2865. </summary>
  2866. <param name="arg1">The first value, expected to be less</param>
  2867. <param name="arg2">The second value, expected to be greater</param>
  2868. </member>
  2869. <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
  2870. <summary>
  2871. Verifies that the first value is less than the second
  2872. value. If it is not, then an
  2873. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2874. </summary>
  2875. <param name="arg1">The first value, expected to be less</param>
  2876. <param name="arg2">The second value, expected to be greater</param>
  2877. <param name="message">The message that will be displayed on failure</param>
  2878. <param name="args">Arguments to be used in formatting the message</param>
  2879. </member>
  2880. <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
  2881. <summary>
  2882. Verifies that the first value is less than the second
  2883. value. If it is not, then an
  2884. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2885. </summary>
  2886. <param name="arg1">The first value, expected to be less</param>
  2887. <param name="arg2">The second value, expected to be greater</param>
  2888. <param name="message">The message that will be displayed on failure</param>
  2889. </member>
  2890. <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double)">
  2891. <summary>
  2892. Verifies that the first value is less than the second
  2893. value. If it is not, then an
  2894. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2895. </summary>
  2896. <param name="arg1">The first value, expected to be less</param>
  2897. <param name="arg2">The second value, expected to be greater</param>
  2898. </member>
  2899. <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
  2900. <summary>
  2901. Verifies that the first value is less than the second
  2902. value. If it is not, then an
  2903. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2904. </summary>
  2905. <param name="arg1">The first value, expected to be less</param>
  2906. <param name="arg2">The second value, expected to be greater</param>
  2907. <param name="message">The message that will be displayed on failure</param>
  2908. <param name="args">Arguments to be used in formatting the message</param>
  2909. </member>
  2910. <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
  2911. <summary>
  2912. Verifies that the first value is less than the second
  2913. value. If it is not, then an
  2914. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2915. </summary>
  2916. <param name="arg1">The first value, expected to be less</param>
  2917. <param name="arg2">The second value, expected to be greater</param>
  2918. <param name="message">The message that will be displayed on failure</param>
  2919. </member>
  2920. <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single)">
  2921. <summary>
  2922. Verifies that the first value is less than the second
  2923. value. If it is not, then an
  2924. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2925. </summary>
  2926. <param name="arg1">The first value, expected to be less</param>
  2927. <param name="arg2">The second value, expected to be greater</param>
  2928. </member>
  2929. <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
  2930. <summary>
  2931. Verifies that the first value is less than the second
  2932. value. If it is not, then an
  2933. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2934. </summary>
  2935. <param name="arg1">The first value, expected to be less</param>
  2936. <param name="arg2">The second value, expected to be greater</param>
  2937. <param name="message">The message that will be displayed on failure</param>
  2938. <param name="args">Arguments to be used in formatting the message</param>
  2939. </member>
  2940. <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
  2941. <summary>
  2942. Verifies that the first value is less than the second
  2943. value. If it is not, then an
  2944. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2945. </summary>
  2946. <param name="arg1">The first value, expected to be less</param>
  2947. <param name="arg2">The second value, expected to be greater</param>
  2948. <param name="message">The message that will be displayed on failure</param>
  2949. </member>
  2950. <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
  2951. <summary>
  2952. Verifies that the first value is less than the second
  2953. value. If it is not, then an
  2954. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  2955. </summary>
  2956. <param name="arg1">The first value, expected to be less</param>
  2957. <param name="arg2">The second value, expected to be greater</param>
  2958. </member>
  2959. <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String,System.Object[])">
  2960. <summary>
  2961. Asserts that an object is contained in a list.
  2962. </summary>
  2963. <param name="expected">The expected object</param>
  2964. <param name="actual">The list to be examined</param>
  2965. <param name="message">The message to display in case of failure</param>
  2966. <param name="args">Arguments used in formatting the message</param>
  2967. </member>
  2968. <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String)">
  2969. <summary>
  2970. Asserts that an object is contained in a list.
  2971. </summary>
  2972. <param name="expected">The expected object</param>
  2973. <param name="actual">The list to be examined</param>
  2974. <param name="message">The message to display in case of failure</param>
  2975. </member>
  2976. <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection)">
  2977. <summary>
  2978. Asserts that an object is contained in a list.
  2979. </summary>
  2980. <param name="expected">The expected object</param>
  2981. <param name="actual">The list to be examined</param>
  2982. </member>
  2983. <member name="M:NUnit.Framework.Assert.Fail(System.String,System.Object[])">
  2984. <summary>
  2985. Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message and arguments
  2986. that are passed in. This is used by the other Assert functions.
  2987. </summary>
  2988. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  2989. <param name="args">Arguments to be used in formatting the message</param>
  2990. </member>
  2991. <member name="M:NUnit.Framework.Assert.Fail(System.String)">
  2992. <summary>
  2993. Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message that is
  2994. passed in. This is used by the other Assert functions.
  2995. </summary>
  2996. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  2997. </member>
  2998. <member name="M:NUnit.Framework.Assert.Fail">
  2999. <summary>
  3000. Throws an <see cref="T:NUnit.Framework.AssertionException"/>.
  3001. This is used by the other Assert functions.
  3002. </summary>
  3003. </member>
  3004. <member name="M:NUnit.Framework.Assert.Ignore(System.String,System.Object[])">
  3005. <summary>
  3006. Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message and arguments
  3007. that are passed in. This causes the test to be reported as ignored.
  3008. </summary>
  3009. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  3010. <param name="args">Arguments to be used in formatting the message</param>
  3011. </member>
  3012. <member name="M:NUnit.Framework.Assert.Ignore(System.String)">
  3013. <summary>
  3014. Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message that is
  3015. passed in. This causes the test to be reported as ignored.
  3016. </summary>
  3017. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  3018. </member>
  3019. <member name="M:NUnit.Framework.Assert.Ignore">
  3020. <summary>
  3021. Throws an <see cref="T:NUnit.Framework.IgnoreException"/>.
  3022. This causes the test to be reported as ignored.
  3023. </summary>
  3024. </member>
  3025. <member name="M:NUnit.Framework.Assert.DoAssert(NUnit.Framework.IAsserter)">
  3026. <summary>
  3027. NOTE: The use of asserters for extending NUnit has
  3028. now been replaced by the use of constraints. This
  3029. method is marked obsolete.
  3030. Test the condition asserted by an asserter and throw
  3031. an assertion exception using provided message on failure.
  3032. </summary>
  3033. <param name="asserter">An object that implements IAsserter</param>
  3034. </member>
  3035. <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.Constraint)">
  3036. <summary>
  3037. Apply a constraint to an actual value, succeeding if the constraint
  3038. is satisfied and throwing an assertion exception on failure.
  3039. </summary>
  3040. <param name="constraint">A Constraint to be applied</param>
  3041. <param name="actual">The actual value to test</param>
  3042. </member>
  3043. <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.Constraint,System.String)">
  3044. <summary>
  3045. Apply a constraint to an actual value, succeedingt if the constraint
  3046. is satisfied and throwing an assertion exception on failure.
  3047. </summary>
  3048. <param name="constraint">A Constraint to be applied</param>
  3049. <param name="actual">The actual value to test</param>
  3050. <param name="message">The message that will be displayed on failure</param>
  3051. </member>
  3052. <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.Constraint,System.String,System.Object[])">
  3053. <summary>
  3054. Apply a constraint to an actual value, succeedingt if the constraint
  3055. is satisfied and throwing an assertion exception on failure.
  3056. </summary>
  3057. <param name="constraint">A Constraint to be applied</param>
  3058. <param name="actual">The actual value to test</param>
  3059. <param name="message">The message that will be displayed on failure</param>
  3060. <param name="args">Arguments to be used in formatting the message</param>
  3061. </member>
  3062. <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])">
  3063. <summary>
  3064. Asserts that a condition is true. If the condition is false the method throws
  3065. an <see cref="T:NUnit.Framework.AssertionException"/>.
  3066. </summary>
  3067. <param name="condition">The evaluated condition</param>
  3068. <param name="message">The message to display if the condition is false</param>
  3069. <param name="args">Arguments to be used in formatting the message</param>
  3070. </member>
  3071. <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String)">
  3072. <summary>
  3073. Asserts that a condition is true. If the condition is false the method throws
  3074. an <see cref="T:NUnit.Framework.AssertionException"/>.
  3075. </summary>
  3076. <param name="condition">The evaluated condition</param>
  3077. <param name="message">The message to display if the condition is false</param>
  3078. </member>
  3079. <member name="M:NUnit.Framework.Assert.That(System.Boolean)">
  3080. <summary>
  3081. Asserts that a condition is true. If the condition is false the method throws
  3082. an <see cref="T:NUnit.Framework.AssertionException"/>.
  3083. </summary>
  3084. <param name="condition">The evaluated condition</param>
  3085. </member>
  3086. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
  3087. <summary>
  3088. Verifies that the first value is greater than or equal to the second
  3089. value. If they are not, then an
  3090. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3091. </summary>
  3092. <param name="arg1">The first value, expected to be greater</param>
  3093. <param name="arg2">The second value, expected to be less</param>
  3094. <param name="message">The message that will be displayed on failure</param>
  3095. <param name="args">Arguments to be used in formatting the message</param>
  3096. </member>
  3097. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String)">
  3098. <summary>
  3099. Verifies that the first value is greater than or equal to the second
  3100. value. If they are not, then an
  3101. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3102. </summary>
  3103. <param name="arg1">The first value, expected to be greater</param>
  3104. <param name="arg2">The second value, expected to be less</param>
  3105. <param name="message">The message that will be displayed on failure</param>
  3106. </member>
  3107. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32)">
  3108. <summary>
  3109. Verifies that the first value is greater than or equal to the second
  3110. value. If they are not, then an
  3111. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3112. </summary>
  3113. <param name="arg1">The first value, expected to be greater</param>
  3114. <param name="arg2">The second value, expected to be less</param>
  3115. </member>
  3116. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  3117. <summary>
  3118. Verifies that the first value is greater than or equal to the second
  3119. value. If they are not, then an
  3120. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3121. </summary>
  3122. <param name="arg1">The first value, expected to be greater</param>
  3123. <param name="arg2">The second value, expected to be less</param>
  3124. <param name="message">The message that will be displayed on failure</param>
  3125. <param name="args">Arguments to be used in formatting the message</param>
  3126. </member>
  3127. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String)">
  3128. <summary>
  3129. Verifies that the first value is greater than or equal to the second
  3130. value. If they are not, then an
  3131. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3132. </summary>
  3133. <param name="arg1">The first value, expected to be greater</param>
  3134. <param name="arg2">The second value, expected to be less</param>
  3135. <param name="message">The message that will be displayed on failure</param>
  3136. </member>
  3137. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32)">
  3138. <summary>
  3139. Verifies that the first value is greater or equal to than the second
  3140. value. If they are not, then an
  3141. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3142. </summary>
  3143. <param name="arg1">The first value, expected to be greater</param>
  3144. <param name="arg2">The second value, expected to be less</param>
  3145. </member>
  3146. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
  3147. <summary>
  3148. Verifies that the first value is greater than or equal to the second
  3149. value. If they are not, then an
  3150. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3151. </summary>
  3152. <param name="arg1">The first value, expected to be greater</param>
  3153. <param name="arg2">The second value, expected to be less</param>
  3154. <param name="message">The message that will be displayed on failure</param>
  3155. <param name="args">Arguments to be used in formatting the message</param>
  3156. </member>
  3157. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String)">
  3158. <summary>
  3159. Verifies that the first value is greater than or equal to the second
  3160. value. If they are not, then an
  3161. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3162. </summary>
  3163. <param name="arg1">The first value, expected to be greater</param>
  3164. <param name="arg2">The second value, expected to be less</param>
  3165. <param name="message">The message that will be displayed on failure</param>
  3166. </member>
  3167. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64)">
  3168. <summary>
  3169. Verifies that the first value is greater or equal to than the second
  3170. value. If they are not, then an
  3171. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3172. </summary>
  3173. <param name="arg1">The first value, expected to be greater</param>
  3174. <param name="arg2">The second value, expected to be less</param>
  3175. </member>
  3176. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  3177. <summary>
  3178. Verifies that the first value is greater than or equal to the second
  3179. value. If they are not, then an
  3180. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3181. </summary>
  3182. <param name="arg1">The first value, expected to be greater</param>
  3183. <param name="arg2">The second value, expected to be less</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.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String)">
  3188. <summary>
  3189. Verifies that the first value is greater than or equal to the second
  3190. value. If they are not, then an
  3191. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3192. </summary>
  3193. <param name="arg1">The first value, expected to be greater</param>
  3194. <param name="arg2">The second value, expected to be less</param>
  3195. <param name="message">The message that will be displayed on failure</param>
  3196. </member>
  3197. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64)">
  3198. <summary>
  3199. Verifies that the first value is greater or equal to than the second
  3200. value. If they are not, then an
  3201. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3202. </summary>
  3203. <param name="arg1">The first value, expected to be greater</param>
  3204. <param name="arg2">The second value, expected to be less</param>
  3205. </member>
  3206. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  3207. <summary>
  3208. Verifies that the first value is greater than or equal to the second
  3209. value. If they are not, then an
  3210. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3211. </summary>
  3212. <param name="arg1">The first value, expected to be greater</param>
  3213. <param name="arg2">The second value, expected to be less</param>
  3214. <param name="message">The message that will be displayed on failure</param>
  3215. <param name="args">Arguments to be used in formatting the message</param>
  3216. </member>
  3217. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String)">
  3218. <summary>
  3219. Verifies that the first value is greater than or equal to the second
  3220. value. If they are not, then an
  3221. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3222. </summary>
  3223. <param name="arg1">The first value, expected to be greater</param>
  3224. <param name="arg2">The second value, expected to be less</param>
  3225. <param name="message">The message that will be displayed on failure</param>
  3226. </member>
  3227. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal)">
  3228. <summary>
  3229. Verifies that the first value is greater than or equal to the second
  3230. value. If they are not, then an
  3231. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3232. </summary>
  3233. <param name="arg1">The first value, expected to be greater</param>
  3234. <param name="arg2">The second value, expected to be less</param>
  3235. </member>
  3236. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String,System.Object[])">
  3237. <summary>
  3238. Verifies that the first value is greater than or equal to the second
  3239. value. If they are not, then an
  3240. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3241. </summary>
  3242. <param name="arg1">The first value, expected to be greater</param>
  3243. <param name="arg2">The second value, expected to be less</param>
  3244. <param name="message">The message that will be displayed on failure</param>
  3245. <param name="args">Arguments to be used in formatting the message</param>
  3246. </member>
  3247. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String)">
  3248. <summary>
  3249. Verifies that the first value is greater than or equal to the second
  3250. value. If they are not, then an
  3251. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3252. </summary>
  3253. <param name="arg1">The first value, expected to be greater</param>
  3254. <param name="arg2">The second value, expected to be less</param>
  3255. <param name="message">The message that will be displayed on failure</param>
  3256. </member>
  3257. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double)">
  3258. <summary>
  3259. Verifies that the first value is greater than or equal to the second
  3260. value. If they are not, then an
  3261. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3262. </summary>
  3263. <param name="arg1">The first value, expected to be greater</param>
  3264. <param name="arg2">The second value, expected to be less</param>
  3265. </member>
  3266. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String,System.Object[])">
  3267. <summary>
  3268. Verifies that the first value is greater than or equal to the second
  3269. value. If they are not, then an
  3270. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3271. </summary>
  3272. <param name="arg1">The first value, expected to be greater</param>
  3273. <param name="arg2">The second value, expected to be less</param>
  3274. <param name="message">The message that will be displayed on failure</param>
  3275. <param name="args">Arguments to be used in formatting the message</param>
  3276. </member>
  3277. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String)">
  3278. <summary>
  3279. Verifies that the first value is greater than or equal to the second
  3280. value. If they are not, then an
  3281. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3282. </summary>
  3283. <param name="arg1">The first value, expected to be greater</param>
  3284. <param name="arg2">The second value, expected to be less</param>
  3285. <param name="message">The message that will be displayed on failure</param>
  3286. </member>
  3287. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single)">
  3288. <summary>
  3289. Verifies that the first value is greater than or equal to the second
  3290. value. If they are not, then an
  3291. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3292. </summary>
  3293. <param name="arg1">The first value, expected to be greater</param>
  3294. <param name="arg2">The second value, expected to be less</param>
  3295. </member>
  3296. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
  3297. <summary>
  3298. Verifies that the first value is greater than the second
  3299. value. If they are not, then an
  3300. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3301. </summary>
  3302. <param name="arg1">The first value, expected to be greater</param>
  3303. <param name="arg2">The second value, expected to be less</param>
  3304. <param name="message">The message that will be displayed on failure</param>
  3305. <param name="args">Arguments to be used in formatting the message</param>
  3306. </member>
  3307. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String)">
  3308. <summary>
  3309. Verifies that the first value is greater than the second
  3310. value. If they are not, then an
  3311. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3312. </summary>
  3313. <param name="arg1">The first value, expected to be greater</param>
  3314. <param name="arg2">The second value, expected to be less</param>
  3315. <param name="message">The message that will be displayed on failure</param>
  3316. </member>
  3317. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable)">
  3318. <summary>
  3319. Verifies that the first value is greater than the second
  3320. value. If they are not, then an
  3321. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3322. </summary>
  3323. <param name="arg1">The first value, expected to be greater</param>
  3324. <param name="arg2">The second value, expected to be less</param>
  3325. </member>
  3326. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
  3327. <summary>
  3328. Verifies that the first value is less than or equal to the second
  3329. value. If it is not, then an
  3330. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3331. </summary>
  3332. <param name="arg1">The first value, expected to be less</param>
  3333. <param name="arg2">The second value, expected to be greater</param>
  3334. <param name="message">The message that will be displayed on failure</param>
  3335. <param name="args">Arguments to be used in formatting the message</param>
  3336. </member>
  3337. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String)">
  3338. <summary>
  3339. Verifies that the first value is less than or equal to the second
  3340. value. If it is not, then an
  3341. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3342. </summary>
  3343. <param name="arg1">The first value, expected to be less</param>
  3344. <param name="arg2">The second value, expected to be greater</param>
  3345. <param name="message">The message that will be displayed on failure</param>
  3346. </member>
  3347. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32)">
  3348. <summary>
  3349. Verifies that the first value is less than or equal to the second
  3350. value. If it is not, then an
  3351. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3352. </summary>
  3353. <param name="arg1">The first value, expected to be less</param>
  3354. <param name="arg2">The second value, expected to be greater</param>
  3355. </member>
  3356. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  3357. <summary>
  3358. Verifies that the first value is less than or equal to the second
  3359. value. If it is not, then an
  3360. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3361. </summary>
  3362. <param name="arg1">The first value, expected to be less</param>
  3363. <param name="arg2">The second value, expected to be greater</param>
  3364. <param name="message">The message that will be displayed on failure</param>
  3365. <param name="args">Arguments to be used in formatting the message</param>
  3366. </member>
  3367. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String)">
  3368. <summary>
  3369. Verifies that the first value is less than or equal to the second
  3370. value. If it is not, then an
  3371. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3372. </summary>
  3373. <param name="arg1">The first value, expected to be less</param>
  3374. <param name="arg2">The second value, expected to be greater</param>
  3375. <param name="message">The message that will be displayed on failure</param>
  3376. </member>
  3377. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32)">
  3378. <summary>
  3379. Verifies that the first value is less than or equal to the second
  3380. value. If it is not, then an
  3381. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3382. </summary>
  3383. <param name="arg1">The first value, expected to be less</param>
  3384. <param name="arg2">The second value, expected to be greater</param>
  3385. </member>
  3386. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
  3387. <summary>
  3388. Verifies that the first value is less than or equal to the second
  3389. value. If it is not, then an
  3390. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3391. </summary>
  3392. <param name="arg1">The first value, expected to be less</param>
  3393. <param name="arg2">The second value, expected to be greater</param>
  3394. <param name="message">The message that will be displayed on failure</param>
  3395. <param name="args">Arguments to be used in formatting the message</param>
  3396. </member>
  3397. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String)">
  3398. <summary>
  3399. Verifies that the first value is less than or equal to the second
  3400. value. If it is not, then an
  3401. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3402. </summary>
  3403. <param name="arg1">The first value, expected to be less</param>
  3404. <param name="arg2">The second value, expected to be greater</param>
  3405. <param name="message">The message that will be displayed on failure</param>
  3406. </member>
  3407. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64)">
  3408. <summary>
  3409. Verifies that the first value is less than or equal to the second
  3410. value. If it is not, then an
  3411. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3412. </summary>
  3413. <param name="arg1">The first value, expected to be less</param>
  3414. <param name="arg2">The second value, expected to be greater</param>
  3415. </member>
  3416. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  3417. <summary>
  3418. Verifies that the first value is less than or equal to the second
  3419. value. If it is not, then an
  3420. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3421. </summary>
  3422. <param name="arg1">The first value, expected to be less</param>
  3423. <param name="arg2">The second value, expected to be greater</param>
  3424. <param name="message">The message that will be displayed on failure</param>
  3425. <param name="args">Arguments to be used in formatting the message</param>
  3426. </member>
  3427. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String)">
  3428. <summary>
  3429. Verifies that the first value is less than or equal to the second
  3430. value. If it is not, then an
  3431. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3432. </summary>
  3433. <param name="arg1">The first value, expected to be less</param>
  3434. <param name="arg2">The second value, expected to be greater</param>
  3435. <param name="message">The message that will be displayed on failure</param>
  3436. </member>
  3437. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64)">
  3438. <summary>
  3439. Verifies that the first value is less than or equal to the second
  3440. value. If it is not, then an
  3441. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3442. </summary>
  3443. <param name="arg1">The first value, expected to be less</param>
  3444. <param name="arg2">The second value, expected to be greater</param>
  3445. </member>
  3446. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  3447. <summary>
  3448. Verifies that the first value is less than or equal to the second
  3449. value. If it is not, then an
  3450. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3451. </summary>
  3452. <param name="arg1">The first value, expected to be less</param>
  3453. <param name="arg2">The second value, expected to be greater</param>
  3454. <param name="message">The message that will be displayed on failure</param>
  3455. <param name="args">Arguments to be used in formatting the message</param>
  3456. </member>
  3457. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String)">
  3458. <summary>
  3459. Verifies that the first value is less than or equal to the second
  3460. value. If it is not, then an
  3461. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3462. </summary>
  3463. <param name="arg1">The first value, expected to be less</param>
  3464. <param name="arg2">The second value, expected to be greater</param>
  3465. <param name="message">The message that will be displayed on failure</param>
  3466. </member>
  3467. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal)">
  3468. <summary>
  3469. Verifies that the first value is less than or equal to the second
  3470. value. If it is not, then an
  3471. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3472. </summary>
  3473. <param name="arg1">The first value, expected to be less</param>
  3474. <param name="arg2">The second value, expected to be greater</param>
  3475. </member>
  3476. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String,System.Object[])">
  3477. <summary>
  3478. Verifies that the first value is less than or equal to the second
  3479. value. If it is not, then an
  3480. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3481. </summary>
  3482. <param name="arg1">The first value, expected to be less</param>
  3483. <param name="arg2">The second value, expected to be greater</param>
  3484. <param name="message">The message that will be displayed on failure</param>
  3485. <param name="args">Arguments to be used in formatting the message</param>
  3486. </member>
  3487. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String)">
  3488. <summary>
  3489. Verifies that the first value is less than or equal to the second
  3490. value. If it is not, then an
  3491. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3492. </summary>
  3493. <param name="arg1">The first value, expected to be less</param>
  3494. <param name="arg2">The second value, expected to be greater</param>
  3495. <param name="message">The message that will be displayed on failure</param>
  3496. </member>
  3497. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double)">
  3498. <summary>
  3499. Verifies that the first value is less than or equal to the second
  3500. value. If it is not, then an
  3501. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3502. </summary>
  3503. <param name="arg1">The first value, expected to be less</param>
  3504. <param name="arg2">The second value, expected to be greater</param>
  3505. </member>
  3506. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String,System.Object[])">
  3507. <summary>
  3508. Verifies that the first value is less than or equal to the second
  3509. value. If it is not, then an
  3510. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3511. </summary>
  3512. <param name="arg1">The first value, expected to be less</param>
  3513. <param name="arg2">The second value, expected to be greater</param>
  3514. <param name="message">The message that will be displayed on failure</param>
  3515. <param name="args">Arguments to be used in formatting the message</param>
  3516. </member>
  3517. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String)">
  3518. <summary>
  3519. Verifies that the first value is less than or equal to the second
  3520. value. If it is not, then an
  3521. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3522. </summary>
  3523. <param name="arg1">The first value, expected to be less</param>
  3524. <param name="arg2">The second value, expected to be greater</param>
  3525. <param name="message">The message that will be displayed on failure</param>
  3526. </member>
  3527. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single)">
  3528. <summary>
  3529. Verifies that the first value is less than or equal to the second
  3530. value. If it is not, then an
  3531. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3532. </summary>
  3533. <param name="arg1">The first value, expected to be less</param>
  3534. <param name="arg2">The second value, expected to be greater</param>
  3535. </member>
  3536. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
  3537. <summary>
  3538. Verifies that the first value is less than or equal to the second
  3539. value. If it is not, then an
  3540. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3541. </summary>
  3542. <param name="arg1">The first value, expected to be less</param>
  3543. <param name="arg2">The second value, expected to be greater</param>
  3544. <param name="message">The message that will be displayed on failure</param>
  3545. <param name="args">Arguments to be used in formatting the message</param>
  3546. </member>
  3547. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String)">
  3548. <summary>
  3549. Verifies that the first value is less than or equal to the second
  3550. value. If it is not, then an
  3551. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3552. </summary>
  3553. <param name="arg1">The first value, expected to be less</param>
  3554. <param name="arg2">The second value, expected to be greater</param>
  3555. <param name="message">The message that will be displayed on failure</param>
  3556. </member>
  3557. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable)">
  3558. <summary>
  3559. Verifies that the first value is less than or equal to the second
  3560. value. If it is not, then an
  3561. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  3562. </summary>
  3563. <param name="arg1">The first value, expected to be less</param>
  3564. <param name="arg2">The second value, expected to be greater</param>
  3565. </member>
  3566. <member name="P:NUnit.Framework.Assert.Counter">
  3567. <summary>
  3568. Gets the number of assertions executed so far and
  3569. resets the counter to zero.
  3570. </summary>
  3571. </member>
  3572. <member name="T:NUnit.Framework.MessageMatch">
  3573. <summary>
  3574. Enumeration indicating how the expected message parameter is to be used
  3575. </summary>
  3576. </member>
  3577. <member name="F:NUnit.Framework.MessageMatch.Exact">
  3578. Expect an exact match
  3579. </member>
  3580. <member name="F:NUnit.Framework.MessageMatch.Contains">
  3581. Expect a message containing the parameter string
  3582. </member>
  3583. <member name="F:NUnit.Framework.MessageMatch.Regex">
  3584. Match the regular expression provided as a parameter
  3585. </member>
  3586. <member name="T:NUnit.Framework.ExpectedExceptionAttribute">
  3587. <summary>
  3588. ExpectedExceptionAttribute
  3589. </summary>
  3590. </member>
  3591. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor">
  3592. <summary>
  3593. Constructor for a non-specific exception
  3594. </summary>
  3595. </member>
  3596. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type)">
  3597. <summary>
  3598. Constructor for a given type of exception
  3599. </summary>
  3600. <param name="exceptionType">The type of the expected exception</param>
  3601. </member>
  3602. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.String)">
  3603. <summary>
  3604. Constructor for a given exception name
  3605. </summary>
  3606. <param name="exceptionName">The full name of the expected exception</param>
  3607. </member>
  3608. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type,System.String)">
  3609. <summary>
  3610. Constructor for a given type of exception and expected message text
  3611. </summary>
  3612. <param name="exceptionType">The type of the expected exception</param>
  3613. <param name="expectedMessage">The expected message text</param>
  3614. </member>
  3615. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.String,System.String)">
  3616. <summary>
  3617. Constructor for a given exception name and expected message text
  3618. </summary>
  3619. <param name="exceptionName">The full name of the expected exception</param>
  3620. <param name="expectedMessage">The expected messge text</param>
  3621. </member>
  3622. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExceptionType">
  3623. <summary>
  3624. Gets or sets the expected exception type
  3625. </summary>
  3626. </member>
  3627. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExceptionName">
  3628. <summary>
  3629. Gets or sets the full Type name of the expected exception
  3630. </summary>
  3631. </member>
  3632. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
  3633. <summary>
  3634. Gets or sets the expected message text
  3635. </summary>
  3636. </member>
  3637. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.UserMessage">
  3638. <summary>
  3639. Gets or sets the user message displayed in case of failure
  3640. </summary>
  3641. </member>
  3642. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.MatchType">
  3643. <summary>
  3644. Gets or sets the type of match to be performed on the expected message
  3645. </summary>
  3646. </member>
  3647. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.Handler">
  3648. <summary>
  3649. Gets the name of a method to be used as an exception handler
  3650. </summary>
  3651. </member>
  3652. <member name="T:NUnit.Framework.CollectionAssert">
  3653. <summary>
  3654. A set of Assert methods operationg on one or more collections
  3655. </summary>
  3656. </member>
  3657. <member name="M:NUnit.Framework.CollectionAssert.Equals(System.Object,System.Object)">
  3658. <summary>
  3659. The Equals method throws an AssertionException. This is done
  3660. to make sure there is no mistake by calling this function.
  3661. </summary>
  3662. <param name="a"></param>
  3663. <param name="b"></param>
  3664. </member>
  3665. <member name="M:NUnit.Framework.CollectionAssert.ReferenceEquals(System.Object,System.Object)">
  3666. <summary>
  3667. override the default ReferenceEquals to throw an AssertionException. This
  3668. implementation makes sure there is no mistake in calling this function
  3669. as part of Assert.
  3670. </summary>
  3671. <param name="a"></param>
  3672. <param name="b"></param>
  3673. </member>
  3674. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type)">
  3675. <summary>
  3676. Asserts that all items contained in collection are of the type specified by expectedType.
  3677. </summary>
  3678. <param name="collection">IEnumerable containing objects to be considered</param>
  3679. <param name="expectedType">System.Type that all objects in collection must be instances of</param>
  3680. </member>
  3681. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String)">
  3682. <summary>
  3683. Asserts that all items contained in collection are of the type specified by expectedType.
  3684. </summary>
  3685. <param name="collection">IEnumerable containing objects to be considered</param>
  3686. <param name="expectedType">System.Type that all objects in collection must be instances of</param>
  3687. <param name="message">The message that will be displayed on failure</param>
  3688. </member>
  3689. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String,System.Object[])">
  3690. <summary>
  3691. Asserts that all items contained in collection are of the type specified by expectedType.
  3692. </summary>
  3693. <param name="collection">IEnumerable containing objects to be considered</param>
  3694. <param name="expectedType">System.Type that all objects in collection must be instances of</param>
  3695. <param name="message">The message that will be displayed on failure</param>
  3696. <param name="args">Arguments to be used in formatting the message</param>
  3697. </member>
  3698. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable)">
  3699. <summary>
  3700. Asserts that all items contained in collection are not equal to null.
  3701. </summary>
  3702. <param name="collection">IEnumerable containing objects to be considered</param>
  3703. </member>
  3704. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String)">
  3705. <summary>
  3706. Asserts that all items contained in collection are not equal to null.
  3707. </summary>
  3708. <param name="collection">IEnumerable containing objects to be considered</param>
  3709. <param name="message">The message that will be displayed on failure</param>
  3710. </member>
  3711. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String,System.Object[])">
  3712. <summary>
  3713. Asserts that all items contained in collection are not equal to null.
  3714. </summary>
  3715. <param name="collection">IEnumerable of objects to be considered</param>
  3716. <param name="message">The message that will be displayed on failure</param>
  3717. <param name="args">Arguments to be used in formatting the message</param>
  3718. </member>
  3719. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable)">
  3720. <summary>
  3721. Ensures that every object contained in collection exists within the collection
  3722. once and only once.
  3723. </summary>
  3724. <param name="collection">IEnumerable of objects to be considered</param>
  3725. </member>
  3726. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String)">
  3727. <summary>
  3728. Ensures that every object contained in collection exists within the collection
  3729. once and only once.
  3730. </summary>
  3731. <param name="collection">IEnumerable of objects to be considered</param>
  3732. <param name="message">The message that will be displayed on failure</param>
  3733. </member>
  3734. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String,System.Object[])">
  3735. <summary>
  3736. Ensures that every object contained in collection exists within the collection
  3737. once and only once.
  3738. </summary>
  3739. <param name="collection">IEnumerable of objects to be considered</param>
  3740. <param name="message">The message that will be displayed on failure</param>
  3741. <param name="args">Arguments to be used in formatting the message</param>
  3742. </member>
  3743. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  3744. <summary>
  3745. Asserts that expected and actual are exactly equal. The collections must have the same count,
  3746. and contain the exact same objects in the same order.
  3747. </summary>
  3748. <param name="expected">The first IEnumerable of objects to be considered</param>
  3749. <param name="actual">The second IEnumerable of objects to be considered</param>
  3750. </member>
  3751. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
  3752. <summary>
  3753. Asserts that expected and actual are exactly equal. The collections must have the same count,
  3754. and contain the exact same objects in the same order.
  3755. If comparer is not null then it will be used to compare the objects.
  3756. </summary>
  3757. <param name="expected">The first IEnumerable of objects to be considered</param>
  3758. <param name="actual">The second IEnumerable of objects to be considered</param>
  3759. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  3760. </member>
  3761. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  3762. <summary>
  3763. Asserts that expected and actual are exactly equal. The collections must have the same count,
  3764. and contain the exact same objects in the same order.
  3765. </summary>
  3766. <param name="expected">The first IEnumerable of objects to be considered</param>
  3767. <param name="actual">The second IEnumerable of objects to be considered</param>
  3768. <param name="message">The message that will be displayed on failure</param>
  3769. </member>
  3770. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
  3771. <summary>
  3772. Asserts that expected and actual are exactly equal. The collections must have the same count,
  3773. and contain the exact same objects in the same order.
  3774. If comparer is not null then it will be used to compare the objects.
  3775. </summary>
  3776. <param name="expected">The first IEnumerable of objects to be considered</param>
  3777. <param name="actual">The second IEnumerable of objects to be considered</param>
  3778. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  3779. <param name="message">The message that will be displayed on failure</param>
  3780. </member>
  3781. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  3782. <summary>
  3783. Asserts that expected and actual are exactly equal. The collections must have the same count,
  3784. and contain the exact same objects in the same order.
  3785. </summary>
  3786. <param name="expected">The first IEnumerable of objects to be considered</param>
  3787. <param name="actual">The second IEnumerable of objects to be considered</param>
  3788. <param name="message">The message that will be displayed on failure</param>
  3789. <param name="args">Arguments to be used in formatting the message</param>
  3790. </member>
  3791. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
  3792. <summary>
  3793. Asserts that expected and actual are exactly equal. The collections must have the same count,
  3794. and contain the exact same objects in the same order.
  3795. If comparer is not null then it will be used to compare the objects.
  3796. </summary>
  3797. <param name="expected">The first IEnumerable of objects to be considered</param>
  3798. <param name="actual">The second IEnumerable of objects to be considered</param>
  3799. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  3800. <param name="message">The message that will be displayed on failure</param>
  3801. <param name="args">Arguments to be used in formatting the message</param>
  3802. </member>
  3803. <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  3804. <summary>
  3805. Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
  3806. </summary>
  3807. <param name="expected">The first IEnumerable of objects to be considered</param>
  3808. <param name="actual">The second IEnumerable of objects to be considered</param>
  3809. </member>
  3810. <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  3811. <summary>
  3812. Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
  3813. </summary>
  3814. <param name="expected">The first IEnumerable of objects to be considered</param>
  3815. <param name="actual">The second IEnumerable of objects to be considered</param>
  3816. <param name="message">The message that will be displayed on failure</param>
  3817. </member>
  3818. <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  3819. <summary>
  3820. Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
  3821. </summary>
  3822. <param name="expected">The first IEnumerable of objects to be considered</param>
  3823. <param name="actual">The second IEnumerable of objects to be considered</param>
  3824. <param name="message">The message that will be displayed on failure</param>
  3825. <param name="args">Arguments to be used in formatting the message</param>
  3826. </member>
  3827. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  3828. <summary>
  3829. Asserts that expected and actual are not exactly equal.
  3830. </summary>
  3831. <param name="expected">The first IEnumerable of objects to be considered</param>
  3832. <param name="actual">The second IEnumerable of objects to be considered</param>
  3833. </member>
  3834. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
  3835. <summary>
  3836. Asserts that expected and actual are not exactly equal.
  3837. If comparer is not null then it will be used to compare the objects.
  3838. </summary>
  3839. <param name="expected">The first IEnumerable of objects to be considered</param>
  3840. <param name="actual">The second IEnumerable of objects to be considered</param>
  3841. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  3842. </member>
  3843. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  3844. <summary>
  3845. Asserts that expected and actual are not exactly equal.
  3846. </summary>
  3847. <param name="expected">The first IEnumerable of objects to be considered</param>
  3848. <param name="actual">The second IEnumerable of objects to be considered</param>
  3849. <param name="message">The message that will be displayed on failure</param>
  3850. </member>
  3851. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
  3852. <summary>
  3853. Asserts that expected and actual are not exactly equal.
  3854. If comparer is not null then it will be used to compare the objects.
  3855. </summary>
  3856. <param name="expected">The first IEnumerable of objects to be considered</param>
  3857. <param name="actual">The second IEnumerable of objects to be considered</param>
  3858. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  3859. <param name="message">The message that will be displayed on failure</param>
  3860. </member>
  3861. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  3862. <summary>
  3863. Asserts that expected and actual are not exactly equal.
  3864. </summary>
  3865. <param name="expected">The first IEnumerable of objects to be considered</param>
  3866. <param name="actual">The second IEnumerable of objects to be considered</param>
  3867. <param name="message">The message that will be displayed on failure</param>
  3868. <param name="args">Arguments to be used in formatting the message</param>
  3869. </member>
  3870. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
  3871. <summary>
  3872. Asserts that expected and actual are not exactly equal.
  3873. If comparer is not null then it will be used to compare the objects.
  3874. </summary>
  3875. <param name="expected">The first IEnumerable of objects to be considered</param>
  3876. <param name="actual">The second IEnumerable of objects to be considered</param>
  3877. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  3878. <param name="message">The message that will be displayed on failure</param>
  3879. <param name="args">Arguments to be used in formatting the message</param>
  3880. </member>
  3881. <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  3882. <summary>
  3883. Asserts that expected and actual are not equivalent.
  3884. </summary>
  3885. <param name="expected">The first IEnumerable of objects to be considered</param>
  3886. <param name="actual">The second IEnumerable of objects to be considered</param>
  3887. </member>
  3888. <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  3889. <summary>
  3890. Asserts that expected and actual are not equivalent.
  3891. </summary>
  3892. <param name="expected">The first IEnumerable of objects to be considered</param>
  3893. <param name="actual">The second IEnumerable of objects to be considered</param>
  3894. <param name="message">The message that will be displayed on failure</param>
  3895. </member>
  3896. <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  3897. <summary>
  3898. Asserts that expected and actual are not equivalent.
  3899. </summary>
  3900. <param name="expected">The first IEnumerable of objects to be considered</param>
  3901. <param name="actual">The second IEnumerable of objects to be considered</param>
  3902. <param name="message">The message that will be displayed on failure</param>
  3903. <param name="args">Arguments to be used in formatting the message</param>
  3904. </member>
  3905. <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object)">
  3906. <summary>
  3907. Asserts that collection contains actual as an item.
  3908. </summary>
  3909. <param name="collection">IEnumerable of objects to be considered</param>
  3910. <param name="actual">Object to be found within collection</param>
  3911. </member>
  3912. <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String)">
  3913. <summary>
  3914. Asserts that collection contains actual as an item.
  3915. </summary>
  3916. <param name="collection">IEnumerable of objects to be considered</param>
  3917. <param name="actual">Object to be found within collection</param>
  3918. <param name="message">The message that will be displayed on failure</param>
  3919. </member>
  3920. <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
  3921. <summary>
  3922. Asserts that collection contains actual as an item.
  3923. </summary>
  3924. <param name="collection">IEnumerable of objects to be considered</param>
  3925. <param name="actual">Object to be found within collection</param>
  3926. <param name="message">The message that will be displayed on failure</param>
  3927. <param name="args">Arguments to be used in formatting the message</param>
  3928. </member>
  3929. <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object)">
  3930. <summary>
  3931. Asserts that collection does not contain actual as an item.
  3932. </summary>
  3933. <param name="collection">IEnumerable of objects to be considered</param>
  3934. <param name="actual">Object that cannot exist within collection</param>
  3935. </member>
  3936. <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String)">
  3937. <summary>
  3938. Asserts that collection does not contain actual as an item.
  3939. </summary>
  3940. <param name="collection">IEnumerable of objects to be considered</param>
  3941. <param name="actual">Object that cannot exist within collection</param>
  3942. <param name="message">The message that will be displayed on failure</param>
  3943. </member>
  3944. <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
  3945. <summary>
  3946. Asserts that collection does not contain actual as an item.
  3947. </summary>
  3948. <param name="collection">IEnumerable of objects to be considered</param>
  3949. <param name="actual">Object that cannot exist within collection</param>
  3950. <param name="message">The message that will be displayed on failure</param>
  3951. <param name="args">Arguments to be used in formatting the message</param>
  3952. </member>
  3953. <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  3954. <summary>
  3955. Asserts that superset is not a subject of subset.
  3956. </summary>
  3957. <param name="subset">The IEnumerable superset to be considered</param>
  3958. <param name="superset">The IEnumerable subset to be considered</param>
  3959. </member>
  3960. <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  3961. <summary>
  3962. Asserts that superset is not a subject of subset.
  3963. </summary>
  3964. <param name="subset">The IEnumerable superset to be considered</param>
  3965. <param name="superset">The IEnumerable subset to be considered</param>
  3966. <param name="message">The message that will be displayed on failure</param>
  3967. </member>
  3968. <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  3969. <summary>
  3970. Asserts that superset is not a subject of subset.
  3971. </summary>
  3972. <param name="subset">The IEnumerable superset to be considered</param>
  3973. <param name="superset">The IEnumerable subset to be considered</param>
  3974. <param name="message">The message that will be displayed on failure</param>
  3975. <param name="args">Arguments to be used in formatting the message</param>
  3976. </member>
  3977. <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  3978. <summary>
  3979. Asserts that superset is a subset of subset.
  3980. </summary>
  3981. <param name="subset">The IEnumerable superset to be considered</param>
  3982. <param name="superset">The IEnumerable subset to be considered</param>
  3983. </member>
  3984. <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  3985. <summary>
  3986. Asserts that superset is a subset of subset.
  3987. </summary>
  3988. <param name="subset">The IEnumerable superset to be considered</param>
  3989. <param name="superset">The IEnumerable subset to be considered</param>
  3990. <param name="message">The message that will be displayed on failure</param>
  3991. </member>
  3992. <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  3993. <summary>
  3994. Asserts that superset is a subset of subset.
  3995. </summary>
  3996. <param name="subset">The IEnumerable superset to be considered</param>
  3997. <param name="superset">The IEnumerable subset to be considered</param>
  3998. <param name="message">The message that will be displayed on failure</param>
  3999. <param name="args">Arguments to be used in formatting the message</param>
  4000. </member>
  4001. <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
  4002. <summary>
  4003. Assert that an array, list or other collection is empty
  4004. </summary>
  4005. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4006. <param name="message">The message to be displayed on failure</param>
  4007. <param name="args">Arguments to be used in formatting the message</param>
  4008. </member>
  4009. <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String)">
  4010. <summary>
  4011. Assert that an array, list or other collection is empty
  4012. </summary>
  4013. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4014. <param name="message">The message to be displayed on failure</param>
  4015. </member>
  4016. <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable)">
  4017. <summary>
  4018. Assert that an array,list or other collection is empty
  4019. </summary>
  4020. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4021. </member>
  4022. <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
  4023. <summary>
  4024. Assert that an array, list or other collection is empty
  4025. </summary>
  4026. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4027. <param name="message">The message to be displayed on failure</param>
  4028. <param name="args">Arguments to be used in formatting the message</param>
  4029. </member>
  4030. <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String)">
  4031. <summary>
  4032. Assert that an array, list or other collection is empty
  4033. </summary>
  4034. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4035. <param name="message">The message to be displayed on failure</param>
  4036. </member>
  4037. <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable)">
  4038. <summary>
  4039. Assert that an array,list or other collection is empty
  4040. </summary>
  4041. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  4042. </member>
  4043. <member name="T:NUnit.Framework.AbstractAsserter">
  4044. <summary>
  4045. NOTE: The use of asserters for extending NUnit has
  4046. now been replaced by the use of constraints. This
  4047. class is marked obsolete.
  4048. AbstractAsserter is the base class for all asserters.
  4049. Asserters encapsulate a condition test and generation
  4050. of an AssertionException with a tailored message. They
  4051. are used by the Assert class as helper objects.
  4052. User-defined asserters may be passed to the
  4053. Assert.DoAssert method in order to implement
  4054. extended asserts.
  4055. </summary>
  4056. </member>
  4057. <member name="T:NUnit.Framework.IAsserter">
  4058. <summary>
  4059. NOTE: The use of asserters for extending NUnit has
  4060. now been replaced by the use of constraints. This
  4061. interface is marked obsolete.
  4062. The interface implemented by an asserter. Asserters
  4063. encapsulate a condition test and generation of an
  4064. AssertionException with a tailored message. They
  4065. are used by the Assert class as helper objects.
  4066. User-defined asserters may be passed to the
  4067. Assert.DoAssert method in order to implement
  4068. extended asserts.
  4069. </summary>
  4070. </member>
  4071. <member name="M:NUnit.Framework.IAsserter.Test">
  4072. <summary>
  4073. Test the condition for the assertion.
  4074. </summary>
  4075. <returns>True if the test succeeds</returns>
  4076. </member>
  4077. <member name="P:NUnit.Framework.IAsserter.Message">
  4078. <summary>
  4079. Return the message giving the failure reason.
  4080. The return value is unspecified if no failure
  4081. has occured.
  4082. </summary>
  4083. </member>
  4084. <member name="F:NUnit.Framework.AbstractAsserter.userMessage">
  4085. <summary>
  4086. The user-defined message for this asserter.
  4087. </summary>
  4088. </member>
  4089. <member name="F:NUnit.Framework.AbstractAsserter.args">
  4090. <summary>
  4091. Arguments to use in formatting the user-defined message.
  4092. </summary>
  4093. </member>
  4094. <member name="F:NUnit.Framework.AbstractAsserter.failureMessage">
  4095. <summary>
  4096. Our failure message object, initialized as needed
  4097. </summary>
  4098. </member>
  4099. <member name="M:NUnit.Framework.AbstractAsserter.#ctor(System.String,System.Object[])">
  4100. <summary>
  4101. Constructs an AbstractAsserter
  4102. </summary>
  4103. <param name="message">The message issued upon failure</param>
  4104. <param name="args">Arguments to be used in formatting the message</param>
  4105. </member>
  4106. <member name="M:NUnit.Framework.AbstractAsserter.Test">
  4107. <summary>
  4108. Test method to be implemented by derived types.
  4109. Default always succeeds.
  4110. </summary>
  4111. <returns>True if the test succeeds</returns>
  4112. </member>
  4113. <member name="P:NUnit.Framework.AbstractAsserter.FailureMessage">
  4114. <summary>
  4115. AssertionFailureMessage object used internally
  4116. </summary>
  4117. </member>
  4118. <member name="P:NUnit.Framework.AbstractAsserter.Message">
  4119. <summary>
  4120. Message related to a failure. If no failure has
  4121. occured, the result is unspecified.
  4122. </summary>
  4123. </member>
  4124. <member name="T:NUnit.Framework.Assertion">
  4125. <summary>
  4126. The Assertion class is obsolete and has been
  4127. replaced by the Assert class.
  4128. </summary>
  4129. </member>
  4130. <member name="M:NUnit.Framework.Assertion.Assert(System.String,System.Boolean)">
  4131. <summary>
  4132. Asserts that a condition is true. If it isn't it throws
  4133. an <see cref="T:NUnit.Framework.AssertionException"/>.
  4134. </summary>
  4135. <param name="message">The message to display is the condition
  4136. is false</param>
  4137. <param name="condition">The evaluated condition</param>
  4138. </member>
  4139. <member name="M:NUnit.Framework.Assertion.Assert(System.Boolean)">
  4140. <summary>
  4141. Asserts that a condition is true. If it isn't it throws
  4142. an <see cref="T:NUnit.Framework.AssertionException"/>.
  4143. </summary>
  4144. <param name="condition">The evaluated condition</param>
  4145. </member>
  4146. <member name="M:NUnit.Framework.Assertion.AssertEquals(System.Double,System.Double,System.Double)">
  4147. <summary>
  4148. /// Asserts that two doubles are equal concerning a delta. If the
  4149. expected value is infinity then the delta value is ignored.
  4150. </summary>
  4151. <param name="expected">The expected value</param>
  4152. <param name="actual">The actual value</param>
  4153. <param name="delta">The maximum acceptable difference between the
  4154. the expected and the actual</param>
  4155. </member>
  4156. <member name="M:NUnit.Framework.Assertion.AssertEquals(System.Single,System.Single,System.Single)">
  4157. <summary>
  4158. /// Asserts that two singles are equal concerning a delta. If the
  4159. expected value is infinity then the delta value is ignored.
  4160. </summary>
  4161. <param name="expected">The expected value</param>
  4162. <param name="actual">The actual value</param>
  4163. <param name="delta">The maximum acceptable difference between the
  4164. the expected and the actual</param>
  4165. </member>
  4166. <member name="M:NUnit.Framework.Assertion.AssertEquals(System.Object,System.Object)">
  4167. <summary>Asserts that two objects are equal. If they are not
  4168. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.</summary>
  4169. </member>
  4170. <member name="M:NUnit.Framework.Assertion.AssertEquals(System.Int32,System.Int32)">
  4171. <summary>Asserts that two ints are equal. If they are not
  4172. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.</summary>
  4173. </member>
  4174. <member name="M:NUnit.Framework.Assertion.AssertEquals(System.String,System.Int32,System.Int32)">
  4175. <summary>Asserts that two ints are equal. If they are not
  4176. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.</summary>
  4177. </member>
  4178. <member name="M:NUnit.Framework.Assertion.AssertEquals(System.String,System.Double,System.Double,System.Double)">
  4179. <summary>Asserts that two doubles are equal concerning a delta.
  4180. If the expected value is infinity then the delta value is ignored.
  4181. </summary>
  4182. </member>
  4183. <member name="M:NUnit.Framework.Assertion.AssertEquals(System.String,System.Single,System.Single,System.Single)">
  4184. <summary>Asserts that two floats are equal concerning a delta.
  4185. If the expected value is infinity then the delta value is ignored.
  4186. </summary>
  4187. </member>
  4188. <member name="M:NUnit.Framework.Assertion.AssertEquals(System.String,System.Object,System.Object)">
  4189. <summary>
  4190. Asserts that two objects are equal. Two objects are considered
  4191. equal if both are null, or if both have the same value. Numeric
  4192. types are compared via string comparision on their contents to
  4193. avoid problems comparing values between different types. All
  4194. non-numeric types are compared by using the <c>Equals</c> method.
  4195. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4196. </summary>
  4197. </member>
  4198. <member name="M:NUnit.Framework.Assertion.AssertNotNull(System.Object)">
  4199. <summary>Asserts that an object isn't null.</summary>
  4200. </member>
  4201. <member name="M:NUnit.Framework.Assertion.AssertNotNull(System.String,System.Object)">
  4202. <summary>Asserts that an object isn't null.</summary>
  4203. </member>
  4204. <member name="M:NUnit.Framework.Assertion.AssertNull(System.Object)">
  4205. <summary>Asserts that an object is null.</summary>
  4206. </member>
  4207. <member name="M:NUnit.Framework.Assertion.AssertNull(System.String,System.Object)">
  4208. <summary>Asserts that an object is null.</summary>
  4209. </member>
  4210. <member name="M:NUnit.Framework.Assertion.AssertSame(System.Object,System.Object)">
  4211. <summary>Asserts that two objects refer to the same object. If they
  4212. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4213. </summary>
  4214. </member>
  4215. <member name="M:NUnit.Framework.Assertion.AssertSame(System.String,System.Object,System.Object)">
  4216. <summary>Asserts that two objects refer to the same object.
  4217. If they are not an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  4218. </summary>
  4219. </member>
  4220. <member name="M:NUnit.Framework.Assertion.Fail">
  4221. <summary>Fails a test with no message.</summary>
  4222. </member>
  4223. <member name="M:NUnit.Framework.Assertion.Fail(System.String)">
  4224. <summary>Fails a test with the given message.</summary>
  4225. </member>
  4226. <member name="T:NUnit.Framework.AssertionException">
  4227. <summary>
  4228. Thrown when an assertion failed.
  4229. </summary>
  4230. </member>
  4231. <member name="M:NUnit.Framework.AssertionException.#ctor(System.String)">
  4232. <param name="message">The error message that explains
  4233. the reason for the exception</param>
  4234. </member>
  4235. <member name="M:NUnit.Framework.AssertionException.#ctor(System.String,System.Exception)">
  4236. <param name="message">The error message that explains
  4237. the reason for the exception</param>
  4238. <param name="inner">The exception that caused the
  4239. current exception</param>
  4240. </member>
  4241. <member name="M:NUnit.Framework.AssertionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  4242. <summary>
  4243. Serialization Constructor
  4244. </summary>
  4245. </member>
  4246. <member name="T:NUnit.Framework.AssertionFailureMessage">
  4247. <summary>
  4248. AssertionFailureMessage encapsulates a failure message
  4249. issued as a result of an Assert failure.
  4250. </summary>
  4251. </member>
  4252. <member name="F:NUnit.Framework.AssertionFailureMessage.PreClipLength">
  4253. <summary>
  4254. Number of characters before a highlighted position before
  4255. clipping will occur. Clipped text is replaced with an
  4256. elipsis "..."
  4257. </summary>
  4258. </member>
  4259. <member name="F:NUnit.Framework.AssertionFailureMessage.PostClipLength">
  4260. <summary>
  4261. Number of characters after a highlighted position before
  4262. clipping will occur. Clipped text is replaced with an
  4263. elipsis "..."
  4264. </summary>
  4265. </member>
  4266. <member name="F:NUnit.Framework.AssertionFailureMessage.expectedPrefix">
  4267. <summary>
  4268. Prefix used to start an expected value line.
  4269. Must be same length as actualPrefix.
  4270. </summary>
  4271. </member>
  4272. <member name="F:NUnit.Framework.AssertionFailureMessage.actualPrefix">
  4273. <summary>
  4274. Prefix used to start an actual value line.
  4275. Must be same length as expectedPrefix.
  4276. </summary>
  4277. </member>
  4278. <member name="M:NUnit.Framework.AssertionFailureMessage.#ctor(System.String,System.Object[])">
  4279. <summary>
  4280. Construct an AssertionFailureMessage with a message
  4281. and optional arguments.
  4282. </summary>
  4283. <param name="message"></param>
  4284. <param name="args"></param>
  4285. </member>
  4286. <member name="M:NUnit.Framework.AssertionFailureMessage.#ctor">
  4287. <summary>
  4288. Construct an empty AssertionFailureMessage
  4289. </summary>
  4290. </member>
  4291. <member name="M:NUnit.Framework.AssertionFailureMessage.WriteExpectedLine(System.String)">
  4292. <summary>
  4293. Add an expected value line to the message containing
  4294. the text provided as an argument.
  4295. </summary>
  4296. <param name="text">Text describing what was expected.</param>
  4297. </member>
  4298. <member name="M:NUnit.Framework.AssertionFailureMessage.WriteActualLine(System.String)">
  4299. <summary>
  4300. Add an actual value line to the message containing
  4301. the text provided as an argument.
  4302. </summary>
  4303. <param name="text">Text describing the actual value.</param>
  4304. </member>
  4305. <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayExpectedValue(System.Object)">
  4306. <summary>
  4307. Add an expected value line to the message containing
  4308. a string representation of the object provided.
  4309. </summary>
  4310. <param name="expected">An object representing the expected value</param>
  4311. </member>
  4312. <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayExpectedValue(System.Double,System.Double)">
  4313. <summary>
  4314. Add an expected value line to the message containing a double
  4315. and the tolerance used in making the comparison.
  4316. </summary>
  4317. <param name="expected">The expected value</param>
  4318. <param name="tolerance">The tolerance specified in the Assert</param>
  4319. </member>
  4320. <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayActualValue(System.Object)">
  4321. <summary>
  4322. Add an actual value line to the message containing
  4323. a string representation of the object provided.
  4324. </summary>
  4325. <param name="actual">An object representing what was actually found</param>
  4326. </member>
  4327. <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayExpectedAndActual(System.Object,System.Object)">
  4328. <summary>
  4329. Display two lines that communicate the expected value, and the actual value
  4330. </summary>
  4331. <param name="expected">The expected value</param>
  4332. <param name="actual">The actual value found</param>
  4333. </member>
  4334. <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayExpectedAndActual(System.Double,System.Double,System.Double)">
  4335. <summary>
  4336. Display two lines that communicate the expected value, the actual value and
  4337. the tolerance used in comparing two doubles.
  4338. </summary>
  4339. <param name="expected">The expected value</param>
  4340. <param name="actual">The actual value found</param>
  4341. <param name="tolerance">The tolerance specified in the Assert</param>
  4342. </member>
  4343. <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayPositionMarker(System.Int32)">
  4344. <summary>
  4345. Draws a marker under the expected/actual strings that highlights
  4346. where in the string a mismatch occurred.
  4347. </summary>
  4348. <param name="iPosition">The position of the mismatch</param>
  4349. </member>
  4350. <member name="M:NUnit.Framework.AssertionFailureMessage.BuildStringLengthReport(System.String,System.String)">
  4351. <summary>
  4352. Reports whether the string lengths are the same or different, and
  4353. what the string lengths are.
  4354. </summary>
  4355. <param name="sExpected">The expected string</param>
  4356. <param name="sActual">The actual string value</param>
  4357. </member>
  4358. <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayDifferences(System.Object,System.Object,System.Boolean)">
  4359. <summary>
  4360. Called to create additional message lines when two objects have been
  4361. found to be unequal. If the inputs are strings, a special message is
  4362. rendered that can help track down where the strings are different,
  4363. based on differences in length, or differences in content.
  4364. If the inputs are not strings, the ToString method of the objects
  4365. is used to show what is different about them.
  4366. </summary>
  4367. <param name="expected">The expected value</param>
  4368. <param name="actual">The actual value</param>
  4369. <param name="caseInsensitive">True if a case-insensitive comparison is being performed</param>
  4370. </member>
  4371. <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayDifferencesWithTolerance(System.Double,System.Double,System.Double)">
  4372. <summary>
  4373. Called to create additional message lines when two doubles have been
  4374. found to be unequal, within the specified tolerance.
  4375. </summary>
  4376. </member>
  4377. <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayStringDifferences(System.String,System.String,System.Boolean)">
  4378. <summary>
  4379. Constructs a message that can be displayed when the content of two
  4380. strings are different, but the string lengths are the same. The
  4381. message will clip the strings to a reasonable length, centered
  4382. around the first position where they are mismatched, and draw
  4383. a line marking the position of the difference to make comparison
  4384. quicker.
  4385. </summary>
  4386. <param name="sExpected">The expected string value</param>
  4387. <param name="sActual">The actual string value</param>
  4388. <param name="caseInsensitive">True if a case-insensitive comparison is being performed</param>
  4389. </member>
  4390. <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayArrayDifferences(System.Array,System.Array,System.Int32)">
  4391. <summary>
  4392. Display a standard message showing the differences found between
  4393. two arrays that were expected to be equal.
  4394. </summary>
  4395. <param name="expected">The expected array value</param>
  4396. <param name="actual">The actual array value</param>
  4397. <param name="index">The index at which a difference was found</param>
  4398. </member>
  4399. <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayCollectionDifferences(System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
  4400. <summary>
  4401. Display a standard message showing the differences found between
  4402. two collections that were expected to be equal.
  4403. </summary>
  4404. <param name="expected">The expected collection value</param>
  4405. <param name="actual">The actual collection value</param>
  4406. <param name="index">The index at which a difference was found</param>
  4407. </member>
  4408. <member name="M:NUnit.Framework.AssertionFailureMessage.GetArrayIndicesFromCollectionIndex(System.Collections.ICollection,System.Int32)">
  4409. <summary>
  4410. Get an array of indices representing the point in a collection or
  4411. array corresponding to a single int index into the collection.
  4412. </summary>
  4413. <param name="collection">The collection to which the indices apply</param>
  4414. <param name="index">Index in the collection</param>
  4415. <returns>Array of indices</returns>
  4416. </member>
  4417. <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayListElements(System.String,System.Collections.IList,System.Int32,System.Int32)">
  4418. <summary>
  4419. Displays elements from a list on a line
  4420. </summary>
  4421. <param name="label">Text to prefix the line with</param>
  4422. <param name="list">The list of items to display</param>
  4423. <param name="index">The index in the list of the first element to display</param>
  4424. <param name="max">The maximum number of elements to display</param>
  4425. </member>
  4426. <member name="M:NUnit.Framework.AssertionFailureMessage.FormatObjectForDisplay(System.Object)">
  4427. <summary>
  4428. Formats an object for display in a message line
  4429. </summary>
  4430. <param name="obj">The object to be displayed</param>
  4431. <returns></returns>
  4432. </member>
  4433. <member name="M:NUnit.Framework.AssertionFailureMessage.InputsAreStrings(System.Object,System.Object)">
  4434. <summary>
  4435. Tests two objects to determine if they are strings.
  4436. </summary>
  4437. <param name="expected"></param>
  4438. <param name="actual"></param>
  4439. <returns></returns>
  4440. </member>
  4441. <member name="M:NUnit.Framework.AssertionFailureMessage.ClipAroundPosition(System.String,System.Int32)">
  4442. <summary>
  4443. Renders up to M characters before, and up to N characters after
  4444. the specified index position. If leading or trailing text is
  4445. clipped, and elipses "..." is added where the missing text would
  4446. be.
  4447. Clips strings to limit previous or post newline characters,
  4448. since these mess up the comparison
  4449. </summary>
  4450. <param name="sString"></param>
  4451. <param name="iPosition"></param>
  4452. <returns></returns>
  4453. </member>
  4454. <member name="M:NUnit.Framework.AssertionFailureMessage.FindMismatchPosition(System.String,System.String,System.Int32)">
  4455. <summary>
  4456. Shows the position two strings start to differ. Comparison
  4457. starts at the start index.
  4458. </summary>
  4459. <param name="sExpected"></param>
  4460. <param name="sActual"></param>
  4461. <param name="iStart"></param>
  4462. <returns>-1 if no mismatch found, or the index where mismatch found</returns>
  4463. </member>
  4464. <member name="M:NUnit.Framework.AssertionFailureMessage.ConvertWhitespace(System.String)">
  4465. <summary>
  4466. Turns CR, LF, or TAB into visual indicator to preserve visual marker
  4467. position. This is done by replacing the '\r' into '\\' and 'r'
  4468. characters, and the '\n' into '\\' and 'n' characters, and '\t' into
  4469. '\\' and 't' characters.
  4470. Thus the single character becomes two characters for display.
  4471. </summary>
  4472. <param name="sInput"></param>
  4473. <returns></returns>
  4474. </member>
  4475. <member name="T:NUnit.Framework.CategoryAttribute">
  4476. <summary>
  4477. Attribute used to apply a category to a test
  4478. </summary>
  4479. </member>
  4480. <member name="F:NUnit.Framework.CategoryAttribute.categoryName">
  4481. <summary>
  4482. The name of the category
  4483. </summary>
  4484. </member>
  4485. <member name="M:NUnit.Framework.CategoryAttribute.#ctor(System.String)">
  4486. <summary>
  4487. Construct attribute for a given category
  4488. </summary>
  4489. <param name="name">The name of the category</param>
  4490. </member>
  4491. <member name="M:NUnit.Framework.CategoryAttribute.#ctor">
  4492. <summary>
  4493. Protected constructor uses the Type name as the name
  4494. of the category.
  4495. </summary>
  4496. </member>
  4497. <member name="P:NUnit.Framework.CategoryAttribute.Name">
  4498. <summary>
  4499. The name of the category
  4500. </summary>
  4501. </member>
  4502. <member name="T:NUnit.Framework.IncludeExcludeAttribute">
  4503. <summary>
  4504. Abstract base for Attributes that are used to include tests
  4505. in the test run based on environmental settings.
  4506. </summary>
  4507. </member>
  4508. <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor">
  4509. <summary>
  4510. Constructor with no included items specified, for use
  4511. with named property syntax.
  4512. </summary>
  4513. </member>
  4514. <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor(System.String)">
  4515. <summary>
  4516. Constructor taking one or more included items
  4517. </summary>
  4518. <param name="include">Comma-delimited list of included items</param>
  4519. </member>
  4520. <member name="P:NUnit.Framework.IncludeExcludeAttribute.Include">
  4521. <summary>
  4522. Name of the item that is needed in order for
  4523. a test to run. Multiple itemss may be given,
  4524. separated by a comma.
  4525. </summary>
  4526. </member>
  4527. <member name="P:NUnit.Framework.IncludeExcludeAttribute.Exclude">
  4528. <summary>
  4529. Name of the item to be excluded. Multiple items
  4530. may be given, separated by a comma.
  4531. </summary>
  4532. </member>
  4533. <member name="P:NUnit.Framework.IncludeExcludeAttribute.Reason">
  4534. <summary>
  4535. The reason for including or excluding the test
  4536. </summary>
  4537. </member>
  4538. <member name="T:NUnit.Framework.PlatformAttribute">
  4539. <summary>
  4540. PlatformAttribute is used to mark a test fixture or an
  4541. individual method as applying to a particular platform only.
  4542. </summary>
  4543. </member>
  4544. <member name="M:NUnit.Framework.PlatformAttribute.#ctor">
  4545. <summary>
  4546. Constructor with no platforms specified, for use
  4547. with named property syntax.
  4548. </summary>
  4549. </member>
  4550. <member name="M:NUnit.Framework.PlatformAttribute.#ctor(System.String)">
  4551. <summary>
  4552. Constructor taking one or more platforms
  4553. </summary>
  4554. <param name="platforms">Comma-deliminted list of platforms</param>
  4555. </member>
  4556. <member name="T:NUnit.Framework.CultureAttribute">
  4557. <summary>
  4558. CultureAttribute is used to mark a test fixture or an
  4559. individual method as applying to a particular Culture only.
  4560. </summary>
  4561. </member>
  4562. <member name="M:NUnit.Framework.CultureAttribute.#ctor">
  4563. <summary>
  4564. Constructor with no cultures specified, for use
  4565. with named property syntax.
  4566. </summary>
  4567. </member>
  4568. <member name="M:NUnit.Framework.CultureAttribute.#ctor(System.String)">
  4569. <summary>
  4570. Constructor taking one or more cultures
  4571. </summary>
  4572. <param name="cultures">Comma-deliminted list of cultures</param>
  4573. </member>
  4574. <member name="T:NUnit.Framework.MessageWriter">
  4575. <summary>
  4576. MessageWriter is the abstract base for classes that write
  4577. constraint descriptions and messages in some form. The
  4578. class has separate methods for writing various components
  4579. of a message, allowing implementations to tailor the
  4580. presentation as needed.
  4581. </summary>
  4582. </member>
  4583. <member name="M:NUnit.Framework.MessageWriter.#ctor">
  4584. <summary>
  4585. Construct a MessageWriter given a culture
  4586. </summary>
  4587. </member>
  4588. <member name="M:NUnit.Framework.MessageWriter.WriteMessageLine(System.String,System.Object[])">
  4589. <summary>
  4590. Method to write single line message with optional args, usually
  4591. written to precede the general failure message.
  4592. </summary>
  4593. <param name="message">The message to be written</param>
  4594. <param name="args">Any arguments used in formatting the message</param>
  4595. </member>
  4596. <member name="M:NUnit.Framework.MessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
  4597. <summary>
  4598. Method to write single line message with optional args, usually
  4599. written to precede the general failure message, at a givel
  4600. indentation level.
  4601. </summary>
  4602. <param name="level">The indentation level of the message</param>
  4603. <param name="message">The message to be written</param>
  4604. <param name="args">Any arguments used in formatting the message</param>
  4605. </member>
  4606. <member name="M:NUnit.Framework.MessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
  4607. <summary>
  4608. Display Expected and Actual lines for a constraint. This
  4609. is called by MessageWriter's default implementation of
  4610. WriteMessageTo and provides the generic two-line display.
  4611. </summary>
  4612. <param name="constraint">The constraint that failed</param>
  4613. </member>
  4614. <member name="M:NUnit.Framework.MessageWriter.DisplayDifferences(System.Object,System.Object)">
  4615. <summary>
  4616. Display Expected and Actual lines for given values. This
  4617. method may be called by constraints that need more control over
  4618. the display of actual and expected values than is provided
  4619. by the default implementation.
  4620. </summary>
  4621. <param name="expected">The expected value</param>
  4622. <param name="actual">The actual value causing the failure</param>
  4623. </member>
  4624. <member name="M:NUnit.Framework.MessageWriter.DisplayDifferences(System.Object,System.Object,System.Object)">
  4625. <summary>
  4626. Display Expected and Actual lines for given values, including
  4627. a tolerance value on the Expected line.
  4628. </summary>
  4629. <param name="expected">The expected value</param>
  4630. <param name="actual">The actual value causing the failure</param>
  4631. <param name="tolerance">The tolerance within which the test was made</param>
  4632. </member>
  4633. <member name="M:NUnit.Framework.MessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
  4634. <summary>
  4635. Display the expected and actual string values on separate lines.
  4636. If the mismatch parameter is >=0, an additional line is displayed
  4637. line containing a caret that points to the mismatch point.
  4638. </summary>
  4639. <param name="expected">The expected string value</param>
  4640. <param name="actual">The actual string value</param>
  4641. <param name="mismatch">The point at which the strings don't match or -1</param>
  4642. <param name="ignoreCase">If true, case is ignored in locating the point where the strings differ</param>
  4643. <param name="clipping">If true, the strings should be clipped to fit the line</param>
  4644. </member>
  4645. <member name="M:NUnit.Framework.MessageWriter.WriteConnector(System.String)">
  4646. <summary>
  4647. Writes the text for a connector.
  4648. </summary>
  4649. <param name="connector">The connector.</param>
  4650. </member>
  4651. <member name="M:NUnit.Framework.MessageWriter.WritePredicate(System.String)">
  4652. <summary>
  4653. Writes the text for a predicate.
  4654. </summary>
  4655. <param name="predicate">The predicate.</param>
  4656. </member>
  4657. <member name="M:NUnit.Framework.MessageWriter.WriteExpectedValue(System.Object)">
  4658. <summary>
  4659. Writes the text for an expected value.
  4660. </summary>
  4661. <param name="expected">The expected value.</param>
  4662. </member>
  4663. <member name="M:NUnit.Framework.MessageWriter.WriteModifier(System.String)">
  4664. <summary>
  4665. Writes the text for a modifier
  4666. </summary>
  4667. <param name="modifier">The modifier.</param>
  4668. </member>
  4669. <member name="M:NUnit.Framework.MessageWriter.WriteActualValue(System.Object)">
  4670. <summary>
  4671. Writes the text for an actual value.
  4672. </summary>
  4673. <param name="actual">The actual value.</param>
  4674. </member>
  4675. <member name="M:NUnit.Framework.MessageWriter.WriteValue(System.Object)">
  4676. <summary>
  4677. Writes the text for a generalized value.
  4678. </summary>
  4679. <param name="val">The value.</param>
  4680. </member>
  4681. <member name="M:NUnit.Framework.MessageWriter.WriteCollectionElements(System.Collections.ICollection,System.Int32,System.Int32)">
  4682. <summary>
  4683. Writes the text for a collection value,
  4684. starting at a particular point, to a max length
  4685. </summary>
  4686. <param name="collection">The collection containing elements to write.</param>
  4687. <param name="start">The starting point of the elements to write</param>
  4688. <param name="max">The maximum number of elements to write</param>
  4689. </member>
  4690. <member name="P:NUnit.Framework.MessageWriter.MaxLineLength">
  4691. <summary>
  4692. Abstract method to get the max line length
  4693. </summary>
  4694. </member>
  4695. <member name="T:NUnit.Framework.MsgUtils">
  4696. <summary>
  4697. Static methods used in creating messages
  4698. </summary>
  4699. </member>
  4700. <member name="F:NUnit.Framework.MsgUtils.ELLIPSIS">
  4701. <summary>
  4702. Static string used when strings are clipped
  4703. </summary>
  4704. </member>
  4705. <member name="M:NUnit.Framework.MsgUtils.GetTypeRepresentation(System.Object)">
  4706. <summary>
  4707. Returns the representation of a type as used in NUnitLite.
  4708. This is the same as Type.ToString() except for arrays,
  4709. which are displayed with their declared sizes.
  4710. </summary>
  4711. <param name="obj"></param>
  4712. <returns></returns>
  4713. </member>
  4714. <member name="M:NUnit.Framework.MsgUtils.ConvertWhitespace(System.String)">
  4715. <summary>
  4716. Converts any control characters in a string
  4717. to their escaped representation.
  4718. </summary>
  4719. <param name="s">The string to be converted</param>
  4720. <returns>The converted string</returns>
  4721. </member>
  4722. <member name="M:NUnit.Framework.MsgUtils.GetArrayIndicesAsString(System.Int32[])">
  4723. <summary>
  4724. Return the a string representation for a set of indices into an array
  4725. </summary>
  4726. <param name="indices">Array of indices for which a string is needed</param>
  4727. </member>
  4728. <member name="M:NUnit.Framework.MsgUtils.GetArrayIndicesFromCollectionIndex(System.Collections.ICollection,System.Int32)">
  4729. <summary>
  4730. Get an array of indices representing the point in a collection or
  4731. array corresponding to a single int index into the collection.
  4732. </summary>
  4733. <param name="collection">The collection to which the indices apply</param>
  4734. <param name="index">Index in the collection</param>
  4735. <returns>Array of indices</returns>
  4736. </member>
  4737. <member name="M:NUnit.Framework.MsgUtils.ClipString(System.String,System.Int32,System.Int32)">
  4738. <summary>
  4739. Clip a string to a given length, starting at a particular offset, returning the clipped
  4740. string with ellipses representing the removed parts
  4741. </summary>
  4742. <param name="s">The string to be clipped</param>
  4743. <param name="maxStringLength">The maximum permitted length of the result string</param>
  4744. <param name="clipStart">The point at which to start clipping</param>
  4745. <returns>The clipped string</returns>
  4746. </member>
  4747. <member name="M:NUnit.Framework.MsgUtils.ClipExpectedAndActual(System.String@,System.String@,System.Int32,System.Int32)">
  4748. <summary>
  4749. Clip the expected and actual strings in a coordinated fashion,
  4750. so that they may be displayed together.
  4751. </summary>
  4752. <param name="expected"></param>
  4753. <param name="actual"></param>
  4754. <param name="maxDisplayLength"></param>
  4755. <param name="mismatch"></param>
  4756. </member>
  4757. <member name="M:NUnit.Framework.MsgUtils.FindMismatchPosition(System.String,System.String,System.Int32,System.Boolean)">
  4758. <summary>
  4759. Shows the position two strings start to differ. Comparison
  4760. starts at the start index.
  4761. </summary>
  4762. <param name="expected">The expected string</param>
  4763. <param name="actual">The actual string</param>
  4764. <param name="istart">The index in the strings at which comparison should start</param>
  4765. <param name="ignoreCase">Boolean indicating whether case should be ignored</param>
  4766. <returns>-1 if no mismatch found, or the index where mismatch found</returns>
  4767. </member>
  4768. <member name="T:NUnit.Framework.SetCultureAttribute">
  4769. <summary>
  4770. Summary description for SetCultureAttribute.
  4771. </summary>
  4772. </member>
  4773. <member name="T:NUnit.Framework.PropertyAttribute">
  4774. <summary>
  4775. PropertyAttribute is used to attach information to a test as a name/value pair..
  4776. </summary>
  4777. </member>
  4778. <member name="F:NUnit.Framework.PropertyAttribute.propertyName">
  4779. <summary>
  4780. The property name
  4781. </summary>
  4782. </member>
  4783. <member name="F:NUnit.Framework.PropertyAttribute.propertyValue">
  4784. <summary>
  4785. The property value
  4786. </summary>
  4787. </member>
  4788. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Object)">
  4789. <summary>
  4790. Construct a PropertyAttribute with a name and value
  4791. </summary>
  4792. <param name="propertyName">The name of the property</param>
  4793. <param name="propertyValue">The property value</param>
  4794. </member>
  4795. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.Object)">
  4796. <summary>
  4797. Constructor for use by inherited classes that use the
  4798. name of the type as the property name.
  4799. </summary>
  4800. </member>
  4801. <member name="P:NUnit.Framework.PropertyAttribute.Name">
  4802. <summary>
  4803. Gets the property name
  4804. </summary>
  4805. </member>
  4806. <member name="P:NUnit.Framework.PropertyAttribute.Value">
  4807. <summary>
  4808. Gets the property value
  4809. </summary>
  4810. </member>
  4811. <member name="M:NUnit.Framework.SetCultureAttribute.#ctor(System.String)">
  4812. <summary>
  4813. Construct given the name of a culture
  4814. </summary>
  4815. <param name="culture"></param>
  4816. </member>
  4817. <member name="T:NUnit.Framework.TextMessageWriter">
  4818. <summary>
  4819. TextMessageWriter writes constraint descriptions and messages
  4820. in displayable form as a text stream. It tailors the display
  4821. of individual message components to form the standard message
  4822. format of NUnit assertion failure messages.
  4823. </summary>
  4824. </member>
  4825. <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Expected">
  4826. <summary>
  4827. Prefix used for the expected value line of a message
  4828. </summary>
  4829. </member>
  4830. <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Actual">
  4831. <summary>
  4832. Prefix used for the actual value line of a message
  4833. </summary>
  4834. </member>
  4835. <member name="F:NUnit.Framework.TextMessageWriter.PrefixLength">
  4836. <summary>
  4837. Length of a message prefix
  4838. </summary>
  4839. </member>
  4840. <member name="M:NUnit.Framework.TextMessageWriter.#ctor">
  4841. <summary>
  4842. Construct a TextMessageWriter
  4843. </summary>
  4844. </member>
  4845. <member name="M:NUnit.Framework.TextMessageWriter.#ctor(System.String,System.Object[])">
  4846. <summary>
  4847. Construct a TextMessageWriter, specifying a user message
  4848. and optional formatting arguments.
  4849. </summary>
  4850. <param name="userMessage"></param>
  4851. <param name="args"></param>
  4852. </member>
  4853. <member name="M:NUnit.Framework.TextMessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
  4854. <summary>
  4855. Method to write single line message with optional args, usually
  4856. written to precede the general failure message, at a givel
  4857. indentation level.
  4858. </summary>
  4859. <param name="level">The indentation level of the message</param>
  4860. <param name="message">The message to be written</param>
  4861. <param name="args">Any arguments used in formatting the message</param>
  4862. </member>
  4863. <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
  4864. <summary>
  4865. Display Expected and Actual lines for a constraint. This
  4866. is called by MessageWriter's default implementation of
  4867. WriteMessageTo and provides the generic two-line display.
  4868. </summary>
  4869. <param name="constraint">The constraint that failed</param>
  4870. </member>
  4871. <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object)">
  4872. <summary>
  4873. Display Expected and Actual lines for given values. This
  4874. method may be called by constraints that need more control over
  4875. the display of actual and expected values than is provided
  4876. by the default implementation.
  4877. </summary>
  4878. <param name="expected">The expected value</param>
  4879. <param name="actual">The actual value causing the failure</param>
  4880. </member>
  4881. <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object,System.Object)">
  4882. <summary>
  4883. Display Expected and Actual lines for given values, including
  4884. a tolerance value on the expected line.
  4885. </summary>
  4886. <param name="expected">The expected value</param>
  4887. <param name="actual">The actual value causing the failure</param>
  4888. <param name="tolerance">The tolerance within which the test was made</param>
  4889. </member>
  4890. <member name="M:NUnit.Framework.TextMessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
  4891. <summary>
  4892. Display the expected and actual string values on separate lines.
  4893. If the mismatch parameter is >=0, an additional line is displayed
  4894. line containing a caret that points to the mismatch point.
  4895. </summary>
  4896. <param name="expected">The expected string value</param>
  4897. <param name="actual">The actual string value</param>
  4898. <param name="mismatch">The point at which the strings don't match or -1</param>
  4899. <param name="ignoreCase">If true, case is ignored in string comparisons</param>
  4900. <param name="clipping">If true, clip the strings to fit the max line length</param>
  4901. </member>
  4902. <member name="M:NUnit.Framework.TextMessageWriter.WriteConnector(System.String)">
  4903. <summary>
  4904. Writes the text for a connector.
  4905. </summary>
  4906. <param name="connector">The connector.</param>
  4907. </member>
  4908. <member name="M:NUnit.Framework.TextMessageWriter.WritePredicate(System.String)">
  4909. <summary>
  4910. Writes the text for a predicate.
  4911. </summary>
  4912. <param name="predicate">The predicate.</param>
  4913. </member>
  4914. <member name="M:NUnit.Framework.TextMessageWriter.WriteModifier(System.String)">
  4915. <summary>
  4916. Write the text for a modifier.
  4917. </summary>
  4918. <param name="modifier">The modifier.</param>
  4919. </member>
  4920. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedValue(System.Object)">
  4921. <summary>
  4922. Writes the text for an expected value.
  4923. </summary>
  4924. <param name="expected">The expected value.</param>
  4925. </member>
  4926. <member name="M:NUnit.Framework.TextMessageWriter.WriteActualValue(System.Object)">
  4927. <summary>
  4928. Writes the text for an actual value.
  4929. </summary>
  4930. <param name="actual">The actual value.</param>
  4931. </member>
  4932. <member name="M:NUnit.Framework.TextMessageWriter.WriteValue(System.Object)">
  4933. <summary>
  4934. Writes the text for a generalized value.
  4935. </summary>
  4936. <param name="val">The value.</param>
  4937. </member>
  4938. <member name="M:NUnit.Framework.TextMessageWriter.WriteCollectionElements(System.Collections.ICollection,System.Int32,System.Int32)">
  4939. <summary>
  4940. Writes the text for a collection value,
  4941. starting at a particular point, to a max length
  4942. </summary>
  4943. <param name="collection">The collection containing elements to write.</param>
  4944. <param name="start">The starting point of the elements to write</param>
  4945. <param name="max">The maximum number of elements to write</param>
  4946. </member>
  4947. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(NUnit.Framework.Constraints.Constraint)">
  4948. <summary>
  4949. Write the generic 'Expected' line for a constraint
  4950. </summary>
  4951. <param name="constraint">The constraint that failed</param>
  4952. </member>
  4953. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object)">
  4954. <summary>
  4955. Write the generic 'Expected' line for a given value
  4956. </summary>
  4957. <param name="expected">The expected value</param>
  4958. </member>
  4959. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object,System.Object)">
  4960. <summary>
  4961. Write the generic 'Expected' line for a given value
  4962. and tolerance.
  4963. </summary>
  4964. <param name="expected">The expected value</param>
  4965. <param name="tolerance">The tolerance within which the test was made</param>
  4966. </member>
  4967. <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(NUnit.Framework.Constraints.Constraint)">
  4968. <summary>
  4969. Write the generic 'Actual' line for a constraint
  4970. </summary>
  4971. <param name="constraint">The constraint for which the actual value is to be written</param>
  4972. </member>
  4973. <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(System.Object)">
  4974. <summary>
  4975. Write the generic 'Actual' line for a given value
  4976. </summary>
  4977. <param name="actual">The actual value causing a failure</param>
  4978. </member>
  4979. <member name="P:NUnit.Framework.TextMessageWriter.MaxLineLength">
  4980. <summary>
  4981. Gets or sets the maximum line length for this writer
  4982. </summary>
  4983. </member>
  4984. <member name="T:NUnit.Framework.StringAssert">
  4985. <summary>
  4986. Basic Asserts on strings.
  4987. </summary>
  4988. </member>
  4989. <member name="M:NUnit.Framework.StringAssert.Equals(System.Object,System.Object)">
  4990. <summary>
  4991. The Equals method throws an AssertionException. This is done
  4992. to make sure there is no mistake by calling this function.
  4993. </summary>
  4994. <param name="a"></param>
  4995. <param name="b"></param>
  4996. </member>
  4997. <member name="M:NUnit.Framework.StringAssert.ReferenceEquals(System.Object,System.Object)">
  4998. <summary>
  4999. override the default ReferenceEquals to throw an AssertionException. This
  5000. implementation makes sure there is no mistake in calling this function
  5001. as part of Assert.
  5002. </summary>
  5003. <param name="a"></param>
  5004. <param name="b"></param>
  5005. </member>
  5006. <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String,System.Object[])">
  5007. <summary>
  5008. Asserts that a string is found within another string.
  5009. </summary>
  5010. <param name="expected">The expected string</param>
  5011. <param name="actual">The string to be examined</param>
  5012. <param name="message">The message to display in case of failure</param>
  5013. <param name="args">Arguments used in formatting the message</param>
  5014. </member>
  5015. <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String)">
  5016. <summary>
  5017. Asserts that a string is found within another string.
  5018. </summary>
  5019. <param name="expected">The expected string</param>
  5020. <param name="actual">The string to be examined</param>
  5021. <param name="message">The message to display in case of failure</param>
  5022. </member>
  5023. <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String)">
  5024. <summary>
  5025. Asserts that a string is found within another string.
  5026. </summary>
  5027. <param name="expected">The expected string</param>
  5028. <param name="actual">The string to be examined</param>
  5029. </member>
  5030. <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String,System.Object[])">
  5031. <summary>
  5032. Asserts that a string starts with another string.
  5033. </summary>
  5034. <param name="expected">The expected string</param>
  5035. <param name="actual">The string to be examined</param>
  5036. <param name="message">The message to display in case of failure</param>
  5037. <param name="args">Arguments used in formatting the message</param>
  5038. </member>
  5039. <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String)">
  5040. <summary>
  5041. Asserts that a string starts with another string.
  5042. </summary>
  5043. <param name="expected">The expected string</param>
  5044. <param name="actual">The string to be examined</param>
  5045. <param name="message">The message to display in case of failure</param>
  5046. </member>
  5047. <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String)">
  5048. <summary>
  5049. Asserts that a string starts with another string.
  5050. </summary>
  5051. <param name="expected">The expected string</param>
  5052. <param name="actual">The string to be examined</param>
  5053. </member>
  5054. <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String,System.Object[])">
  5055. <summary>
  5056. Asserts that a string ends with another string.
  5057. </summary>
  5058. <param name="expected">The expected string</param>
  5059. <param name="actual">The string to be examined</param>
  5060. <param name="message">The message to display in case of failure</param>
  5061. <param name="args">Arguments used in formatting the message</param>
  5062. </member>
  5063. <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String)">
  5064. <summary>
  5065. Asserts that a string ends with another string.
  5066. </summary>
  5067. <param name="expected">The expected string</param>
  5068. <param name="actual">The string to be examined</param>
  5069. <param name="message">The message to display in case of failure</param>
  5070. </member>
  5071. <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String)">
  5072. <summary>
  5073. Asserts that a string ends with another string.
  5074. </summary>
  5075. <param name="expected">The expected string</param>
  5076. <param name="actual">The string to be examined</param>
  5077. </member>
  5078. <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
  5079. <summary>
  5080. Asserts that two strings are equal, without regard to case.
  5081. </summary>
  5082. <param name="expected">The expected string</param>
  5083. <param name="actual">The actual string</param>
  5084. <param name="message">The message to display in case of failure</param>
  5085. <param name="args">Arguments used in formatting the message</param>
  5086. </member>
  5087. <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String)">
  5088. <summary>
  5089. Asserts that two strings are equal, without regard to case.
  5090. </summary>
  5091. <param name="expected">The expected string</param>
  5092. <param name="actual">The actual string</param>
  5093. <param name="message">The message to display in case of failure</param>
  5094. </member>
  5095. <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String)">
  5096. <summary>
  5097. Asserts that two strings are equal, without regard to case.
  5098. </summary>
  5099. <param name="expected">The expected string</param>
  5100. <param name="actual">The actual string</param>
  5101. </member>
  5102. <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String,System.Object[])">
  5103. <summary>
  5104. Asserts that a string matches an expected regular expression pattern.
  5105. </summary>
  5106. <param name="expected">The expected expression</param>
  5107. <param name="actual">The actual string</param>
  5108. <param name="message">The message to display in case of failure</param>
  5109. <param name="args">Arguments used in formatting the message</param>
  5110. </member>
  5111. <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String)">
  5112. <summary>
  5113. Asserts that a string matches an expected regular expression pattern.
  5114. </summary>
  5115. <param name="expected">The expected expression</param>
  5116. <param name="actual">The actual string</param>
  5117. <param name="message">The message to display in case of failure</param>
  5118. </member>
  5119. <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String)">
  5120. <summary>
  5121. Asserts that a string matches an expected regular expression pattern.
  5122. </summary>
  5123. <param name="expected">The expected expression</param>
  5124. <param name="actual">The actual string</param>
  5125. </member>
  5126. <member name="T:NUnit.Framework.AssertionHelper">
  5127. <summary>
  5128. AssertionHelper is an optional base class for user tests,
  5129. allowing the use of shorter names for constraints and
  5130. asserts and avoiding conflict with the definition of
  5131. <see cref="T:NUnit.Framework.SyntaxHelpers.Is"/>, from which it inherits much of its
  5132. behavior, in certain mock object frameworks.
  5133. </summary>
  5134. </member>
  5135. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.Constraint)">
  5136. <summary>
  5137. Apply a constraint to an actual value, succeeding if the constraint
  5138. is satisfied and throwing an assertion exception on failure. Works
  5139. identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.Constraint)"/>
  5140. </summary>
  5141. <param name="constraint">A Constraint to be applied</param>
  5142. <param name="actual">The actual value to test</param>
  5143. </member>
  5144. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.Constraint,System.String)">
  5145. <summary>
  5146. Apply a constraint to an actual value, succeeding if the constraint
  5147. is satisfied and throwing an assertion exception on failure. Works
  5148. identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.Constraint,System.String)"/>
  5149. </summary>
  5150. <param name="constraint">A Constraint to be applied</param>
  5151. <param name="actual">The actual value to test</param>
  5152. <param name="message">The message that will be displayed on failure</param>
  5153. </member>
  5154. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.Constraint,System.String,System.Object[])">
  5155. <summary>
  5156. Apply a constraint to an actual value, succeeding if the constraint
  5157. is satisfied and throwing an assertion exception on failure. Works
  5158. identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.Constraint,System.String,System.Object[])"/>
  5159. </summary>
  5160. <param name="constraint">A Constraint to be applied</param>
  5161. <param name="actual">The actual value to test</param>
  5162. <param name="message">The message that will be displayed on failure</param>
  5163. <param name="args">Arguments to be used in formatting the message</param>
  5164. </member>
  5165. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String,System.Object[])">
  5166. <summary>
  5167. Asserts that a condition is true. If the condition is false the method throws
  5168. an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to
  5169. <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])"/>.
  5170. </summary>
  5171. <param name="condition">The evaluated condition</param>
  5172. <param name="message">The message to display if the condition is false</param>
  5173. <param name="args">Arguments to be used in formatting the message</param>
  5174. </member>
  5175. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String)">
  5176. <summary>
  5177. Asserts that a condition is true. If the condition is false the method throws
  5178. an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to
  5179. <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String)"/>.
  5180. </summary>
  5181. <param name="condition">The evaluated condition</param>
  5182. <param name="message">The message to display if the condition is false</param>
  5183. </member>
  5184. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean)">
  5185. <summary>
  5186. Asserts that a condition is true. If the condition is false the method throws
  5187. an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to <see cref="M:NUnit.Framework.Assert.That(System.Boolean)"/>.
  5188. </summary>
  5189. <param name="condition">The evaluated condition</param>
  5190. </member>
  5191. <member name="M:NUnit.Framework.AssertionHelper.Map(System.Collections.ICollection)">
  5192. <summary>
  5193. Returns a ListMapper based on a collection.
  5194. </summary>
  5195. <param name="original">The original collection</param>
  5196. <returns></returns>
  5197. </member>
  5198. <member name="T:NUnit.Framework.FileAssert">
  5199. <summary>
  5200. Summary description for FileAssert.
  5201. </summary>
  5202. </member>
  5203. <member name="M:NUnit.Framework.FileAssert.Equals(System.Object,System.Object)">
  5204. <summary>
  5205. The Equals method throws an AssertionException. This is done
  5206. to make sure there is no mistake by calling this function.
  5207. </summary>
  5208. <param name="a"></param>
  5209. <param name="b"></param>
  5210. </member>
  5211. <member name="M:NUnit.Framework.FileAssert.ReferenceEquals(System.Object,System.Object)">
  5212. <summary>
  5213. override the default ReferenceEquals to throw an AssertionException. This
  5214. implementation makes sure there is no mistake in calling this function
  5215. as part of Assert.
  5216. </summary>
  5217. <param name="a"></param>
  5218. <param name="b"></param>
  5219. </member>
  5220. <member name="M:NUnit.Framework.FileAssert.#ctor">
  5221. <summary>
  5222. We don't actually want any instances of this object, but some people
  5223. like to inherit from it to add other static methods. Hence, the
  5224. protected constructor disallows any instances of this object.
  5225. </summary>
  5226. </member>
  5227. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
  5228. <summary>
  5229. Verifies that two Streams are equal. Two Streams are considered
  5230. equal if both are null, or if both have the same value byte for byte.
  5231. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5232. </summary>
  5233. <param name="expected">The expected Stream</param>
  5234. <param name="actual">The actual Stream</param>
  5235. <param name="message">The message to display if Streams are not equal</param>
  5236. <param name="args">Arguments to be used in formatting the message</param>
  5237. </member>
  5238. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String)">
  5239. <summary>
  5240. Verifies that two Streams are equal. Two Streams are considered
  5241. equal if both are null, or if both have the same value byte for byte.
  5242. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5243. </summary>
  5244. <param name="expected">The expected Stream</param>
  5245. <param name="actual">The actual Stream</param>
  5246. <param name="message">The message to display if objects are not equal</param>
  5247. </member>
  5248. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream)">
  5249. <summary>
  5250. Verifies that two Streams are equal. Two Streams are considered
  5251. equal if both are null, or if both have the same value byte for byte.
  5252. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5253. </summary>
  5254. <param name="expected">The expected Stream</param>
  5255. <param name="actual">The actual Stream</param>
  5256. </member>
  5257. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
  5258. <summary>
  5259. Verifies that two files are equal. Two files are considered
  5260. equal if both are null, or if both have the same value byte for byte.
  5261. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5262. </summary>
  5263. <param name="expected">A file containing the value that is expected</param>
  5264. <param name="actual">A file containing the actual value</param>
  5265. <param name="message">The message to display if Streams are not equal</param>
  5266. <param name="args">Arguments to be used in formatting the message</param>
  5267. </member>
  5268. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
  5269. <summary>
  5270. Verifies that two files are equal. Two files are considered
  5271. equal if both are null, or if both have the same value byte for byte.
  5272. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5273. </summary>
  5274. <param name="expected">A file containing the value that is expected</param>
  5275. <param name="actual">A file containing the actual value</param>
  5276. <param name="message">The message to display if objects are not equal</param>
  5277. </member>
  5278. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo)">
  5279. <summary>
  5280. Verifies that two files are equal. Two files are considered
  5281. equal if both are null, or if both have the same value byte for byte.
  5282. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5283. </summary>
  5284. <param name="expected">A file containing the value that is expected</param>
  5285. <param name="actual">A file containing the actual value</param>
  5286. </member>
  5287. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
  5288. <summary>
  5289. Verifies that two files are equal. Two files are considered
  5290. equal if both are null, or if both have the same value byte for byte.
  5291. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5292. </summary>
  5293. <param name="expected">The path to a file containing the value that is expected</param>
  5294. <param name="actual">The path to a file containing the actual value</param>
  5295. <param name="message">The message to display if Streams are not equal</param>
  5296. <param name="args">Arguments to be used in formatting the message</param>
  5297. </member>
  5298. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String)">
  5299. <summary>
  5300. Verifies that two files are equal. Two files are considered
  5301. equal if both are null, or if both have the same value byte for byte.
  5302. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5303. </summary>
  5304. <param name="expected">The path to a file containing the value that is expected</param>
  5305. <param name="actual">The path to a file containing the actual value</param>
  5306. <param name="message">The message to display if objects are not equal</param>
  5307. </member>
  5308. <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String)">
  5309. <summary>
  5310. Verifies that two files are equal. Two files are considered
  5311. equal if both are null, or if both have the same value byte for byte.
  5312. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5313. </summary>
  5314. <param name="expected">The path to a file containing the value that is expected</param>
  5315. <param name="actual">The path to a file containing the actual value</param>
  5316. </member>
  5317. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
  5318. <summary>
  5319. Asserts that two Streams are not equal. If they are equal
  5320. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5321. </summary>
  5322. <param name="expected">The expected Stream</param>
  5323. <param name="actual">The actual Stream</param>
  5324. <param name="message">The message to be displayed when the two Stream are the same.</param>
  5325. <param name="args">Arguments to be used in formatting the message</param>
  5326. </member>
  5327. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String)">
  5328. <summary>
  5329. Asserts that two Streams are not equal. If they are equal
  5330. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5331. </summary>
  5332. <param name="expected">The expected Stream</param>
  5333. <param name="actual">The actual Stream</param>
  5334. <param name="message">The message to be displayed when the Streams are the same.</param>
  5335. </member>
  5336. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream)">
  5337. <summary>
  5338. Asserts that two Streams are not equal. If they are equal
  5339. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5340. </summary>
  5341. <param name="expected">The expected Stream</param>
  5342. <param name="actual">The actual Stream</param>
  5343. </member>
  5344. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
  5345. <summary>
  5346. Asserts that two files are not equal. If they are equal
  5347. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5348. </summary>
  5349. <param name="expected">A file containing the value that is expected</param>
  5350. <param name="actual">A file containing the actual value</param>
  5351. <param name="message">The message to display if Streams are not equal</param>
  5352. <param name="args">Arguments to be used in formatting the message</param>
  5353. </member>
  5354. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
  5355. <summary>
  5356. Asserts that two files are not equal. If they are equal
  5357. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5358. </summary>
  5359. <param name="expected">A file containing the value that is expected</param>
  5360. <param name="actual">A file containing the actual value</param>
  5361. <param name="message">The message to display if objects are not equal</param>
  5362. </member>
  5363. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo)">
  5364. <summary>
  5365. Asserts that two files are not equal. If they are equal
  5366. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5367. </summary>
  5368. <param name="expected">A file containing the value that is expected</param>
  5369. <param name="actual">A file containing the actual value</param>
  5370. </member>
  5371. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])">
  5372. <summary>
  5373. Asserts that two files are not equal. If they are equal
  5374. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5375. </summary>
  5376. <param name="expected">The path to a file containing the value that is expected</param>
  5377. <param name="actual">The path to a file containing the actual value</param>
  5378. <param name="message">The message to display if Streams are not equal</param>
  5379. <param name="args">Arguments to be used in formatting the message</param>
  5380. </member>
  5381. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String)">
  5382. <summary>
  5383. Asserts that two files are not equal. If they are equal
  5384. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5385. </summary>
  5386. <param name="expected">The path to a file containing the value that is expected</param>
  5387. <param name="actual">The path to a file containing the actual value</param>
  5388. <param name="message">The message to display if objects are not equal</param>
  5389. </member>
  5390. <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String)">
  5391. <summary>
  5392. Asserts that two files are not equal. If they are equal
  5393. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5394. </summary>
  5395. <param name="expected">The path to a file containing the value that is expected</param>
  5396. <param name="actual">The path to a file containing the actual value</param>
  5397. </member>
  5398. <member name="T:NUnit.Framework.IgnoreException">
  5399. <summary>
  5400. Thrown when an assertion failed.
  5401. </summary>
  5402. </member>
  5403. <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String)">
  5404. <param name="message"></param>
  5405. </member>
  5406. <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String,System.Exception)">
  5407. <param name="message">The error message that explains
  5408. the reason for the exception</param>
  5409. <param name="inner">The exception that caused the
  5410. current exception</param>
  5411. </member>
  5412. <member name="M:NUnit.Framework.IgnoreException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  5413. <summary>
  5414. Serialization Constructor
  5415. </summary>
  5416. </member>
  5417. <member name="T:NUnit.Framework.GlobalSettings">
  5418. <summary>
  5419. GlobalSettings is a place for setting default values used
  5420. by the framework in performing asserts.
  5421. </summary>
  5422. </member>
  5423. <member name="F:NUnit.Framework.GlobalSettings.DefaultFloatingPointTolerance">
  5424. <summary>
  5425. Default tolerance for floating point equality
  5426. </summary>
  5427. </member>
  5428. <member name="T:NUnit.Framework.TestCase">
  5429. <summary>
  5430. Obsolete class, formerly used to identify tests through
  5431. inheritance. Avoid using this class for new tests.
  5432. </summary>
  5433. </member>
  5434. <member name="M:NUnit.Framework.TestCase.SetUp">
  5435. <summary>
  5436. Method called immediately before running the test.
  5437. </summary>
  5438. </member>
  5439. <member name="M:NUnit.Framework.TestCase.TearDown">
  5440. <summary>
  5441. Method Called immediately after running the test. It is
  5442. guaranteed to be called, even if an exception is thrown.
  5443. </summary>
  5444. </member>
  5445. <member name="T:NUnit.Framework.SetUpAttribute">
  5446. <summary>
  5447. Attribute used to mark a class that contains one-time SetUp
  5448. and/or TearDown methods that apply to all the tests in a
  5449. namespace or an assembly.
  5450. </summary>
  5451. </member>
  5452. <member name="T:NUnit.Framework.SetUpFixtureAttribute">
  5453. <summary>
  5454. SetUpFixtureAttribute is used to identify a SetUpFixture
  5455. </summary>
  5456. </member>
  5457. <member name="T:NUnit.Framework.SuiteAttribute">
  5458. <summary>
  5459. Attribute used to mark a static (shared in VB) property
  5460. that returns a list of tests.
  5461. </summary>
  5462. </member>
  5463. <member name="T:NUnit.Framework.TearDownAttribute">
  5464. <summary>
  5465. Attribute used to identify a method that is called
  5466. immediately after each test is run. The method is
  5467. guaranteed to be called, even if an exception is thrown.
  5468. </summary>
  5469. </member>
  5470. <member name="T:NUnit.Framework.TestAttribute">
  5471. <summary>
  5472. Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
  5473. class makes the method callable from the NUnit test runner. There is a property
  5474. called Description which is optional which you can provide a more detailed test
  5475. description. This class cannot be inherited.
  5476. </summary>
  5477. <example>
  5478. [TestFixture]
  5479. public class Fixture
  5480. {
  5481. [Test]
  5482. public void MethodToTest()
  5483. {}
  5484. [Test(Description = "more detailed description")]
  5485. publc void TestDescriptionMethod()
  5486. {}
  5487. }
  5488. </example>
  5489. </member>
  5490. <member name="P:NUnit.Framework.TestAttribute.Description">
  5491. <summary>
  5492. Descriptive text for this test
  5493. </summary>
  5494. </member>
  5495. <member name="T:NUnit.Framework.TestFixtureAttribute">
  5496. <example>
  5497. [TestFixture]
  5498. public class ExampleClass
  5499. {}
  5500. </example>
  5501. </member>
  5502. <member name="P:NUnit.Framework.TestFixtureAttribute.Description">
  5503. <summary>
  5504. Descriptive text for this fixture
  5505. </summary>
  5506. </member>
  5507. <member name="T:NUnit.Framework.TestFixtureSetUpAttribute">
  5508. <summary>
  5509. Attribute used to identify a method that is
  5510. called before any tests in a fixture are run.
  5511. </summary>
  5512. </member>
  5513. <member name="T:NUnit.Framework.TestFixtureTearDownAttribute">
  5514. <summary>
  5515. Attribute used to identify a method that is called after
  5516. all the tests in a fixture have run. The method is
  5517. guaranteed to be called, even if an exception is thrown.
  5518. </summary>
  5519. </member>
  5520. <member name="T:NUnit.Framework.IgnoreAttribute">
  5521. <summary>
  5522. Attribute used to mark a test that is to be ignored.
  5523. Ignored tests result in a warning message when the
  5524. tests are run.
  5525. </summary>
  5526. </member>
  5527. <member name="M:NUnit.Framework.IgnoreAttribute.#ctor">
  5528. <summary>
  5529. Constructs the attribute without giving a reason
  5530. for ignoring the test.
  5531. </summary>
  5532. </member>
  5533. <member name="M:NUnit.Framework.IgnoreAttribute.#ctor(System.String)">
  5534. <summary>
  5535. Constructs the attribute giving a reason for ignoring the test
  5536. </summary>
  5537. <param name="reason">The reason for ignoring the test</param>
  5538. </member>
  5539. <member name="P:NUnit.Framework.IgnoreAttribute.Reason">
  5540. <summary>
  5541. The reason for ignoring a test
  5542. </summary>
  5543. </member>
  5544. <member name="T:NUnit.Framework.ExplicitAttribute">
  5545. <summary>
  5546. ExplicitAttribute marks a test or test fixture so that it will
  5547. only be run if explicitly executed from the gui or command line
  5548. or if it is included by use of a filter. The test will not be
  5549. run simply because an enclosing suite is run.
  5550. </summary>
  5551. </member>
  5552. <member name="M:NUnit.Framework.ExplicitAttribute.#ctor">
  5553. <summary>
  5554. Default constructor
  5555. </summary>
  5556. </member>
  5557. <member name="M:NUnit.Framework.ExplicitAttribute.#ctor(System.String)">
  5558. <summary>
  5559. Constructor with a reason
  5560. </summary>
  5561. <param name="reason">The reason test is marked explicit</param>
  5562. </member>
  5563. <member name="P:NUnit.Framework.ExplicitAttribute.Reason">
  5564. <summary>
  5565. The reason test is marked explicit
  5566. </summary>
  5567. </member>
  5568. <member name="T:NUnit.Framework.DescriptionAttribute">
  5569. <summary>
  5570. Attribute used to provide descriptive text about a
  5571. test case or fixture.
  5572. </summary>
  5573. </member>
  5574. <member name="M:NUnit.Framework.DescriptionAttribute.#ctor(System.String)">
  5575. <summary>
  5576. Construct the attribute
  5577. </summary>
  5578. <param name="description">Text describing the test</param>
  5579. </member>
  5580. <member name="P:NUnit.Framework.DescriptionAttribute.Description">
  5581. <summary>
  5582. Gets the test description
  5583. </summary>
  5584. </member>
  5585. <member name="T:NUnit.Framework.IExpectException">
  5586. <summary>
  5587. Interface implemented by a user fixture in order to
  5588. validate any expected exceptions. It is only called
  5589. for test methods marked with the ExpectedException
  5590. attribute.
  5591. </summary>
  5592. </member>
  5593. <member name="M:NUnit.Framework.IExpectException.HandleException(System.Exception)">
  5594. <summary>
  5595. Method to handle an expected exception
  5596. </summary>
  5597. <param name="ex">The exception to be handled</param>
  5598. </member>
  5599. </members>
  5600. </doc>