From 94c8842b3f9c704d19d47690c85d2b805851e16f Mon Sep 17 00:00:00 2001 From: thewarrior1220 Date: Thu, 5 May 2022 19:21:33 +0200 Subject: [PATCH] unit test --- .vs/c-sharp/v17/.suo | Bin 868352 -> 958464 bytes .vs/c-sharp/v17/TestStore/0/000.testlog | Bin 86797 -> 112643 bytes Fibonacci/bin/x64/Debug/Fibonacci.exe | Bin 4608 -> 4096 bytes Fibonacci/bin/x64/Debug/Fibonacci.pdb | Bin 19968 -> 19968 bytes Fibonacci/obj/x64/Debug/Fibonacci.exe | Bin 4608 -> 4096 bytes Fibonacci/obj/x64/Debug/Fibonacci.pdb | Bin 19968 -> 19968 bytes .../bin/Debug/NegyszogUnitTest.dll | Bin 5120 -> 5120 bytes .../bin/Debug/NegyszogUnitTest.pdb | Bin 15872 -> 15872 bytes .../obj/Debug/NegyszogUnitTest.dll | Bin 5120 -> 5120 bytes .../obj/Debug/NegyszogUnitTest.pdb | Bin 15872 -> 15872 bytes Oszthat/App.config | 6 + Oszthat/Oszthat.csproj | 54 + Oszthat/Program.cs | 16 + Oszthat/Properties/AssemblyInfo.cs | 36 + Oszthat/Szam.cs | 28 + Oszthat/bin/Debug/Oszthat.exe | Bin 0 -> 5120 bytes Oszthat/bin/Debug/Oszthat.exe.config | 6 + Oszthat/bin/Debug/Oszthat.pdb | Bin 0 -> 22016 bytes ...ework,Version=v4.7.2.AssemblyAttributes.cs | 4 + ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 6704 bytes .../Oszthat.csproj.AssemblyReference.cache | Bin 0 -> 4079 bytes .../Oszthat.csproj.CoreCompileInputs.cache | 1 + .../Debug/Oszthat.csproj.FileListAbsolute.txt | 8 + ...hat.csproj.SuggestedBindingRedirects.cache | 0 Oszthat/obj/Debug/Oszthat.exe | Bin 0 -> 5120 bytes Oszthat/obj/Debug/Oszthat.pdb | Bin 0 -> 22016 bytes OszthatUnitTest/OszthatUnitTest.csproj | 74 + OszthatUnitTest/Properties/AssemblyInfo.cs | 20 + OszthatUnitTest/UnitTest1.cs | 18 + ...icrosoft.TestPlatform.AdapterUtilities.dll | Bin 0 -> 28560 bytes ...Studio.TestPlatform.MSTest.TestAdapter.dll | Bin 0 -> 152464 bytes ...TestAdapter.PlatformServices.Interface.dll | Bin 0 -> 18312 bytes ...latform.MSTestAdapter.PlatformServices.dll | Bin 0 -> 111480 bytes ....TestPlatform.TestFramework.Extensions.dll | Bin 0 -> 33656 bytes ....TestPlatform.TestFramework.Extensions.xml | 1125 ++++ ...isualStudio.TestPlatform.TestFramework.dll | Bin 0 -> 71056 bytes ...isualStudio.TestPlatform.TestFramework.xml | 4925 +++++++++++++++++ OszthatUnitTest/bin/Debug/Oszthat.exe | Bin 0 -> 5120 bytes OszthatUnitTest/bin/Debug/Oszthat.exe.config | 6 + OszthatUnitTest/bin/Debug/Oszthat.pdb | Bin 0 -> 22016 bytes OszthatUnitTest/bin/Debug/OszthatUnitTest.dll | Bin 0 -> 4608 bytes OszthatUnitTest/bin/Debug/OszthatUnitTest.pdb | Bin 0 -> 13824 bytes ...ework,Version=v4.7.2.AssemblyAttributes.cs | 4 + ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 20468 bytes ...hatUnitTest.csproj.AssemblyReference.cache | Bin 0 -> 11562 bytes .../Debug/OszthatUnitTest.csproj.CopyComplete | 0 ...hatUnitTest.csproj.CoreCompileInputs.cache | 1 + ...szthatUnitTest.csproj.FileListAbsolute.txt | 18 + OszthatUnitTest/obj/Debug/OszthatUnitTest.dll | Bin 0 -> 4608 bytes OszthatUnitTest/obj/Debug/OszthatUnitTest.pdb | Bin 0 -> 13824 bytes OszthatUnitTest/packages.config | 5 + c-sharp.sln | 27 +- csv/obj/Debug/csv.csproj.FileListAbsolute.txt | 8 + 53 files changed, 6383 insertions(+), 7 deletions(-) create mode 100644 Oszthat/App.config create mode 100644 Oszthat/Oszthat.csproj create mode 100644 Oszthat/Program.cs create mode 100644 Oszthat/Properties/AssemblyInfo.cs create mode 100644 Oszthat/Szam.cs create mode 100644 Oszthat/bin/Debug/Oszthat.exe create mode 100644 Oszthat/bin/Debug/Oszthat.exe.config create mode 100644 Oszthat/bin/Debug/Oszthat.pdb create mode 100644 Oszthat/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 Oszthat/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 Oszthat/obj/Debug/Oszthat.csproj.AssemblyReference.cache create mode 100644 Oszthat/obj/Debug/Oszthat.csproj.CoreCompileInputs.cache create mode 100644 Oszthat/obj/Debug/Oszthat.csproj.FileListAbsolute.txt create mode 100644 Oszthat/obj/Debug/Oszthat.csproj.SuggestedBindingRedirects.cache create mode 100644 Oszthat/obj/Debug/Oszthat.exe create mode 100644 Oszthat/obj/Debug/Oszthat.pdb create mode 100644 OszthatUnitTest/OszthatUnitTest.csproj create mode 100644 OszthatUnitTest/Properties/AssemblyInfo.cs create mode 100644 OszthatUnitTest/UnitTest1.cs create mode 100644 OszthatUnitTest/bin/Debug/Microsoft.TestPlatform.AdapterUtilities.dll create mode 100644 OszthatUnitTest/bin/Debug/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll create mode 100644 OszthatUnitTest/bin/Debug/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll create mode 100644 OszthatUnitTest/bin/Debug/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll create mode 100644 OszthatUnitTest/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll create mode 100644 OszthatUnitTest/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml create mode 100644 OszthatUnitTest/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.dll create mode 100644 OszthatUnitTest/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.xml create mode 100644 OszthatUnitTest/bin/Debug/Oszthat.exe create mode 100644 OszthatUnitTest/bin/Debug/Oszthat.exe.config create mode 100644 OszthatUnitTest/bin/Debug/Oszthat.pdb create mode 100644 OszthatUnitTest/bin/Debug/OszthatUnitTest.dll create mode 100644 OszthatUnitTest/bin/Debug/OszthatUnitTest.pdb create mode 100644 OszthatUnitTest/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 OszthatUnitTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 OszthatUnitTest/obj/Debug/OszthatUnitTest.csproj.AssemblyReference.cache create mode 100644 OszthatUnitTest/obj/Debug/OszthatUnitTest.csproj.CopyComplete create mode 100644 OszthatUnitTest/obj/Debug/OszthatUnitTest.csproj.CoreCompileInputs.cache create mode 100644 OszthatUnitTest/obj/Debug/OszthatUnitTest.csproj.FileListAbsolute.txt create mode 100644 OszthatUnitTest/obj/Debug/OszthatUnitTest.dll create mode 100644 OszthatUnitTest/obj/Debug/OszthatUnitTest.pdb create mode 100644 OszthatUnitTest/packages.config diff --git a/.vs/c-sharp/v17/.suo b/.vs/c-sharp/v17/.suo index 7d2e3dd219769243e1f84fc20d0864eeed5ad38b..e20ca93dbb1b71caf2c001ad4830cf51c3972c6a 100644 GIT binary patch delta 19474 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 delta 12057 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 a`Zc}p-lx5l6Gvm$?DxKxb2(XmJpTdUjDf=d delta 952 zcmY+DPe>GT6vw~6-_FeL%&a=oxI4NXTwKf1-ORAaQi-*N5(|t)SV;;iQdfx5E|$0( zEcWLR$v~8cNFlmOwO8p9buglWE-6HZh%Q1%7duGr_frr3;C))s3=Zm_;W1D!u~tfZT%qOsRl68 zIiUGz)>?2{1E3i~w82vvcQ>iQHMEog?p4tQGZ_JQ2Ry3Kc+Hm2nMnkjMQ_j6FdO6a z{HkYB13a7P?IIY_yy@n{(R@YHMktsIhk^rU$a6#$^gV7qnyb(@RY$Rvec!!mlJ_>( zb1&l0^JJGrFPWGIrpP}MarXN7=#}9K+7Z<%kRhMw&mu=L?Tf^T{vM%?P~PtAf&GO5 zWz>iWS><*tPA?2tU|U{;%X+znl4LJxc@@T}O~VA%nTEfTtCC|(D2FBcB=1T6JW@2F zOY*f;p5aA-N(=laaYnKpB339C+tUruV)A7yd}GTjEwhtxp+CeIR!4bBX0uphr|BqP zWj0ge&}QOr40M&m8(fFO8GS$E5 zE{(3kEZUGFHq$Jj9FodW;(dM$x2RG>3ru8*4hD(4ag&%BL5W-vKCw-*L-M%Pd-0g` ztW?fQUc^gM#;{79z%Rtm0HwI|x#*yBEz|8OI|=y=YJH~0)JsF-Ll??1b&0Xdz0&>JAJkv@FZ6T&Ss$w|R~qZ;KYZVlBme*a diff --git a/Fibonacci/bin/x64/Debug/Fibonacci.pdb b/Fibonacci/bin/x64/Debug/Fibonacci.pdb index a832c57c4d5c2ba1a847a7b6927767d748b8a2c7..f558d91ba9c5ee98c7d1f791d0d250c41a9f2751 100644 GIT binary patch delta 616 zcmZpe!`Lu~af1h!f-b|(_!Y(z4$hvNb)b{=T(!cnysb}eJh~ylBm1iF(C!Z#9cM6Z z;^AOn^<)5o$qNm|H!BF-VcaB?z{9e7vFrBDDRK)KZS@$m1VQo@j3APM0jwCpWB>}W zftX+^-^9#3AX|)qS&#)tYXAj3C%Y8BF>JtAKj)4y>&Nw+$YuCg8gU#~VvW$#6n*{|9GfvXeVbtBMtM{IfQDL&Ifjd_X$WkEq zz_2;bK#Fnl5fN{&0zi#zr8ILcFxLxYCnHd1W0fm?V delta 1034 zcmb_aO=uHQ5Pq}ShBS>e+s4qwwr(H>Y;4@LHT9>8tEsky5Ko?znl==Il4|Y2pxE`` z-DD9|iWK!&ip_#v6#o#s`FD}hlSn;?R;3pYir?%eSOgD(v%LM@eDm|>%{*gXP;pxnH%P2>5|i9&X4EH6Y*xD*-uBP`9-)pKC+yIbksjWnH&*#@TY;B>E-e={a{nMHcjj zG#wP1?KbiZN&FscP;6PlYe|g-$(ySFJQ@%5gtHp|twzUwyqul|*_wtp+s zM4_cr{~y_Sp67NmHUB;IVpYHX?9W|>ObgC3LNAc#>?PUX8uBOeek zE_%pa6rxG1B8n&%wP-0VqZYZ!h&Dw~M7S%Y|2+;K_ZrNk%NfA4&xZQdyx?cGQC5ZOt;g$$$}A<7C0Np&-?otuK3m zZp$6}5(!e>xVc1&`bv|O}tsg6tds&p&~KMFgQ zqf`nH3U7#>L=h|O5WW^=7EeZ*+M_LyMR0gU{3W#@eR%*hB|m85otjs55;YY&`Xm-r zJ>waPZmxB){K|Gxnh!2b!6J36BmLM!ny3`+64sHUCU3|2a9o%ao+k6rC4Qf9NH~EQ z-^2t;QO4#9QTj2&$q{Wk#+jp|0s&U6KoBR$_2?tR7$%+U3Tzct3+pl5N$C*okO`66 zglF)G$_0EN2k;q%aF4BA6IN}WC&U|GwcTu)v6DS5&E11l+fZ|)=j`Q+owajUJ#Um< z>s>ZaW&dkeiJ$e;Pun{l-j2`OhmFFyUL&OPf82WU%vtZ8;4zLSKKLek#uqlL{(cL+ a`Zc}p-lx5l6Gvm$?DxKxb2(XmJpTdUjDf=d delta 952 zcmY+DPe>GT6vw~6-_FeL%&a=oxI4NXTwKf1-ORAaQi-*N5(|t)SV;;iQdfx5E|$0( zEcWLR$v~8cNFlmOwO8p9buglWE-6HZh%Q1%7duGr_frr3;C))s3=Zm_;W1D!u~tfZT%qOsRl68 zIiUGz)>?2{1E3i~w82vvcQ>iQHMEog?p4tQGZ_JQ2Ry3Kc+Hm2nMnkjMQ_j6FdO6a z{HkYB13a7P?IIY_yy@n{(R@YHMktsIhk^rU$a6#$^gV7qnyb(@RY$Rvec!!mlJ_>( zb1&l0^JJGrFPWGIrpP}MarXN7=#}9K+7Z<%kRhMw&mu=L?Tf^T{vM%?P~PtAf&GO5 zWz>iWS><*tPA?2tU|U{;%X+znl4LJxc@@T}O~VA%nTEfTtCC|(D2FBcB=1T6JW@2F zOY*f;p5aA-N(=laaYnKpB339C+tUruV)A7yd}GTjEwhtxp+CeIR!4bBX0uphr|BqP zWj0ge&}QOr40M&m8(fFO8GS$E5 zE{(3kEZUGFHq$Jj9FodW;(dM$x2RG>3ru8*4hD(4ag&%BL5W-vKCw-*L-M%Pd-0g` ztW?fQUc^gM#;{79z%Rtm0HwI|x#*yBEz|8OI|=y=YJH~0)JsF-Ll??1b&0Xdz0&>JAJkv@FZ6T&Ss$w|R~qZ;KYZVlBme*a diff --git a/Fibonacci/obj/x64/Debug/Fibonacci.pdb b/Fibonacci/obj/x64/Debug/Fibonacci.pdb index a832c57c4d5c2ba1a847a7b6927767d748b8a2c7..f558d91ba9c5ee98c7d1f791d0d250c41a9f2751 100644 GIT binary patch delta 616 zcmZpe!`Lu~af1h!f-b|(_!Y(z4$hvNb)b{=T(!cnysb}eJh~ylBm1iF(C!Z#9cM6Z z;^AOn^<)5o$qNm|H!BF-VcaB?z{9e7vFrBDDRK)KZS@$m1VQo@j3APM0jwCpWB>}W zftX+^-^9#3AX|)qS&#)tYXAj3C%Y8BF>JtAKj)4y>&Nw+$YuCg8gU#~VvW$#6n*{|9GfvXeVbtBMtM{IfQDL&Ifjd_X$WkEq zz_2;bK#Fnl5fN{&0zi#zr8ILcFxLxYCnHd1W0fm?V delta 1034 zcmb_aO=uHQ5Pq}ShBS>e+s4qwwr(H>Y;4@LHT9>8tEsky5Ko?znl==Il4|Y2pxE`` z-DD9|iWK!&ip_#v6#o#s`FD}hlSn;?R;3pYir?%eSOgD(v%LM@eDm|>%{*gXP;pxnH%P2>5|i9&X4EH6Y*xD*-uBP`9-)pKC+yIbksjWnH&*#@TY;B>E-e={a{nMHcjj zG#wP1?KbiZN&FscP;6PlYe|g-$(ySFJQ@%5gtHp|twzUwyqul|*_wtp+s zM4_cr{~y_Sp67NmHUB;IVpYHX?9z6S;>x7u1U-TNeh_dl}O*1p16K(#uP8v zT*!N3G>u2BU87Hr4)*f?Oy9LSDWX4E(cBfq9XV_qA6CK8g8fFz$BN(bPMfcFb$0pn=x;}9)itZ`*C#)CUin#4v7b&pI z5h~)~@FJg7hD*y(;2Q}uZA6(4nwT!ygdM^j;h=C>I3~QzJb($&Q^K3V1*VP1!q?1$ z@Nm*`qzH0R3AnDm;PGTr4KpL5^hHRapw}X@br$G7Cc3$;agwk*2Su2zH+ zfwzGuhzNR7@bJFat?-~9h)&K!n2XE-_>9Uqk! zU!1e=1}WQ~JVx`1s4#832*^<(QK~wqkn+?BC9KtA=y8B4kcMao=<@)iD6>Mfh*8Q_ zUqo(MbO&IfxK|7juwgL3E-qM!sHHb*!fSP~d)Q4VRuLJge9IZ(A)r(Omw1L_S1$Ko zI6LU3J~lXw*KlhLPg(n1-O$=t$Lq8jk=10W*V0P#39iS(KnZ!If#;fa_$)Rf$~6s~ z$8BN2OD-3*zOQw+=2gvGI^K>SoRhCPt0Pa4BohZ|i40W8xbVU!e8NN-+(;1d1Rr=H z;v8Dxkcl?Ar0(idI&ZXh%z)n{)>?d~L#wlxxy%BIPEyK4Br{ zX0-da<^oA}2|^$Q9(LfPsO8jjB>9i{nFcJTi6W*C<(ie6do&w04{LU4_As}hU+V$Q zYnmfW1CKOknAxzgR~BFn$0MSMO*0!CQ^MsNQNUH;&S;EM(L)&T9S5U^mgpwxF}Hm=E%j+^2q^T`FVC>{z=+MFWS!onyy`K6LEkd#$!XRMsOR5_V( z;$}{jXhum7pxy)^W&}b>h&c=_K-y+qk|7 zrilSOn>2E`7|(3ZH7aKWnmy52oV60DNCM272xRe3bQGR!U?Re}V6&^qenttA!lEQb jp!hd&?q@R9&)jx6{!Ep-{8((WjF|!xqt9kri^Hq{t{6+E delta 287 zcmZpuX{g!YA);U?yP~1o{vz{E>u<;0UMxApWEv`bkZIDVY+p;g#uwLKZ*-i&xJitI zg>xAL1T5PuDD|D0twNSTVr}$fKDi*4rk)qGHmAt7urSI`eyL;(BxRM`8S5u6RZeD{ zzL`@cno%+Ys5b$K8G%q9Vh#fwOj{H{odXp3O353QUXz6S;>x7u1U-TNeh_dl}O*1p16K(#uP8v zT*!N3G>u2BU87Hr4)*f?Oy9LSDWX4E(cBfq9XV_qA6CK8g8fFz$BN(bPMfcFb$0pn=x;}9)itZ`*C#)CUin#4v7b&pI z5h~)~@FJg7hD*y(;2Q}uZA6(4nwT!ygdM^j;h=C>I3~QzJb($&Q^K3V1*VP1!q?1$ z@Nm*`qzH0R3AnDm;PGTr4KpL5^hHRapw}X@br$G7Cc3$;agwk*2Su2zH+ zfwzGuhzNR7@bJFat?-~9h)&K!n2XE-_>9Uqk! zU!1e=1}WQ~JVx`1s4#832*^<(QK~wqkn+?BC9KtA=y8B4kcMao=<@)iD6>Mfh*8Q_ zUqo(MbO&IfxK|7juwgL3E-qM!sHHb*!fSP~d)Q4VRuLJge9IZ(A)r(Omw1L_S1$Ko zI6LU3J~lXw*KlhLPg(n1-O$=t$Lq8jk=10W*V0P#39iS(KnZ!If#;fa_$)Rf$~6s~ z$8BN2OD-3*zOQw+=2gvGI^K>SoRhCPt0Pa4BohZ|i40W8xbVU!e8NN-+(;1d1Rr=H z;v8Dxkcl?Ar0(idI&ZXh%z)n{)>?d~L#wlxxy%BIPEyK4Br{ zX0-da<^oA}2|^$Q9(LfPsO8jjB>9i{nFcJTi6W*C<(ie6do&w04{LU4_As}hU+V$Q zYnmfW1CKOknAxzgR~BFn$0MSMO*0!CQ^MsNQNUH;&S;EM(L)&T9S5U^mgpwxF}Hm=E%j+^2q^T`FVC>{z=+MFWS!onyy`K6LEkd#$!XRMsOR5_V( z;$}{jXhum7pxy)^W&}b>h&c=_K-y+qk|7 zrilSOn>2E`7|(3ZH7aKWnmy52oV60DNCM272xRe3bQGR!U?Re}V6&^qenttA!lEQb jp!hd&?q@R9&)jx6{!Ep-{8((WjF|!xqt9kri^Hq{t{6+E delta 287 zcmZpuX{g!YA);U?yP~1o{vz{E>u<;0UMxApWEv`bkZIDVY+p;g#uwLKZ*-i&xJitI zg>xAL1T5PuDD|D0twNSTVr}$fKDi*4rk)qGHmAt7urSI`eyL;(BxRM`8S5u6RZeD{ zzL`@cno%+Ys5b$K8G%q9Vh#fwOj{H{odXp3O353QUX + + + + + \ No newline at end of file diff --git a/Oszthat/Oszthat.csproj b/Oszthat/Oszthat.csproj new file mode 100644 index 0000000..5ec3435 --- /dev/null +++ b/Oszthat/Oszthat.csproj @@ -0,0 +1,54 @@ + + + + + Debug + AnyCPU + {E1A9C08D-262D-45C4-BB49-EB8062DBC432} + Exe + Oszthat + Oszthat + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Oszthat/Program.cs b/Oszthat/Program.cs new file mode 100644 index 0000000..f8d2cab --- /dev/null +++ b/Oszthat/Program.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Oszthat { + public class Program { + public static void Main(string[] args) { + Console.WriteLine("Kérek egy szamot"); + //Szam.setSzam(); + Szam.getSzam(); + //Console.ReadKey(); + } + } +} diff --git a/Oszthat/Properties/AssemblyInfo.cs b/Oszthat/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..03eb114 --- /dev/null +++ b/Oszthat/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Oszthat")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Oszthat")] +[assembly: AssemblyCopyright("Copyright © 2022")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("e1a9c08d-262d-45c4-bb49-eb8062dbc432")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Oszthat/Szam.cs b/Oszthat/Szam.cs new file mode 100644 index 0000000..0e4b24c --- /dev/null +++ b/Oszthat/Szam.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Oszthat { + public static class Szam { + public static int szam; + + public static void setSzam() { + try { + szam = Convert.ToInt32(Console.ReadLine()); + } catch (FormatException e) { + Console.WriteLine(e.Message); + } + } + + public static void getSzam() { //Teszteles miatt at van adva egy szam alap esetben nincs semmi atadva + if(szam % 3 == 0) + Console.WriteLine("harom"); + else if(szam % 5 == 0) + Console.WriteLine("ot"); + else + Console.WriteLine(szam); + } + } +} diff --git a/Oszthat/bin/Debug/Oszthat.exe b/Oszthat/bin/Debug/Oszthat.exe new file mode 100644 index 0000000000000000000000000000000000000000..3e37af2300979d1500a2dc75895d09d31bc900c8 GIT binary patch literal 5120 zcmeHLU2Ggz6+W}J*Umb2VmA#9A#}1f#BH+c_1b`w#<3l*-7fWCvyMZ-$eEqJUQaVS zvz<73f-$Yy5;D(rGj2@OCsIVlNbzLFV7OqYi;z4{>+=v zXm=<{-CBky0Zv!IT^&NN2HdXV1D{(PU3`IPzxvngLo!gIcKBUl ze2VDhj*!{fT_oBI`uSr-ArUu^rJ*LZ%Askw%6gHlZ=x|sH) zXM$3(O#$JFazHI@3el%MVY^UNqKgo+uYPEcL(Bq$0qQfle?u2N#De6|D zA>@UlIa~PrS&bt>E|2*Rb-?N;uWQ_yZFT5uP z&KGDNIEOp%`1yPe{Tk>Ka6NF=c8j37!CbrWV2t)K@po;M4yruR10dV*aU{qX>#3#d z4RPiNQNE-FeH`awG8U(81t+N|wvX0f7N;`3qs8ej3f@+5U1QF11#=2sQTzhw@Gzp_ zYl?G&UV-LUV!s3YtH$tQV)#$s2qBDtGp1p#w=@}>R`@k6)a{UJ!=!$zJx0qqTf9Vf zv@_5tDeA?CIx%95s-f&xS_;(7kou{X3$x&GqTpo@b;dL-HCr75Owc2M`w=t4lL}5N zm{;&A1)o;X0DO=vg+HrcUBPeBG5R=N10JUv$owENCq-%M#u-S1^AzA=ssavB9q>54 z2soTSY1he|cm1r_Sj7nO8qkPfGe`+yJ#KYF}ih0Ew= z)H4y7(Sl()4Hsg=7A8-c=3K90__N!lP)VS)>APN}m$Qtr<4WH$WyFd`&pW>G+-gC1 zTb3zyiGvghuOSci2ZF^egF4n!QaCwUDn5f~coQCdlKw~@3G8DXu#CN~V>e$WgDT{b zPg?gTa1VF|mn3tz9l7wc-+c9jKjg3NYy0+%*}om5c3soD+H}%7fb{h-*~=i-PKdKS&CGZymHlkClp6btIhHCG z$4;h1aXbS~(Ht9vCOaL$Wy3Kp$HYwspqgs(z!yea9exjyH9`9S$yr! z#bZCe`MuY9!ZWAVN@8ox99T0`a?|jtYhgmx+~PB9Y8ynHbhT8Z6JZU&uICun8Qa~W zS|O0E&$!;~wosc|-B&`SOE$lms3bo{`jo;x0{>4Lh^alMql$hAVK1ZK89kptRrBoP zv))}ya030!T_SZX>17=7>r*&gT>OM>Z`&BKRlKX~fU|TCSRNJnBIrEeTu`mkkK5mU zFL+r4Uja@u8T#QDHj;!a$|>Hey1nL58`!wt^5oD4?lNwJ#8xY~+YE3e7Ru(+dD&7yyR2k85EW3F+y-GTMS;UaVk5HL&o|=Aw z6)C}Q1%5reOi|W|rc|s;;TXIk9BY&#rh*LqyO@LAEW_TV64j7Tzh$QUw;{iM&0LPD zT<+ArJEObv$?G-^Pg2dHhzR*r{UE!WGem!C*~IVu=*`oU+Z9{i3QDbsB;KT?E*#S> z;aQ(Zo?n?ujVE>K8&1ivT}MnL>p~_c&-5gE5~q!@?$hDIkrT<9=bVz}CTcyIs#vDy zN_WFgnQrBjAuH*vk)&QR9BV^JKYHKPcyOlc4QKh1K=I_)cf`c+WKwtVeJP# zZJDZqOB>Z{ayanddo}6joelRs + + + + + \ No newline at end of file diff --git a/Oszthat/bin/Debug/Oszthat.pdb b/Oszthat/bin/Debug/Oszthat.pdb new file mode 100644 index 0000000000000000000000000000000000000000..9d892b0bd8b69596e44bba6420ca012d2ad8721f GIT binary patch literal 22016 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 UC?ISupe#$2 +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/Oszthat/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Oszthat/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000000000000000000000000000000000000..db50ec67425bf46f05c7dde2f8ad456acd5aace5 GIT binary patch literal 6704 zcmeHMZBrXJ5VpZ67($9EB?OYxY3MXbof|tqfXwiL+BjhvC}X>{GuT7qJK0vaJGqh$ za2S3|e?g}|vE4n}XWrWnz8OCF7}i2s?Xy~~+x1haC%f*c~d- zDvV8E7|RRWg7rSd&JvY%rh{okud0~d0V8UG*Igl5j@2lHV#`$;{OftwHvH;#rM9`Y z>O+3Li6>Y3&(BKQuui2fxtZgVnOaEB)MV4rR2CVPW@DG?hMKHj>KJcIQG*EKs-`5X zbERdgHz5uS(+op62ZqiE;~dJ&rJ-%%@)>BDGnL^sU+B;)Q|NDrotk7k1`E6!xafzi@*D9&o{J5j8h7pHKf5Upm%|)Yw z6b&Pbg3}a+@jISVeLg^g1PvpH1_|1)FV0F7d2oCf#8^Cr%@Gtp2O{x%AmC#ZMI6N# zig6HQ5Okq2OD zJNvF|v7@s2yllQ!4Jw=EU(^@fpt>xopUXK`_39uMFv}9Kp8`|DJ_@LAkLnmEH5)Ac z6?!-c;_*c%x{SW<3`u~-G-@ORKa;+jWC{&*w7!OR%u(DX)6g1&-n6lpUd*h;zk$Ca zV+o8P{*oCK#xZvti#&vO%&=^m%=#^M!V(x{3?xBjzi{)CH=0eu^r=0W15FN^z~AaX z@aP7(7K(8 z&j8H~6YY1$_IK&Ku$P5EAG!MnqQ&rv9T0;7G3e_naKCxA|7CUnr3Xii94P*UjUF7e zYhf_*cPzMLua*V|@BLT>ys<(^ZWc3v|kw=jX#H5ulppBU}9aAEP(hmlq)`g z{ME5zdYf158&!+3Y+usRhh8;nQ(|x##aNZa+T5e+@3I|N6JZ;KB;Z$(8Yc0Y@mQ A!2kdN literal 0 HcmV?d00001 diff --git a/Oszthat/obj/Debug/Oszthat.csproj.AssemblyReference.cache b/Oszthat/obj/Debug/Oszthat.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..126ed02bfe4bf614074ea1b6835abc2e30d9aaa2 GIT binary patch literal 4079 zcmcInO>fjN5X}gvwp#?^Lr9f4>;(xfR-qMzUMiGs#Q|2RsenVI%Jn+CRugAydzWr6 zd*;j^;l?lN5s9CI9g;#wE>R{qL~$IAXWpBcH(7&q&+~x#d*KI_P83ZBha%>B@bu!< z%V*&ckGSHJ@xdFdd2$*HuEY0&sZ^(t2@mb}{7b6NLNXd2|6MJ1$S!#iCYq%x7N=w! z#{l*mZ}s!jlW$i&FI&JZ`{uSxRU*cc5*g1n+(Jg|pXafA&OVaSS+-FuvK{E#v$n|g z*7oz)9-MR%MzGX|CpAIbaL@ttia6n>i?QZ{RsJ%I+k>86{L$2n0)b7@4vNx+q$vAArW0%hs|Hm;LO@fI#tb70YB4jfQJiMs{d3@;3q z+LnT@$p}|(Xcz>+l#rm%YTgFNnIMWv?939N3!*8lDGZfGk0z%4OcTIG`F(15R5lNvFu;9fI1ykM%<9M z#?-Yt)Y%ZDh>+S{6=Bw8i*n;&wL_umJ_fk=^JLB@m*6~ZH*(|u3{+X`R9M{9QbQZ+ a0FOZ%maw4eKw&K4Y_5b^wrJNC+J6J1z2vO` literal 0 HcmV?d00001 diff --git a/Oszthat/obj/Debug/Oszthat.csproj.CoreCompileInputs.cache b/Oszthat/obj/Debug/Oszthat.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..761c2b4 --- /dev/null +++ b/Oszthat/obj/Debug/Oszthat.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +8f4a27efc33b6bc1a3be7d8cf21072915ee0ee67 diff --git a/Oszthat/obj/Debug/Oszthat.csproj.FileListAbsolute.txt b/Oszthat/obj/Debug/Oszthat.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..21b816f --- /dev/null +++ b/Oszthat/obj/Debug/Oszthat.csproj.FileListAbsolute.txt @@ -0,0 +1,8 @@ +C:\dev\c#\c-sharp\Oszthat\bin\Debug\Oszthat.exe.config +C:\dev\c#\c-sharp\Oszthat\bin\Debug\Oszthat.exe +C:\dev\c#\c-sharp\Oszthat\bin\Debug\Oszthat.pdb +C:\dev\c#\c-sharp\Oszthat\obj\Debug\Oszthat.csproj.AssemblyReference.cache +C:\dev\c#\c-sharp\Oszthat\obj\Debug\Oszthat.csproj.SuggestedBindingRedirects.cache +C:\dev\c#\c-sharp\Oszthat\obj\Debug\Oszthat.csproj.CoreCompileInputs.cache +C:\dev\c#\c-sharp\Oszthat\obj\Debug\Oszthat.exe +C:\dev\c#\c-sharp\Oszthat\obj\Debug\Oszthat.pdb diff --git a/Oszthat/obj/Debug/Oszthat.csproj.SuggestedBindingRedirects.cache b/Oszthat/obj/Debug/Oszthat.csproj.SuggestedBindingRedirects.cache new file mode 100644 index 0000000..e69de29 diff --git a/Oszthat/obj/Debug/Oszthat.exe b/Oszthat/obj/Debug/Oszthat.exe new file mode 100644 index 0000000000000000000000000000000000000000..3e37af2300979d1500a2dc75895d09d31bc900c8 GIT binary patch literal 5120 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 UC?ISupe#$2 + + + + + Debug + AnyCPU + {AAECCD50-3FAC-4567-9BA0-B24776B59DC5} + Library + Properties + OszthatUnitTest + OszthatUnitTest + v4.7.2 + 512 + {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 15.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages + False + UnitTest + + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\packages\MSTest.TestFramework.2.2.7\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll + + + ..\packages\MSTest.TestFramework.2.2.7\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll + + + + + + + + + + + + + + {e1a9c08d-262d-45c4-bb49-eb8062dbc432} + Oszthat + + + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + + \ No newline at end of file diff --git a/OszthatUnitTest/Properties/AssemblyInfo.cs b/OszthatUnitTest/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..7a79e05 --- /dev/null +++ b/OszthatUnitTest/Properties/AssemblyInfo.cs @@ -0,0 +1,20 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("OszthatUnitTest")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("OszthatUnitTest")] +[assembly: AssemblyCopyright("Copyright © 2022")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +[assembly: ComVisible(false)] + +[assembly: Guid("aaeccd50-3fac-4567-9ba0-b24776b59dc5")] + +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/OszthatUnitTest/UnitTest1.cs b/OszthatUnitTest/UnitTest1.cs new file mode 100644 index 0000000..319c29c --- /dev/null +++ b/OszthatUnitTest/UnitTest1.cs @@ -0,0 +1,18 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; +using System; + +namespace OszthatUnitTest { + [TestClass] + public class UnitTest1 { + [TestMethod, ExpectedException(typeof(FormatException))] + public void setSzamTest() { + Oszthat.Szam.setSzam(); + } + + [TestMethod] + public void getSzamTest() { + Oszthat.Szam.szam = 3; + Oszthat.Szam.getSzam(); + } + } +} diff --git a/OszthatUnitTest/bin/Debug/Microsoft.TestPlatform.AdapterUtilities.dll b/OszthatUnitTest/bin/Debug/Microsoft.TestPlatform.AdapterUtilities.dll new file mode 100644 index 0000000000000000000000000000000000000000..94d30e78e93af8418f1e79a1146bf3fa2c575392 GIT binary patch literal 28560 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

M$gtI1U>43v0EB;y8neB7!N$ zQHp7yx~ZY+f*!$owNW^<^-M=IRiH;YJ(T3>s{A7I*5z?#8l`j8HtNZ%(N0yNmPf9o zR#9$ky}hu~?#Of4^|Fg9-FZXeR8dNFrDoLEs|A>Ixsq8;jjh?!FQ>wRICT@&GUv3~ zR)=Mv$j6PEu2g+tRL$*jzI{~_3hHv~c8j5^16H~)ISpsB zQhwZR%e`jl7TnqRdU04-TU93J+E>qN!r#ey(OE?^sl6Hsx)=>p-Q0WpnYyy5XgXE~ zn0d56Wd_4QPlIP??`d^i{hYF%#@^dyuYSEX#Ga1b8(>cleeHWOoas{Z=6dF8@99ky zt?veURBE=pq^Sa13Z?d*;kYI9^6U%_xYH=Lm(8(P*h-r*S)D10T-@H_X1r$tl(7PP zVM~So@%sitUK-49N^A<1}_@7sJK1Db1BYXYG}Y9wE_#+g2wu$(#EFxGlh4J zc0J>#8&|rJ?g2pG-thwe%>LfH6lZYGuEoITu7O^%$BmR4Prj|OviH=u2E3EwR^8JZ zbC;|0zJWy`i+e>I`XnEEllaY3MC`)U@~( zq-W0g($B#*$lRuy66{3u7~I$a7o(}haV8gv-Zew0QK6TJatp}Md2iQSQe;={UT=%^ z$PC(!qs&%c#+mAwSF9o%xD#T_v`1K#!`>{5YU@|h{c8^POM3*PuIZZIdu|N&@XxZ< z(HP*K6MBi03W~fo+AlJF%kQLm+ea6eedDeqP_R97BPsJvXg3)$V13dWInM?iOAy{LO!9q&+lX}nd=>*B4Y z=qX>`T75;lm2^40HJ;bP+d|PgFNC+nc@@01vz)urT=mqT`2nBEp}c9?SpZF)Irp%- z?yYr)@d%vLz|RXjG#KP+tFf8jod89Vi2ems_m>xPxfa+W~hi(?0>^yW-f*v}0 zIKX$GTwHDgjeL_HXH*%YNJ&^=#= z;U4Gms&aXJ=?mc|$&Iay`lLB#jbt+s9*r~A7R-lup z?&V_0jarF0H8pBAEwHCM-{z>W3tH%A(Vi@C+$xFERGFM<$75L6ZMm}AoO_aPXWfp= zYn4hjWGAKQoFh36ZOVxnLQk!8YOjw90lB3+DVCkr(50Y4dTo_)U3hB{fwzJJ z=?qfsa?Cn=F5c)gpi|KP9y?J$DzJ-W+tDEDu_-rGmx(&k8BArphoE}U_ZY5Nw9fs! zhLiQUYjCy!){{3{7@1LvShu?}NfC1XSX1uBs6?C&t(Mu&J&YyPn=1}#)Hq|soJ;4y z;pb_lDAAPA@#&TodF*baIU*ZR1nmwrfONMz8=EUJF9k*Ks#`CMSFL+lT$S#nU4X}C zRCZS<^s?IYf?VZ-XOo%rRT%NBRV~m%ay~ldrPbGrb{CwtT^vE3Ism7FI;b~dW-eXH zNpq9MT^QYf3M9aPsW4bu)Hf>TlJql3J(h6i)ElxKjZ?-o$*icT$If=6-KoQ+aEdU~ zLm@nn#RD0e!=-nPKU5BiZn8 zi+DU&BdiC2gwq6aT>JHP} z+vXK(UO7izyP7t~}^_cRZYTJdp3P4bd~&GrFpLAWnYR-!mZP)uRP=JLq}laNQEr&F)O8xy$68 zo@-0PoiVp-?@72l>0*0Ssq1!K&)IHAca)TR4>LEKo=>fK*vaZe&;GdMr_0JsOw0B9 z1}95%^20h6YY~j*o=Sag#Hmu1Mk9)-;k$hns~Y$ZMS{a{bWTj&xzHgJZcSVkBA#a* zh3h0G`>APy#YQSRyX(_CG{vhmajFtAnBlh4R*xuE7Zk1&41(|QE9~{tv9HSOXdV^C zjIt^mitDDFJTv<0bq1=mJx>d}^ zS)L2J>8R+c)?7oHGjfN=xr-c{G}PVaU;6dt=E@A+rn*Br>tSxKV?l$x-rMMMTR@Md zT@1$+ni}!E)p-NlFbB6{OWncW@hf?0!)LcAHguRlDZi7VhXCgOGD#5)`C2y|b9T+0bO%3k;9s zyFc}HXKcoWjdllZsV}Ina%*w4#)gip)+M#|UN&d?*dr>l*VyV;x`P$k>d|H0%U4%f z3h+V#Jr>9U;NWVtI|y}g8Yk$j0euIFHHh2pd>rT2PzaiSaJZYc6|$Nd8f$CZW@pQp zT~$_QcewR*hvq7*TkR|jnf1eko<@%+&bI0vUT7DpA)yv~hQ)~MzG3QV_IR4>HoETj z^__ZQt=pE1vBQ&d`{};$;l|TL=`3pxL*8mU#&Rb?Ezea|v^H>`&2nv!xw7aEriLveu)k_)9Sh)Sr8r;O`l~r5UTwhgD z>0zQf7~B)MeN~;##XXW+=WItbJ>W*uZJ-WTlUZNysdFcWbJGqFXDUs$Yan(lpWLzO z`zES8)K^IroxXNkosZMp8j8@lY;$Y%UM9~2G`x_Pdwfu{MFXD*;Ys^{aG?w3bn#l- z^b$pHcFd&NbYiZ_j!9JgEyMx^lwwwrbMIF%TsgY!a69QC!8w@meUaOWHI18ebJY)w zm0fKSDjCCzJCGjWJiVN?>hkth)ae^$Wxjxm<9UJ&o3gZdiUo;2<%?wlCQ0=Okha>o z4fLdPHXHY)5_BdJYbl)G!lDPSFL9N1AHLO1VYib!xJkgCF!z{3Y*<+|U?OZt z2MIBlZ22vq^^qq{T| z-dj`d5tFkSa?BKXj@?m#L~#FxJsBSFXai4cu`$#@Ph{vllln#_@=fF1m;=i0Ug9NP9c60*qFu)xvKREo#F7~?okm47wf~2` zFM*G$$kxBz*#l`v2Lv>MMr0M5&PEb6NFV_st0b(#K&QJyBH2uLfUsz~QO0FdTyRHW zT+vZMnQuH*mvs&3tTJKX_vX5M?h|L>u>eQzzNPMtbiovK?G zJO@=8@HUEy+^r_mhq#fW#5a5lKT4l&lN$2v6lJvzWe`Nb018ho^di)1AS>52F`udz z=*CS~{f?6v)mLo-tS{)J(TT;j1=)&NkQOY2(TG{8)-VXMi9Yf2iG0C9);}Ka$SK+X>7_w%Jz^Npn{I4Mw2dbA`q-O$1?LNEZBAJeU24YUxG26Gfsh@6W^Yb7?G zh^d4ijj#b?dxB+BCI&Trjtu6+&y(I^{JfyyBv{*_NOZLqSvS(+l}j0SvDT!dR5W6J z2h%BQx`1ezKuRdq1eQ?ymPM}dU={7CH`$bEPi|0$VL5WSR#3sB>`_rlJ4S(5e4H6hYj@UP8rph&aIbSqW zi2;?aCF(-f>s*XR#du>bx;BfmHloI621O!nhN4bXX@!J}JaR^}l1&O8Goi{su+GdZ zd05_C)&|E-1d7e{$=CrJ@HUtUFd3F7`0j07I%aET85!)NSBN*U!H#B*J|mrpLozz$ zM9G|4fqfHRoG}sXRF9-OU;#oW7x~Eosim~*lr(FFM4a4 zR?j`tX5V!O3bHSp1T$j-T#-fuim?XP=rwl_3E5M2IVMl+xKmS8$qFV!vlBcY1#cjN zgUsB3+Kwc&jwLQ96`=Xng~&JR&GaF(8SrC|U_)TC>;ztIG_tL54rR^}$F(#j1BQZ? z`*z$>+~htUZ+i&TAlC2##HJu{HB-qxv8i&BDI!m;^{TRgco5{lf~bHfC7ouA#@m#A zkwR&;6lfHyI7V6B+-drHk4VRCUHr<$baC4#*44$WG2awV23s|^%4dkC<=`FSqYDO* zBWC6k5i_5Ba{Dz($^FP!kbp-frmu4TCBOrmDIz+=s06RE9*JBPAre(X=xRMlR2htp zSO^k=%#F=W*en|iO$baDooKDD^ENFEv;t0Ziw5_|FOMK0R1p%8Q6u3D8v!KU;k8DO zRMIkxGASTl?h#{dK9LqOUH1au(7Unc;bg^A;$FQ{deV|5)gX#`qf|Yzp;qY_%eQ|- zBiuQmKN17s>{`;ud!5r7;#7ejV7yf%;EGC7sXl8F$-Q83ycoc33;JC(Tvq)SL}ng| zQ0WIzSJd;dQt1vz5BCNe88X^o=rbc7LSPAw8_7I=gLB&03N89O5b<)vsZ(+4c-2yg z0UtL!p-Mj=LSbL+Yh-`)OuXx3l&@48)JWlI#3V}n5|d1ziqB&*gSu`uAXiGgYdqHq z6>U5oJ1&385^@|;L?4VCIcOqU#GzoThIW%Le;}DPV^eF|YH<#OVpmA7*Z~!Et2?>3 zrBw)9ytJscRAKZ?h>X#k%BU1m3?6a9^AuDnv_stV5MTH0T)0xVY_bL-q`;m-5+_;K zmqjX75I{aQ$RDUoJzctJ1|hfzTi)F0mWwZFf-$Koo;!e(E=Xc4YC?NQB}8G)Fsf=@ z@3}S~3YdF`bmT?6Qox*m*ZlQFl9t6FdV2LvnN;bPH*WP@R+EN<<_fUnD2T-ip_f@e z&r&8`e+-#9B&k@xV&~+IIir&&l`+S(Q1MSQ(^L!krZK&ym@ep1eBqPn>8-{bM^7Nj z;r)mh|H#M|bE4?l`jdIOi=GfQX7g}>4unWdE_l$J+LqAVs&bS`ip{ZFcz_V{rY1%D z*hzh0Nd&DFDJ-en{EAV;{6;WX*-FggaF4?3R<1Bqd299Hwbnh9e!CJ&$U5#O1Ic)TVe{l*>xtx*s01{}nv4+ZMZ|P~Y5H>o z59m6Sn2$Bm=+*`Mkm|*{d5FEqP&qhJMa?yRI!q}I(Z5q3pCrBIX&I!TvI(2F>cu-5 z69RQOTBcbl98TSgDJ;n@)R0Ie8KmH{!1VecJZ)c{nCo^`Fgg>WX1;?f=pUUzyr5Nt zEtlScdSDK5(7hKqLc-^iFYsXk7KMUZFcbkD&M`!8t%w^Th8JB}jIZn%teMPXnrua1 zlK~+@aneW$ONpo_bx;@f{Rmx(OjGKVZ89So#&JAuRS}z9jy;rVfF)k+hB~MZjl;=4 z#-S=`Jx+|-(nhDk%CcK2OQINNqR;$w=bJ zS=@3ltk!2WvNM|XRaR@JPfZg6dwMf=dE%E9r0&N9O|tP|@eo*EyfkiP3O8a>gLeh8 z;5-YAt3rGo9E-4WHpzvOvW9wZP|?e>_9mLOENzIEtPwCv9v4Lx2gVB_R~`1T8Cf-&snaO7xS3 ztt=TK&|POLOKOYRG;xMZAw&b845*M3t1ir%;gQ?(4tEY5(@;_IA|nr zX41&b4KfK(66it`vdpVBO(uc5)1>Wh{;ZAp|(Th|$bns9VxHbp0*^=LqX zJM}qqbk2l!P*4bk2!98)x_ShgTYYshUSO)FxS>Lh%(+pVmKN^|A17)^$RjU&43=lee;~BM#d+gs)$ckbj z5@aM9!fB**?PnWBFgV6NVe0$XjkI8#G(?8Ev%@GOEtB!c;Z;`ENCX@a2#2d-xbt`$ zDO4B4*@^{-tJKvSqbuiJFbi(Z`h&(67q#IesEGqz!EVhVZ^IPDB4U4m;MAy9E&cpU zWgtzn5p;`vO@iIb7o)g{E?K5?8c5YSiL%Z&kQ8tXB)ueeg<4>?D&?-<@+ZZN9XZy@ zYHib)mRmDT&D%BP*a?{x0tZ~o38dAxV6EoLdf32{LtHt>v?O&>43-?79_E^(B@d&C z;}5v3Cze+96?u%UTClK`mCBtinkA8#NM+e6QP;qhRGp5Tdcz}G2D!Ja+y@as5a)c( zgnc!14<1v=fv2!HDjgWMbE4`A5Nu=o1 z5K>?paB{vXM=4YDPnAa2pcq-!w1OJqZ@%Tx>t2#n6YCH}5m@N^RE1$v_k^YNsJ?2i zvY-~a%KDY;ErU%G85InW1W-XN!#ILMBHAhxhb2|Kj;?P6u_WWvac=amq(CDGCbYf| zOw(y8(xNP}&Qplq%helrDoRP}vk7IQ%Jk!%1Py=5c~H70!;%o(1_(h=KPLId z9WKBVVNCU53gLwz(e#sIbL62*M!ND_q|j6SD>bE3+At{;BO+J9#H2^%0b#C;(cj@@ z7k42vUm;IQ4r(~YmW$!C3+R{rUbXCp{+bpRyUZf`>UmH@1B{WX<#ZSWI6OwK*SMn? z5IIvYsqDm>tvNB{7>QHv;h=Or4MbMv3te4)3PAysMWKG>jS6|nC!K920Zd7eQc~U= z;9lg4RS1=vc~KKyC`P<7W-tz?@Um{F41FTrMXuuhE~^vS7`WJ4qg+<~#b>!_BZLKH z3~&RPo~>xT%i5}*!P8>O5S0>b zs?4luUeMO4I;pxuHs zP5mKSb#a3wv=dbtmqobMM!aIG&DRx_9JrV_%2ckY3RMc3uDY2o|EQFz<@GJmDZ~NHjyZoVT>~r1;S)v(`S}3 zsOS*H^@n&-W0gCCTi&=%`*CNAVI6zBQ zgser69hbLci9Q#L*AW;xl`E>@a6u`HhSe5lJBoqQElM*sFso8RcqFsRLmcpF9E$V;%6L@2(t7LhH4Uw~CBJecx`o?4$(93CnF>)k9tit1Wa zlvejlmlgo7qA>SHF=iRsQQu6bs_8~U&2TLrr{PX+bq0ad<^~Z|WeN{FsGcWFw^Ti{ zT}x-M5-A{{FX#xLSl@i&TZ2>^ilsPd5*74m6+XEl0vU{)DksidbmS&;OMa_aROkl< zgE$do^{l#}p22tOTt1bg_ewot2(17@7GOLYO1=}L3ah$suD~#eixJJ3QvS}>d@?>P zUkSo#DuN6%npavGSDoTE8_B?l%9FQ#{g)kO8ayWP?wTNWR07Td4XlEtS%$0F%QT@~ zz0C$05N~8^)o^=60qiFf~^=!wBJx=0-C^FHJqb17Mm{L29o z>?`B`_@Fn)5|yCpK}Mr$O@b?m{aG3(?do1E8J6p7o9!Hb)99MXx{e{kmet@qB5rC3 zwbP9g;WWIVD_puJyyJ@9^?2eSL;Hy7Um0Ij!TD<9O079k}P86={QBD#d&SdDBpSh zVq^%~!V@(T;=f;IWQ+1@y~{|oz5-|@S~e~lX`;H^>lvLUSK*B`%PP8&W(t}J92@Dt z*fM7`l4G4|GmD$Wtp1jfQ^t2HIYLHClmM8EL{Vjg*h0O?KohosM&%NM7<6gk49JEa z>XaTr^SU)P${KdXND&Zqm1ZOg@)~N$NLHG`NWhm&k6WXy(OmfcZL`*sfTvRY zt-%*^*J&ehSB*48F7T&va*^Z0-#UB@IB2OE)U=ESJmYn1)M?eUBmDSYDx#Q3TOm@~ z(NewEq%GI9#_70Muq(7x$oBz<5Xxc~3BJnPhH@%Dh_3*<^t2`cVHuu77R+i~n3=8%#rTY=1YWzp|lLg)qlGbMyppqWb1Y}~okofdb{be2YS<*^dK(OjyhJk^k?`))zGF6b8dE#y=po`~jRe}<;h)oh@ zj<|XS$2JK5Yyd~B#t3VDq+C?tK7{`$OE`!?(+0})iQw%ftrqFaggkpi8K!BY%8?ob z)EWUX9(+sbqCh8!9E-1Lj|O#2nJoj)d9@auPe((-!JB=`ff*&f6|FI^USOp4nWsx# zr6}JB+Tb%+n$~Y3t_YXwP%Ib>l{vEjsaZP-P<<#5^+|%j# zn1e$wDL@M2Fc2{s?Vx{`Ir#^N%CX`2@)`nmT4qd2*}~~?kL$rh1Iv+nz!H6|7E1CoIauo_Axf-O8Id!n5r%>|7_f%Mht({2m{ix> zEQ(jIYu#ehJLZ?wQ&K2;P-v}74k!Jl34K+8yA{BZnxM(x5mBqeT5AI6O3UdNG>)$a z4O~aXuSpF;y+RE`&Tf~Z5Jfq&ok?OGR)~@UpDxPH0A`KQyyON^?&$cf%W(~XBiMGM zEITlM**PdtFH4kKOGtjAg=p2iE{>eEBkYyrUe<1i(>HPBJyp5EHsmCXplo~n!nD><&HAvX1Qp?PFI|Y$($er zg?k>IrsbBQO)`K_s{>0&g(%$=IT%#&UJRxZdaZ)$i7JwcnIcXRA=63|r5LKp(z0xW z16G65G-TTHe+QH$pacaj0QRjDxX%PW0WdXArbTPKhqA}_d=G?ir6B|d!MTtE*@*wB z&Xzz~nNTO7B`OQD_Do<@fl_p%U|dV0YfVQfPRm$hvcO%^4KLQ94}`c7Iph&inxjX> zD2*IdYfy+O6@n7ka+FcR&{=@cK6?MJL&?>&A~mw*qBTwoo1#o)7yL4iqrq`s28_ui zoUBgJX~&+@jCU5`Xo1&`>C9&w^=asr7qn4ys6ZO&){1EeuZ_rs*e#=ZXPc&5I}^{G zw32iDP%b#?3RLEJSlx5UQ?a$#pE$1az}S*OF{Z?6C1|DPvV@v0OLcC#4~n0NsZ{#l z+))RvQ4PE)dmLZ%G=CC$EPH}aXCXa=Ue>_{rG#6hkDSXK$YG(iPBkD&8cYO4aw+*e zw!W56PFw*foZ#T=y13)WO1yEh5TG{;KAkI4+t^akf$OM=200=Ktw?C`>UEw%%?E}J zhk#@JdKIXPlZWvq9J`8XxLby{eUM!Cg6ZrVM~l-B>bxr8h4-~_j~9qgf*fQuPulRA zfa*sMWqJ~H)Le0ow?|N?NpPn$EZR`3#_1ZqHdQ&9oK6G*jZR4ea9koL7}k_nSyCe` z`CU7vYgjUXLH*f`HWWVOLCPl`Usabng%k@2(^e_UO6{lR#xFBnK;%T0L8d7AHzqTZ zzNX>T@)fMk9L8xirCU-o3R;fR2TDJv{tH_$lYx}7ICSGgkS-MMSqsLD(o=_C%FzuX zKtSEgDJ;1n2>ZhRY9(F4Be!#UWrakIBDDb~NR_IlIR*WdIONAdI%w;@*g7+TTW9|2 z8Y70`g5Z4ihZAWA2$$iGqoQ+K{h_s?aIHsO6)>? zjjhG@sF`UexDRwjFF0lWZIHWHmxYO7xbVwC9gjK zw`y@{)^$C_fm-f?T8k&ATAcov?U*%;7KR?I1M6!k#jH{r2g+~- zMUA?(e3Vu*Xu*=ikk*V^WuiU;%3hkXXY#KVYFG9jR%?#J#^iF&5OLBo=u8gjnwCN6 zJacKt+MX$Q4oPHa6WDa1n1&$GQkc33}RdR362;#`d0M(Z1k0=P#J5t|G zg4Y*c5@R8fF7&jex2olG!AmYbO$2ULc;Z4G7wEWLC6~^)+{L9RE{$pP*b_M)qC{Bz ze2%RO6q-J)OP^11&f~Jo5nN&kRR*!Jz|@akm(|}l;xZX>oTSgHWu;4S1)R_Bo(;}M3WN?7htvGnUf$HV&Tdg%Sgx5 zj1rn97%`0P4_0zJcKv%hO0FZaYP=}fy3(T%!qj@4WYL?9x&(^YJIGpoyG&}PM^YH5bD?`E1qtv40FTBWK)PiS1U zBdC|7!+y#TYlFD@LL*Yvb(v#GiCXZhbm^wx*VO$oNElmNYJ07>RT~?vcAF`}pwt9f zn$qT40(f({awZsR=F}Ox_XEP@?h%$3mKd@h8@_M0DUV z0m_P#RxcgQAgE8O&4j(eOB&)zT9S)M7jhCU7+2zG9vDbupQTo0iIuny#7tYHqM{zr zI?k~!V9|RaShWdjtl)1r9(()6qsanhi&7E## zq9alk7#ytvQ0s0RIgRCtG+j*k5K`-!6D65K)g_k%*e3VNv}mJHhrw{EscqA(M37(VT#Y#@vL*+O z(9o6MisPkCmprQVk*P9G3KDr&%Wz>}`QJD|x6R{RlI^I?R-M}qbdofB6Ve&Al2i?b zTbCuRk75m}AowH}gt3854soaSjysgjG#6@!G)E~qNJvYgma-@jSRifFp6Ns&XV4eu=d46|C7rilfqsEv-lH$j!B zmZvH+%2yr=WKKM#rXXG2@o_!**KGi(1}?NIlvOT6&{0xUkmG7@0_em_7?jMO%Z5Dr zWWt2A7p}9H7M-50C4kivT{c^45-yp&dFv3jbHvq~k?gB7J+6Xr6bIgG?ykaSzL35pFl>cJxj~7B_yL{a+WPU#io(~ zIC8ozOG|_7%DWVoorT#Xb8KibHA_oQ5fE@eQx1EUElo>sI3tygob1FDoAcPzo;G`b zt-t0-O$Th?;YdoiIXli2*K+{VmKoXP0L+f_?G8KpnB6xEb?l;We>9Ga{+c}@-G;t{ z0y){D>UG^wNJ0c~k+eBY6n1uOb{yVQ0Z>JBIQ?zO>2{WIxO8+xJC2l;BnST`X__-4 z0By57oE^8MgRbcBR#1Ytl30n!NKZ`xlpW5FKPI7*coekh2?~ekcvKrH+R#}+7r&mgSb!Dz&#yLq-qIv zha)rcgaGnHT1v7r+wMqnqzdGpNYd=cPUf|zUH+t!9Z?e%G9$bDq@*|;sgBH!2YY9B z?6RebE1sZ(Qj=v8`4sF&3`)ov03~RHQbuuLljA^#G_;oEU{^YxL3=i5WDi=$&t6BW z3#~rGJ1q%Ba-eu-WS_Itp5sW(>75x4qpBF0=f!omxV|Q?d&G6GxV|s0`^0sBx+}p3 ziht$oxK8%!r!-f@l_%v79&;VHJuQXO|A7bDi&xqh(CAw?$~z<4L8BycD*v_w#G zdQS)b%W=3;x;ex3&hW|jACSeLGu)<=%o%RyC}f7c@@K33X-xA#>@nn$Yr>167gFuX zXp9oo2=FIEtH~RV$v~TfxH-eU9q61xmIF=zPeqB53b&he+f>~)cGKSn0zlG+D^b%K zK3%dfSWIvVK(YnoLDFqGLRE#Kl7W#uF&%Uu0oRY}hF)NFFm~Z}=}6YO6G90VMTu~4 z3Qu^k?BC*^DXC~6H5Kih=?tHrlO)hzUkEPHa*`-G>q}Bx367kk)YKj+si`^HD61ES zaOETkn~{?QaM{lFg_#ulZ$+EVQi3e)DOkl!vG;-)8pw-GsN3$)))XUADc!tH0&|oK z(F&iLj>6ky3A7AuLYr9_Z74$&a)!?#JK06Q)|W~SiB$5@xxVa(ltfV*rUBFmUk1A2 zCkH>!=C~Uun`br^xxR_6+~!95caBo4Ozoy-!E7xt;Yy+?Y2Xj3*KkcFlYXp=Y5qb!X!%Yp8J8~SVD z5oy2Kd5SX=rFdfi`fF)4#zFz~5RE|1>d$Gylu|WxPf6?#eNVmKU*mY3Po>^pL%LoT z3We1%PT^bhB(|~5=3JYRBD)2x;|yzHeb%lg?>g(L62rHEd-OW!8g-H#Hh@+V!|g1E z_RDdGPk_0h0H7c{;0!-cYY{#HhAYQe53xwVADc`>Zkil7v;u>`B;mQB)qbFi4#E5p zh97DJ2<;yO~@@SyMniO|8m@en5=(tFxeEujdeC#2XM z_@l|BgVasXN2(Mk8Z^KGMN7K&cb0M(li5eec(${2bV_%Z`SJzthj z*5FI^v_sKAr$Z%sG2~Jw;}*P_l9c0In(ADdxyU(1sG!%x)eDMdE&`Iy@E)n4_P~C_ z45PQn`uH#7XcsPq1juxWIkoU<~^oqpWpIFzCjJ%nAB4uG9Q1+aGLxO5K{ zkJ9B(k5C=Lm;+9!bA7w8=-qTFKt{II1iTXt%lfcTCLQ0Az8yaaD}J}G!8b+w# zXl~DRCCFieK6iF(g^BM=-F~fL4WuDcm~l9!talkK%;rJ5ai>R2ZrVqO5Z1u@G*J1O zBA?m?L%`9;54pELxe<3=RPUGGRZftL zv^3$p^Nya_Pg3jPNguWFSHeP`iEC!0LfoH|=}H8KKoBXJ>(6(tKPLqu0WSV(SPHAb zn<7(ecKS2Jjd;!k*0)fJ5M@vksVIg~)teFJ*+954pYEQJTLDLOOjH)8Q$oRr34b(O z|B>q7C@S@o@t9`ZvD;x)mxMC_(Pe{!n=Kgr(!&i^kL2%=tmk3?rJwhm;pZ_|rb*N2 zB>E9dGa>5e^xgO$dWZ?#T$otwk<+-e6wq%EoD#bJIgssik-!R^RrJn`B*B%jb8^XB zxB)T=oPfDN zAU(Uui4>*X6i}29Jr)muBe-qxxD+Q$YGj}@GFb2ijGL$ib0)yCK?02o=U*!R1lOP~ zkxht^fex2cgxStWsWY4;5{Gx!C&RR^J76oocsaBg;JKXatdtbANL*>|cN1ATO&*+> z4EH<@^FjRJf0$=*(vF<$9+*t)RYZ;MDGB_Q_@%)~GaYG#y-q8(spi%x`n2OmuZc3?d z?UXVXq)gC+$m9Tffv^P)z2WcGbKr2ctWbP+S&0JVHM^OrSKe1vBPul zKf53HP$GLsiU_iiFb*mLba6VaXfmDA2;A?2iV$VsC^$<~pt1Q&x3aVcYZQp$tXSM# z(=|ArN+AO4A7n>+z^8)O!+}CVe@#Yn)<0?vod8esN}GW$F-Q<85pjx0Nq60FJ2AO@ zriVrs7KFqDeMnN8PxvKO>sd2=Y&N1N2t~k$gjeu1iqIE>cz`AlXy<$g2oQxuV7L3~ zjwXg*0t2^nTnd?|TjOxRv6HYnwo|pSwT|r+ZyJv6X6{ZScc;qT2{{p%jYn4#li`hu zF&|9v=-2|uArf#}`=)dQx9v@}OVQp7nZ#eDEEU4Yj*{$}w8M;v%Pd^Y^-uvc-0=A^D*aM%E6|KoCZ#06 zV5E>0r)As4?=1bdTK}D&P3O{+vCj7lpOEkQD?DbZ z4mi%GuqkL*GS?mj${}KW?>IYNJz7`^;VQ`{Wf&$kOY!zX)T=ofiPykU?8a$2|(SM9VdLGQSUe- zUPliMNylf-j_35^!rWmF0ZE`Q(P(oFqGnnO=#i5-D`RZNFN9rcHL{GIMUe}NifsIn zNH7J?4rpk<13uyUy$PsIX+o@Qgq)JY(*|6mSsZRrQq0Sl+~1y(o&W$&KlP7)NJ@7* zNaoieh1X%$!T%#|&Pcm6vJNB(L*;?#V95k8M8ZmAhaFTlk+7pTW~9=|qPY{g9$_YM zD1?6?DNkmJ^u{kFK7uawmgWn$=&Q*sy*WCfDEoti+plVtw zcswChn5qxOBo-ANL{Y{*r2j}QMegMM8oXdnb*_~yP$QzhLeHn7mOiPGci@Z7Vg-P> zba19%?4`q+*w+EJR8*r90`VSyvrjtib=SC!>z ziJE4^e<{y@Kkt!SU;FeL_h~ovxb>%ueINdG(#Plh_J@QO4eO^}c0vE!kNM#8*LJ`8 z;GWB07?U;7zOh^DvEOxUI`xsgD|?>zSjx(o!#~V(T<}rS$M1bO@PX?-`S3IUqG{bP zeDLPWhAplcc~f9y&i5~uh88!EdjGRiesf!oM=mZMl6{tQVxX_9@qr5qrZ0Tq!tU1f zte(~f9tCok+S{RCn3AVNjFF3B)|LE2IlSRWwHDO%ZW1SVjdE*+d4$4I+-57+_0-FQ zv4tF!sKMngd4xe<)e_ewL#VILBk0Mcb#4`u+y2_M{)Enr!SPQAaB+vRTy2d{io>{C zs5UjoJ&1e*yss?Hw=v{`B8xENNG>SL%>}bjPi+FWzO{cCQHp(UuWwf;SqwR}gDehH zFRoPzil`GZj*Nb_TdwoU0V2N4Jt|%i`LeHhLO|R?YMYFLG$cNx&gTP+iC0W67{)t# zL_r_>%c`k8N~~32tx8_vFdgi0fMRPU^PT;JBRVpEMQ*d}ejELW~9L?x+0bKEm&JnW1yko5ee(9+IQTS3^;~xs(lC0P@O`%7jVQsun zy(V&bKaq)vm?OevqbGnr(TR{0=X#^71i@!)%Bcy!7OySB`{Xcqq|fP7|hG5K|AZvJrcRtchFr*P8*XV=FJ$@v?)L zN5rz789GE-m>miqhB#_e|F7V~+P3Lj65J^C!>y{IgB?`eB- z0%(^&Xp2+{&JYB>=TvQgUE3^|+mX4o z8$w>H6toWa64-3cY~B`&+hY2pQbd8MyrajfORHE6)$c_NzvFcL0Opy=n7Lx*8v4wZ zq5&k9u@K_`7TB}WA&Z}Ra8P?~Ct({uzixw0%`n`!zDgSd$@iNX$yrU{Iu z;Wl#-Z=t1#2_{SO*MS)Z!)Mbm8?kqDVbKXudEUz{DDX~{^tN8ca~ftT9<+cYDA2_p%R&-&z#tt zAEd!T5m$3C?L>GPu+J2f;X<_wYga<^G0qcvgCLU#9&s}5KyWVs3&$J*sv53<8ku-R zSOg0oSm+X*x)#I*56Bfo+?66MluoWV0m{%h3k!F4#GXJwJ2()@nBrlh4I(po9Ynzq z8@k1w>X9*n9av*QCKUY+#0+HxBw-H=+YoUy1ZH>1Jfwh#D6|U_2y`(?7sU`hLlwOZ z3DBs$4kaKtAf^;3+{+uJ0~p)E61D(_GI-)93HCtX$h%Uz3h{~-uxSLPNja7Q-2oyg z4Wr;(iXq#bqJgUr!@(9IT;>0%7#tZlV(E^%Q3hckgpA;b;HM`_VOIx2KI(aqcm&~W z2o{O35!xYfxXTDXnDmQwcVNR9y0!yx2ap?+d*~aH)3F&bEHo+}(FPvDE%-$-CWEUv z#`<~<62#0pJdk-p&*=6uOQ}kvOI_z2i8UcfFTmRh?cf|~NVri7(In03fie({iFF`y zd3Zni1azPdH#_@gAzKn&0e9H5UCB{t;r-xCVZmX1`jPbF!9ZPq#-M`^`%y;R0k80W zBkfZ7b0~*k7RV(CZRwP7WYCuti{zi-q9Tc0FOh2uj~#% zWBtL25(t$oMNLu)@e#!QDH`G3h*yD0l3z#45rwaEL6c+VV5?nQblL&0= zG;glu>h5mv{a5zAE8Qh=6j0j@wqQG`20}fQj&YnPNM;6AK#lX+vnaZTM znI@%-%h{z4XiL!)OD91yLkQ-e9%>8a1I>e5vG68ux!nPQT|7vB_zSAR7yv8YiA@-= zlQ7Y=mTR%D!$|ckbeX;)hqmL=Ol0cZiBL5o$Ci|xG6gM?eb|X=ngdyNr(}ekl!0n7 zaMehGezK=P>p?wY%NIw6#qo^zIaPQzFa>^Gh7$Icac0DFnS!Vx-3e;D-6$m@XV4-j z&lFS_KN?xNACLrY5M;ljr?_!ISJLST@1i6j*oN{9N>FCjV zJJ*7bg=SL`LBZCg4(D2U$MB7NQbmiJMyDt_42OzzY)M6=60OP3V-1!uKbb{3A)3t1 z9BH!iSOBMhh=pbl=1dN_Ft(@we_Cw+b*}BlHmw^3kh_nQs?DGvMrt$60-KWy`a+_p z$2MbkERqd3SQaKvpbm8ekf9Qx9w#3FfxYrKvbZ}KTg6xXV2)HLuL!`RJjN`XI1GD; zd9fu8V@MoVO!<)D?1@P$EHo~~3B$1CcNjJe57WKLbp3`Cv|(DRsPw$J?iSbA#C4Cj z?iJVf#dV*!?oR|z7u)EYgu8H|xRxZOV(0KMF5WV08ZMcO*rJo0`uJ3i3;ZKw!W-f> zNnGc!Qh2erdSwNO7GcavW}h$)_|YAmq*T<~oQUgMc0zCfY*?zU&IQ07ykd<2S45q0 zjbsp7skqG)*WSEBF%yKYjKyu#db!N)M|l>vy1rvUal2ijx0l_@765m$ooe2O*MYFv zsWy#~0}U=0!nM`*!{)VmTkugeYSD7;n1VuIfzRVB$@k@YYtUqIp?^$X zp3mzYQ<#V5YQ6q3`Tn8;q}Jy71BJD@MS;SAx7LHUN|2K`Cf8T&&CM&wA5)lHoaY(i z_jyY4^9u_6g}}2UAH#7HhQqHPaF3J8SGD6iKV|x-Ci4EBwDuJi6#2Zq{336Szof)h z?61koLpSqkK~Qf#2CO!}20vqbzLMgS+%cX)zbCK8>n$9U>nW%$@YVV}Mfn(-{F0iI z{F>UL;=;VzB7aHVm@#7jxG>-6%PT1g6#4T4{@Q@2#_P-V`9b;GqTHgqg51JFPr&0X zs>v6%>!j4b;|-$@A9KjsYrpCAk4V_@=-U$jt>a|3~eAyC&&l)13O( zclixAo@X5G9 z>xzIMuLq{UoCKOQt>a>8S0)>^-M{GTHWFdQBKY>}zXV6JS2Ny=&a`RWa|_%a_m~1t zzS}cK(-zybk?t84)wA#+8gETQU?jd|#ILKCt|)L9j)dmrhjUBy-@L*S7*j_t;~UAq zu%*G<&X1M!A{3Vb z9T5;;|7>m@J9>1K8XUbM5ATvAtnXgsZPB!Jo0jDEwzRC$6a5W1p-*H3fToq%w0!;R zI{a)_TPwcQBR_5JuEHml@twqWev*ZsF%+5NdmMq*)Z8%`5d0^cm40h1G+pN!wg%rF z@-;UG)(zLRF*YrC4G3TE-?kRtL6oo>swUpOkPrfD~f(zL%m`N@5x$NBhch(S}~ z#IF?wT1UDX@!_u4hWeV3F2xVz8vHlXH4)!OY-{5J3j&_vl0mVJ$#2=HHmd?5`e0M>$A7cR%K3lOtFN!W>E=D>_PMIZdG|ar`n)H5 zS8NKL@$Qv#ujzJGaNf47N434Yb=O5N{oeD={Wlb(f405(gdRJ8-hRxV0t;L3Ed17X z@8z>UzW39yukBj6<@XQoX}R^`lP}r(lqxQ`QzWB22r7ti0egE%AofZ5kVeKD(dd2^^eMZ^eQocUzg4B0b&&Zf? zvF3Tj#t=sNB6aRX95W#nlWm` ztP>h;DXG5n(Y4k0!t#EnH7qz{Xv=Qb;NY9Te`w|WXEvE2Tie;S-T!p zzpFDeZButmt8!@C8z}b_>dno>NwP@$40RXc_r`Rb%ZYNUdT81^Xya9+J%+r?@HYxD zPez?nQFj8`+lsn%C~L=WaT?Sh;C_p|B(%Q{`F@l?67Ws|9@hX?GGH|TpGQ!B7s~M8 zt-${Uv^4_wrKA2e$bTQOzCpcNX!B&`PelG^{5=ksAEC^N$XkvwcjA6L+RI0sLcsbH z(nbUJXtZ?|;Qa_(vwCZqrwq%7@?GykJe3;2%DF85uO3VdWVDn19e@t)Z0f~mZqk99 zJJjQ;ZwIIXF6jQ^6ROFS(G_{P8(+3R_#xFJQ5l3+M>NPi9bD!ArRP-71t3u3Uk8+{ z{Q;oH{JPVs?O<4JPC4*_)rZMKd{N#9gjb+AUr&!d1^6fw8mrzZX94w2xjF_-z2jej zJb4tyBmh&#R#RGQxd|rvh5!G=$<@=?o!F+L53jxwg*>sFat?fc^>$PmdEiRX$9=wv z3VGHOAP(&m>lCPs0&6wCF)vRGIPgK%7ouVwxpf7G=g`lx{tnf~9Jrd=6~vLZ9%p?V zG+(ExosTK$>O||yP_+}X@vBB3YW)JLl}`hY{;TI&r$M<7JJh4C11LPCN{F*O-9?=y z9eaBA&nSAl+CkF!tc72G!1a9Cm$6-gJJ=c58&TcZQAd3g|CsBWP|TxRi7pm>qK@@! z>c>&Z*h42(C1sumk z{Be(vJQ{|W^Jun%oqGLOfGq9`B;|r9R9Jz@6G3o8dfV0p2? z4u-=+s8$nOZ6<{E&?$8A^ET~pZ|V-M8HKU+z)vd$58l}8Xv}SGEdID!hvIR#Ws`nc z6>3$v&yot$v|axMs1fl&#XJ9}1kRqpL9~*;tf;5g+Wt?7yPwxY#y+$)VZZFtsp*%^YCGZk^BAE`xZfLzFt7n>_=d#>ZmQ6)0|2 z|w+c)T;_W-aVq->Wnnp&87d2oL02vA)$^};kj zVZ%y_w$=^xTTsY=tO`VHO67x?EItr3dV@6aD@jMztTGo>3{4%sit>35e!TW&0A{eP z0;br&YH-Ui+W*=K+Yg~BLo!uUR&L<FnaW8gtCL;L(|r)|#xsQ#+O_y=y^j3Po^{`xbwEBa!GW{;?7@7z4w@y7bFtJ#Nd z*S7}zu9bC&fV%=sZH-Q=8WFxHlRqU_G%6A^Y7=(jIE5w#Yxuq_pL7;fCn;P7MUhfOm2i*I|o0;_z1 zmJk+HT>e1N*IKXNw*^QLkj%_S|3g?F02_gY+%~5%(m@cnwRvUJSlbW=`gL;2H46f+ z^9DhxK$FW`gGC&yL)k_}mGcDxehh$Ffgh4@29vb}TI-up{7hRk&L+!XVZ1Kjc2zEG zYHlUxn>qDzMaA3X3!oc*jB-N*OVl@^UqeMl{DIo~ra;hT3Q1$LKhQ9Aq$}7=ehIl& z27vsE0G=BIE-SA1O^YkUGB zGENBW-743QNT`+G_Th4{$}5{zcpK{dE?hAbk^zG)0bhM>JxIlthF1BSTLMGfSjlR^ zq9Ew%!tl4CKVGzeF>>4H9|9D9s~#(AfJ6C_&FOLm>G49?nnpDRmO-(A4j^7&S)kQz zD^ifLhDK`WGU9g4X$q_Yn#5*)V}n82u~K5(w!%ZJSkVw@3^av|Y76IiTbnq1V_i~f z8SQfUk6OU%S`lpY*So}XeNZTgph20H^`SaJZ7D0Rxp^+NLB@88tqjVp0n17*$UfH= zDeAHy%C&fX%e~9c_n@nx8H-PT>IJ0;MoJZ`6i2(OkxQ;Zr9>$dFrVNbrCA_Kb%Az> zTuT7Fi58c-Ticpcr61g8~VuG)K28cH!ZErE9!}kzLG}-sTs{q3w}h& zV1NshD2b)e5E2`0V@!EcsOy;3wvwlnngb&%bu^Ybr0*nB+usZ(V^e`u^+AjgO4*K} zL{Eg}2&@Xxl;}Eo26VLB*4vsnJrE3np24xU{z41r=7%z~5{iNqg>iA)PS6LdLalzf zM1@(f2MrB@hWgcDN{}wl#C2gQ6ofKNXK5ixBV9sFaG$qsxZAd7jwsBr;b01Jh2XN& zq-luiOVU%y9Hfh)PyV8@k(6gCVI4wspt)YW(c3O?htMdJLepiWSG2Zb-BxJesbz|; z6B`2FrnVMkdP!!GSGPoNm#E{?2_;Ym9wG3dRQawo`Ri;84Pcc`^`Uww3!NM$Jq658 zddN*e0AxM}wv6hSLM6Iws9(3Oa-uMMzZOf~G6^)tNl?EQN84`Obm^Wb8qt`n>kVfA!AXM{kgW%wb{wocu zm?_Q>VsC`*`qFeqi-B-FM7FM<;T-!%(d&1+CPB#sR(Tt-=VYudHBn7kkaF8P64(<@ z(O76HF?*o;lKzyikH&Cx>K`_3w89oe$u5Ua39lE<2xc_OTA#>9WebZ-$Qw4? z7UT#N7J%R5@LaX-K^y+C)RD@uRvaRfAPA)UbrzLqa(DymHH;&s0v@-mR)~abbgXNl zwDWS@U5)f?MM2IS^$|6OQkg3yzy@Y$JP1DqV`TUpZd<)*Ctq~#*R^9<96&Z^nDLrg z!lv@Z{EDUoV|3jgDdcWjjc5RBL};g9LNn380Xw4F5UMKg*Nh9p4YHeoGDdZ|#2xfwm*Cd>^GbpSOO{DFdAfq6-Dt8zsfrOz(<2#?ydlSsj|U^(en zq0jqF^h~+4^gCoxh)Q!wA0R5&;BOQ2d7u*vwYK@_e!-c>(AY}Nxl4162vh-oixt<2 zQqyj=%t}eRZTSXo%GrZr5M7DJb4O6goHqDGJc&vxBw`DosbTDNatWfiZT%&kRnw*= z6w@ZR?OYql7LOkE9vZQWu^xkBibxQg*os*=W;&d&#L#;J#?Ks73(4z4Zr4mk_NbSG zZN54arsQ*MH)T}DWA>7fAwci~39^J712_oux6JO^PL&=Syk33wpid^;t{KhTcFgM1 z2L{#{5rY-~P3&nM7zn9V{4t(F&B!UK8X2Jn%FKRZ#vSG47+OF$medYnCPYS+vod{b zhjQqcYH35nx$2vgi$ka1ZF|kui3<*O{u1lF{jZzD_ytojEavi)F`KN+925a%p}>p) zZqV&2hquA$6Fm-$7v|xNgPm9oAc$`+rs_OVf2)RRi;uI7Ac+k<9$!qyx}Q^`I{#4msiDMUe7v(MrE(*5#7U{viMKZ$V#(Nd&#fwE4oJF${ zF@rW;^ebNtXz|w&v;Ten&Zr=@)3hZZPkBSbbSw&KV&8or;1;hI zpwiES0Yl#z9S!4Of3gX{SO@Efh9%#d@We@HxheRYztpa+z`j5AZ$)AOZs%%MI9_Tl z_5jSro%~Sk68y>!*s|=d#83Xo1N3kXyOyja^i#jbF%$m?(xjkB!rC%xaQ{rJrZ(4c zah0FO;=iLrEq=j?+suO4hhT1G69u&Gi7#VAr42Z7Pe46NEsF!`c2UNIFHFh*3b3O9 zG|&!5O`F(Nz>Uw`oy4_u`EQzbn32~a+HXg1c_daq6yVyi4{h=be9gd^AOGTNb}QCs zd9`9X1FsX?47|9a9($M^fm#pylV8c@HV%I3lHZ4tYrHHsR?D!!n~O4B`;{B~n4hZ^ z;CoLV{Efk#N6Qyacq0h^F4m4gT~b-XZ)uNB`xQ=EbK4FnBm>QKpbq@m(q zK1nW##r403mXid($!$S?eWy$`?^?%3a&0_58z=ZI8ct_!I}opp#izM!G20?t;HPMg zHDQovDVhKG?-x^Gyd4J$Y1+=hUtIJ5D*S&yfsKRE3A}^ii42M)r;XS!Wy3cawiNr8 z$e5rb!e*`}r z|Aa2^_e5+*S_y@*ONiKdV61KFcAT`K{psF*3wmnTZ2RoJyB6KpE#;{5W7GaLMm; z)6ZX1^Ksk#&rCUI%i^}5Hr>$n^PrcyzyIMozLs%?AH8&O&9^J&d^7i@+phOL^X|JZ z_qby96(d%D_R#LomFG=4<7=y4x!}onx6l6QzVy3pZR<9-@8gwK zw}$Tj{Q76UDBgGOb=Q1hziM^!vuht2eaF*nlUr^&?t_}l4SOo4jPCuz&Xj4*FE!CEs3SLjb5!eZy92RgS9+udv z`0J-fKa{ia`CHPy7*hR1^PuY%eDSVl7PB)GD?O91t?*3D9qt)Q=INGYd0%`c7M4U1 zEQq5)u*THvnqBW}&OOZ2i$#;NGV<~fuFX5TU<`gsBu0aXQAe*SP5$?1CA}EAsZUYS zk$-Hw@yRy(CQmh+9FREOGu2bMW%8Da4HN4^p%%QeymIAAccbx^HQp8;-LkyCxg|K- z*V-@|%nU9D4}*Qly-Ro*H|klzUk&|d$-)*UU`vwPrrT3?p-|b z*;$iMz3<~5cWt=mhk3s{`SS7YiGP3L`N(}9`y(&b-f~{jmeSYfPrU80(2kq8Ts-;w zKP~PkpY+4M<Bn2pU=DC*?!Y@m2LTYEn`=K? zP*HO2kx6HK`DJs%$j1v#N`G_1O_wF-Km1d_Km7Hxzu$P->``eQiw3(|QwHptI@#&d z%CeJBKI)y9Ztiu-)`9Eq^S`}q!n~_qdwJu1!!9_p@G#fn{&`Pp(gVV1DuKSAMee#c!`XyYQQJ_v~)Cus*Bb*2g#8bIN0BrRQIA>&m;Q z{Ik!8rF;K+r#<_Ho6j5=x-aFT**#u+_mel?7_zSN@tr5#^F(-}JM`tvUypN)diSA) zNuO3+yD`*w{QK|sp7i1s=|5lOd8g^(ni0+yK6X_(O1~a7;k&apfBpU5H=pe>X6wek z*VGOfSpK`l3%5+Y)%(d?|2Xf0$`AMT&zw+aTjYtPtcDq=ktQJB>)7~$u(k=En8g!5 z<3FNWaVQT(G9hcYsrqL(W2ekS@He)E`MlWSS=NS?*w*?`yI}-i3W_{9zNWCmQ$izv z({u2c3t28%_&;u>BKBBwV5d2-!yG{7ZvOQ9)}Gn!TV8FtDbjO#!9AbMb+);BOku)wQWb=x;pK)S1w-g%^q~aw%U)q15VmIta9^`GyXPs@rwhej+_0+ALku+RKlmvuRd|~?m_Ri zEbei_q?LDktL^>sAMBAOZ#>ZZj$KE*G-v7uC0l#!8&vt{zIT(BXkdZp)vo6mjw;}fsG?Z-XaYybA(CE+#uU*13UgUaDIWDUFi zhIPw2{(e@?swKCNKJArxS1!7L<*;F&?QeW|*m)z*8(%c@!M&%KpZQ4Iv`1gMZsO?B zrf-_QUFDiTGHdbDO_z_GnSa{r+t29p)>SjUymPr z$h#85mw3V#dBW!#L~6ZCrQuq*-%b?S8@97Y?7A{l&2p&Yu0;_Meu&J1)gN{EEMq9&z1Ef6Q5V zQOV!-`JX5+UA2197g_7B-xykd&X-ROu}>QD&{;k2y>?qt_bc|-eP8F^v}MF`BbLvv z^bJU>Z(4Zi#qX{E@`3Zdm~`}8KOXbkuEI~62H*PrZA14zx91DTZI=zZvdi#Pi>zbNxxHI(d_@w0PZ6k(_iyW6Vy|&u}cTE3k?|G+YH}_swal?xD$BzhH z^YG%?H5(qz@r}7;!`rWa@$Kh_ZM}Tx-e<16??cs#FQ(4J1%);^7F|%+6MHx z&+Gl;r*A%XMB;sKmp$$n_Fr!WMt^+C*IO4|{Hpfy)=9e-d~wNjX;Y{4ysTrubK3An zcU*DZaTP237e4mF?|*;w>eWYnKV{Q^n}3)*sN<`vzP*3>ol`IQ+dtY?9sco0MVGbr zo%-|3cMPg)`}=L*|9JL4x^;Y1f6Q$^diEzyJNNCk+Zui6mp;FF?u?oDcg#C->#EGW zfvZ0$OW$$a4>vx2?cxWwo^i#zljqKuQt`lqC$3m=VtU7vVX2%=Y(kqx!nyX9+One^UNu0w_FGO zPxHCAXS7){G55$s*P2zHpC&w0_DIq#Wk0U*KeBlB*C(9&myPciUUXB#vQw{kb(Lp= zrF!?=0#DwSULDTZ7~|H%JNkAd(^j#=#4Isl)7qZ9r~1b~%zHR6>y?#b=XBh)^qPx*d(HFxk3KQs zcdM@4@$MxLJofR7Q@(h5=4U4*Fa68u_uf=C@xm*dA1=6S)_dE>J@w2TIfeJ7d~(5r z&zeWn95Zq9p4V?$d-nE4#Zb8hQ9Zr|qrdOUIDw3Dvy|JmigTbgp}pcP*q z{`6fZ+?eV8@{z#&hp&16-E$W-jQeTb#luqjY<%gC$kWTFEqY+-2VZ>i!4Cxs{CDPz zSpIg!lp)JExEt2|{P-0Mdfl>jv*)XXlB~~G?06{qrZfKfioN)u(-I1v`lw=R!s4Sl z&U@prC(gR$t8g#(vnOwjIREL1IKMZDn~-43jW|C-+TV>4Vr;_s3X)#5+Y(}96A{~j zkmKNed#GjJbH{h*_-QG>G$-_!rY!-9VYuYun~u6mE)SS zHDhdXc|q=|f(es~Moq|{P?S5^Gl=C9va(IE+|V`(8&4WrTva&Ctlk&c5^+rTL=wM4 zXlAb^G&A;`b8^2~Sy}mz2+fSOGB!gqYyTsJ(0i7Ul@k|ZJuu_Z12foDio+F)^YZAE z(+kMcAOF7`C-8c#qi>D-{B_AuA1vu{$#H4ZPJi|4FLsq|8*%bUn}}vn^ z>mlKJ8~3(eJ%97F$NuHTGuPa^=c9T3kDIsT?yXa6df#jt-Tfb%i_iId{QU`^zPsU# z4gY*)+QZ$ao%2Dr*WSyR+xp##_S6YS+%joZaN%#h`s>A~J=Zj+qT$hVFJ1n({@-S9 z>U+Yu3AOk9RQZPc>hUMmWMvF*YmJO=`tze{Wv4%Nm;2N!mfn}L^}Vkzzt?~5$$1%9 zUw!NSXD$EnrS3mHxZ}b1hQF54_uciUe7<=8icQZq{Nt6hXYZaes^rcO688@~K5uxE za&(UXrTSRh+Fo5;}Kz)T;Z86RGu9?QwCX&SI_WF z$8}{^80RrP(=K3lj=yBF2ZIy4d(u@C38|gL7=c5Z_M4*j#$9V0b}%I(LxQXjTY{qU8&V@I4ldFV5b z+}NXL-{~7mKP`M~z_t?x+_SN5#pCO9j@xz5PTyev#V=i$_ml70ykp+KYVn3E-rPHF z=sR=2PaSgl8$aK?|L`x*+rPf=$ibgochj!)J5D?D)NAg{*n0Yap{HMvx~6dKU*5?J zTzGj})3Lv6e5+#Z8Gj1Ax?$;)_bn>;@SHQpzTRu>y}xx9e$?^t*2cu~TQ+@h=I&RL zE?BUC_8Imw9=fmWPuF{fei+#L@TY&jVe5kJHPi0i-*V5V!=F3ip;s$zoAvmqq4^Ii zOn7!s<8arh)2^_+c84dDd@>Z^0u_`<3y%;%3414E{qG4%2nC4agNqoP#?iVWGF>Pi z3;6gytey|1skY^0{CQ>OSz}!v|Cn{jSKpsnf6?+#bC@2KWb^-{H2pVpFep+-f8_q-eu=630LoU_QGiwJow1< zi=X#qH4S_0@b5Ns-21lo$4L(k%{gkBv-R+SXWcf{f99;39gBZjIiU2@d2N5#b=HLG z<4<_L$Cb(BmYw=l?E?uHm!I;JjO=pT0gL`TRefky`lSs_gCi zE_>$K4@Q^YbHkT!`gdJx`+qyAz&W|%?4LacPP)X#iOpeT^;hzRl~m7wCDkLmU2?2N z6IHt8SHFdw?tif;CMn~h?UV`8*U!z8I6`Tm2k$aN3q3PkBV%e6dN|AmcEuNf$~gtl zs57ur(>TeXu^**3-e_P8EB}DKaYLL%Y=E~Xq$}JOH@#0nrx+Er=kh zFV6m~Barveu?I8k8w;6j=Pq8Tn7{e;vNK-|_nl{bwDRAt@LWlQ&4-Sroy@xb_4$X2 zy~kI~Q+@n%&)e*fa1QOjCKsXKJA-@9d`S@MDm&xg;5hqEjQIbUpK;=*GgQL7OWr#P zoLIlV{#gAd^V%qTnNKq-y(R`RtheA7|Egcvn0j;N*6b(8&wV>p#gOl9;G&{rbN(&! z(rNvXntQhWWqDXI-^fe-Z|Hjcf7_n+8ShStpLILj;pNA3Gt(yY{Lf0NzkAe+d!pJS z%Quo|^IS-i;RSAFfYtO*s%axXoc^HcVZ#f>RnjxFVy*0yBtJgIdoPR%>E zHq2JCP}r*aH090rFZ=6~BUSmU^en^678R~y>*DVe+m*On@bs)3eD1Rvj$Sys{KEU% z<_{083pww{mdsG%NW8TnKrVmp$A=8}pBu6-nQZkv)xF}yj};!PzuzmWOU%wMU)gwi zIp-S7-EWSazR|R$=&bCQ9j%OV4Zo#3wL&a6Mc+EX8#=S9z1W)L*$mxRy$_7_gfzb% z&<{~p{C;AM-z|+D8&}?*wrRQ3qLb$(9ep3P{nVPZSTN1t^6nBN@B7KsUuSmdOCMKU zAGvki9T%JF0fpBWUOF23IP+fk!Hf3{4*Wgy%=b6%{#gH)bLAv0^!J>PVAXriyCA^y z)_YEMnX8-YOyxLs-7>p#3=4;E|6-9c7toLFY^>UR z%uG_uq73Y+6K{U)j}ULXvp&hrl>O8b(|H^VfP-d@4NK|awmMH zfszD2ykiJDTHi7XE?{B^5ilqRmNJmR2VgIhh0#zS*yiJc8UPw)A~%-(mlGE3Eq`o~x9b)6`ns%udn~Qpr7|qXFYrD3 zoXcf*cuIw_v$3}%?_~Zniv&OUo3;0E>pr6J#juH)7ucEP1P?P!9@rR#3^HNq%OVdl zH8FY_NWq69fTK*jD1!|c14){H+3yvt)iZcvo6GpMvu@HUpGQ}BU1)y2+qySxwc=-M zgT`M-1~BOxHoh`wd~VSA!~l5np~C$27h2d?>cszMy{%vOp3TyJQOo|AhbJ_iT>qNs zT(c$DpmD|^$O_m44mgUY#4Bo)c4pgiypvkDZGncNk=8${ zwGUrQPIcQPvhK|jMfv!ML#9QK4*Zk%{~Bg^%|tZy-{na~K@TnoSS;rK{N%H)Y=&p? zvFqmp)Ag4n&2sb8bN5otKBHTUsNi;9m~dsRPfVPF6NrS$A; literal 0 HcmV?d00001 diff --git a/OszthatUnitTest/bin/Debug/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll b/OszthatUnitTest/bin/Debug/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll new file mode 100644 index 0000000000000000000000000000000000000000..cf46ae3a0370c4cbc59f12c10e8743ce46ba5419 GIT binary patch literal 18312 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 z z!B#P46xJ2~nXSD*bn&nIT#FlVTA=vh7cc_HxZ7XHMZ<~ikr5B=6>4j(b%QrnzbhV6&?<&LXK0P^H*VJ66-6CHxklU+>Zp8Ae666S;v1{~ zESBIL5~XV-t-HiE3~kj&B6o>96ht!7BOYRCwYYqUhBr>XVQ7UIT7G-=`@)_}Tvmuj z_q(V1Ly=HWRp6fLk2B-0kqmw+?&LH%|2`F09K@vy8tG5Psq+Y0Ev^r4sopJaQP97p zonn04>8xhx3h{A6RQpPFFtk;h=^3W|O&rM3YVm5r z7P>PwpYq8${de&-Ln}nF=h^CS#Ogz28m(jBiU%1YnV($wt=Ov4NIt(8WeX%F)%tsJ zuYyQE{~>lTv_edn^iuV|#P1I!N?KEk#1G=NEEE+#ig&ZnpQ`^Y{wX2feRW&J9(xOL7=;HxDR(rMUkCKq5e{oGfJL_nIs66!a5z)?pDwx=!u~Aq=HW6w09V~TwGc(uqLQg9z!KuB~B^5Oe@v~C}?i=Wm;Iv z-OWd|R!*bVHrGV7*%A^LjT>H5s@I(vv!q&F6f8?x|yLh;+p9LY6ojCDd@tHqigYc z4F9%yCe%%?9j*;Ik!vRA&pf2IJ)8E!%+19C3Y2V)<$XXFti#xkE$K5D7Shx zHZG|hukp*=&;?I4o>x0j>whZoTrG<8PqC(IqZG8wcXjOn+7AjkXX5R(Gc{)sQEm{U z$39p)TRV%P6)54E+Bw>Rr%~Dp(N%b2&B5AY1y#;?t9F6*3`4R%57*vcXq$HZ#3FIH z_OVP8^Y`1V9ibJu#ATb-51ZfzWP-Yc{dI1T$v@4=NTwZ#mr62XDPv{l+|3aXzz3}+XgF!a1J zy}h#fJPq3*{GK@}?FWXo3X;gnwZqPlX*FYxiQ<-KH$f{zwC$YewOJ{r z_T7+$sC_qTFEi!y#!X``jozfa#n382JK9^c53RNkTWUq#Rc zackan(L1#z=Ml6*d@$y==v~@jYa~?deKvZZcD8~(jJ_1TzmIm?qTS1BSNX=)PqMaX zRp(Q_t9&=ZKe$Ds|B#rV=5~UHNJ#uAf4R0ro35aq{3xJv7}_9?tUq6SP`j6*RpP$n z8`0lt;R}e%^TrjEcSRr7mN2wIG)?{_`j~d7g3gbB6aAg`wSopr`cL$!KJ|P~E4_%g zNa=ZQue5%gwo3e4%d2}%i!11GBUJZ%AIhzJL2Zh1o2KEEELZDq)fTF>Q{a={JMBi5 z7UO&`C}{XTC_htaw-~?VQgAV~Xq7m`{AJo0mG*ad%l9t*D3x~iK5D&ErOnz$T^>|v zk8@omRnPf=;c zl=*;id+-JAEKXY`EYx%Fw6!YjDve6$o9|kcc9xc`+dJ(Jl@`{vAm48pl5KdQPaC#r zTRH7RjoJW>x30Gh+xoO&n>JCUQ5&{t9Sm)QCBCeBo3?-Jwp$Ch%h}W~w z<@H+xzS+UQZJr|sZV_*0q3xkdy*skdfK# z)fB!~PncKQdodF4Z6VAvpwCcB{4YaE`D_DG-Zg{5rTvI!Z(L$DAt`Yo0;wGcamIwb zP=@~}0m7dXA^cSMrf?F9dg|gy?8^neWlf?? zd3BUh36lv6(e_MS;^%^cjM6K??n_i~af%gSN?~`rs0frz6#w5rl!Lp z(#7^k)blf<#O)sN^e_$fOx(j#a{fGm@;=9Pdjv9;k*mEi_}HAbieJJv(|{ESa5C&mFYo7T)!%#U_PB^yTOACO+`3(W~z9-Yb;6^9q() zc$CazYg$cDEvH)EABQ&Zs&BR7G`(HtFNFTH;ZxGP?qwS!6dnh7)uZka4tM8QNxxdA zw1(F@|GrDvmxgd$91&@F>$z-g2z1l7z)~LswLNN)&|l;HHtcDbQJm*xzRTy_#rl>y zPxO+uI~;qy-Eq@LTO8^Nuh<=*8ir-@tKDKjXo)QKNtAljk6k!xxR!mELYh$Ok(ypL z5A^ZjR0iSyIhXK*m_ajMj>Xhu9a5XR%Omx_A=J=q>Y8lL-0NTh?iCBDX-NEy-6Y&6 z_?S_cHc8=kR}w3O10hq=?;ExeuC>-%M9wh zu9!X7Zm!Vn>(+h(oV_wfM%FYw8qaeYi4~>BSm)ER)IayL{@;ppq>y^01)sVOdB3_$ zXiHmfsd6vdzeuF!646WNi=84?&=8n+uWA7GeClDLA>o$#EM&@~uG+*>tv@y7`fjI` zrxd)>f=~71UcY*Ww4nXB-%0P=7qGrgPe*&dPB^nk^uTS46=o9uoieq;mO2{Lbqezf z&I3=Vw{>~K9`#P~AGQZr=WSglYm=p;OMG~4GN=xzQuPGRv()2kN(ug|@S3N^)?A#- z#c5lsO09+ft+(c>E37kA9Op@j{GXM*i+KltQtIvTHDnj+4ouL z;i~Tpb>8NFwbH}&%Sz9ASlvZX$5M}biSr5HqSkBheKVd$t&!8Hho$|c>R{K~)l!A? zXZW5X^A}2fsrqWgVdR+}R*Z@t_x-B#GwP_^)#g92>`SW0+CBH5RFA*3{uuI~y8Pb} z#b4C=EYfWF=c-d`9#iApo7FM(jS{9$RkEG`-Np2s+XC2&xd;0YSNPv|Rt54u#rd3L z>hAexSjT<-?O`k8C*}$N6PGMQ>Cv+;K$<|zxKow1_E}qGyq&5o5J8?4IPPm+zS}zB z|1eG<9q^CM--C93)w$0)=+9zT?V$gi=S~C8n9WLSe@Kt$U4VaY(R-~!{!es4>rGnal4eXXmx&$6tqXne~W&X3LA#1ZKy= zyO}iPXO}JX#O!>yYtWMf&L8n)1?M*_o&7XuW71}+XYlg-te5;-R#*E-+l9V+ z)Z;b%ietyARrN@y6d1k}J>DZ2zDp=}1o2a1z6$9}{;94F-gl}0s%h{Y_q}gPi*>^K zPRLTntzXRB;j=ssu8#XkJ-=MO7inW)#+QI}gz;YOMXm4fm6mYFtIhM%=7ab$>9sv~ zAbnp8)3Khrklx>Nmv3Q-)p3t+aY3M9!J^nr3aMvgO?-6K^JJmUtFDzLox^5x9)m*6-dj12WIOw0- zG2`p8#?jYdHE`y+B?n7xD_>T!$NJJmpuazJ)-)vj*O#_H1AL->+B#HnX?YkN{_9IG zDLL$4-q(e6UEegc4W(}-w5TQ0`r4AipbvDcx49x#a+~n&aVb6STT_nx7!S{w^murh zk@3p4n-UE^zl=P6KM@zoE$RDt*hoRqkyi3Et+57$F;9>9gn@R(RypLU26?nYl zP4x=`_m^B3UKEJPT@ml==PX11^>Z!^9QP6b=e)P!jM4#b&zz>f9;vg(`~A?`zzJ{P zvi89J-cPLt{n6$?;IQ|nNROaSr8?sM>_xiy6e;BD{Fx$}`ed`6`@>@S`BcI#=-Bm(-pZ^=!- z@aFI>ff|{G8sX#`nTum3!QQ_K9P_?+)u)ht1}7Ar^nMlRl8*a6y75cMe^T-{hrf?J z&mlbN<%xqQF^c=FCxO*{Xg||+0`0$f%kPl>c2QZd$NPH!>fj#l6P@dV&v`ha6D6B! zHwIrS={Rds@J@ALbFb9dhxFOA-iGuxL@#;o?ZNv?4xM!uAQ#WMH~5_Qp@!G0W8M#} z{#@{w4SDRsqrnrP@ZY2TH&<2STM^VYmT&F)p9UW(A%Ehn^XLBxrIZ)uR|hA&A2@ej zsRhl(nw$~Kcd5S;`8$_2mXh)}1rEc${}Hz4ftG1V!2>N#(AU*CoW6o~t3b9r_ zfg3~f$`AQJ-MhN{F{$~8|L@Q0DvtyxtwLgnO@Ff2H?;|AQ;`SW~{^7u{FhV_m!b73fXD_`j8z2JN3{Y7BA z&~p)N))7RYp`ANGF`TQxJl^lKE_U({^>FEwV;{S2yme3L39j)=u9?v_s-4*JApYS8_ z;oTeV1LW=v4~Cuwtt_?2bJ3Y!2$8qHj5?nIm$qB~xavLrcJS(xs7VflZ+6MQp+5bM zr!88UBi3ti`ulll;dy~SFPQvFFj?ulptX8#kM#@ja%W&!o))h7mBuh|_l5;19XNAj z?(d}qA3XVwc*^0c_p3JFZg9fyrGAgK<+tHpV$x$> z+sxHU2R2W6}b0KuO*O$;%zSU9}d@6F7zK=y|mKu^GOhVP3-(u zq?Z2(?rQGdfP8RHcjY62w=Q`A7LE2O;{9po?#koV{Q7;BrT(6pu!>m6puLxRC>L*r zex`prD4tU0tk3w4!gk~B?0C+!rz(VJ_&$R4Hgy8&`_+}zAz1hsq#sfrMS73=4$_aP z-yr>jI%i%8tGJ~|KciM5{k&R(^ieg1^fC4CNdI2_1nCN^?2M3t4x1l>mhzn$Qk(Jl zju3R!jb{e&%;k@eX02zD?zdh*`ey4FD80q{HPYLx&{@F5nuqiw*4aoOuvQ}dgtYh}#b>;`X$44N8A*-Hh}W&p#l&&GQ4K@Av%lti?EG`d2IJu!?>5 z%sM>xTXS9=-bt|x=@Qk6^a9l@>61&C-?FR@Px5}|{5re~{@X}9B)wdH7x{jHzh37{i_unIHBa%A?BtI$nDan6G@{daT zWt`Cb*orT!&!Og*rSx(2WnlQ6q{?DDVM#BQ^m<7rt&agd1hWk{KyEF}eI z0LiYrv1}gr>M==ubC|cv+1g@B+a-Op{734@^5c>}T*1<#k{*||a~|)yM^d%mN9z0) zH!dVZ)t+PBu|h3j{jj8$N_xGdlahW&!J57fwEtg`RANBXYZVYa}Le9d(O}2l$M`U9xH!C`9%4R<%i3^ zR{nJP@9;hQ+KR@Cbj7b!{Z`4N}Gn=SA>QV`D;&4(U16ET^y@O1w|Jb!;So}NDkQKwpHfOGLK zfb$SrS&FyFt-u$bUW4aVF2FI|i}1yhb*dlHs~rf=eX8Qx#R_}QLrAwT*@^U1Yj-1^ zdnwXBK=I1VFTHnER za2eB7Ez=)JJ3(ooyIbIwGo8GM>DQ~7emcx_Taf8X(t;;Q-0ob!bVnQ0(8V)IuetbU zq#tj;73sMv?nHXY{J%na)vAvmU2xgQkuF{T5YiL99OHj&WjZM7a!Fq=={s5oPfB`? zqO(xu=~51^}%o)1p-psWGu3e|*kCBDb)0Ux&_y#QS9 zLDcbLq;>Mvi;IwY5beDLxHTa4s7CO(g*)4kZ-zCraDNB#m#8k}FGcE6?|^i8@T5!+ z(mNp~9(5O<`SRfH0DVaBR#zbX5TwO}$iNPye}(TvcwqCcMtTq4`|iP$7}p~GYrOZ{ z1ML$*`Vm-I>^7@7(vRZ3g4kn3MB1Ysz|l+(EaC{#$MNP2kNP^^>flk|R2ih-QsYQ} zfVVez)DIB}_Nbr2E_-nH`Ua#wS8qZ3OEm?|e}xqLy|CBVvqI`ozgBNW`Wy9jqzkMA zfGEBxSA${1oAL&updW_wA z5ZrVd=A=UX1LkponzmY@jfT7zBaM02BOUf$f^?U+9qAjq9hkkpKxw<0L}|O4Mrpgc z5vA?wZ75xfr}v_u%^~%1^)M)Kwe^fO*R#=co9C0BuX_H~^MdEs9=spfyV5)3{g(G% zz0Z5E@%jCg{$>8n{@3}3{2%b|Df#QbwWWtkKU(_5(yx^ML+NiyTg$F2`()YY${s6w zqU_scKPX!_r)SO;bG|d@k8{?QUs>^nisvgn6;g9c=Vs^LF!yb9ADsKCxi?h$CY`rf zThOcbRr0+m*tW_2cYEa&c4eGe%zv=*Cpe8zSnuGn*)aVc8Eo$4{`+9%dza3xH-(+3 z!aj~-=d7@gz1V>&taolZVflS*SVx$993QOwYwRcTzp$iygBTmrSM_J>E0|%xW^kgT z0Xn4-v)+WiX8f(jUkmVK&(UW!WTYnd--;j?>I9sc_Ke``J9Z@}-lo<9F>Z*opl{RjRoD!<)3SpE|)VJqi$`2M#h z&$xK?ZMa>VH3w3> zC)1Hir{kHi)MyN^_8UlP3XQ}^vpw1Ph<#T_Iv&Y_B6|}%BiTf1v_GE7;KwfQOvN*7 zs%w8DleJ;}@klzlt9>-a0kmf_@sXjV&>i^OW%q_GP`uHXA6i7NOoc@ z-k>`Am#*8eW^gc>ibj%|1{D+jHnYd74QdBipsBG4#To|*)f7f9kHW?3ua^3SbYDYg zV#De|{uZS);3uUt%D|E~6*1%uF==PR@ZezkXlis~BsHEHz)#4Nrjf?T!oIz-j3AhsOE`*_z09uHjd}qF*Qi{LcxGnnpbl= z)VkhOY&;p?pf+`=?w&1O13kT6Y9O^^pj+*XX9ua5GGowHJGS>I&w5asfPx+yj}H#2EP1mZ%3~y=w#Or}*N!CZtDek`OgwF0pdlyM86S>}Ck?=E zwKI~9sNO_0oyw$!vvqEo)D6Tl*=-ooa4J1g*W1s__E=;Lny1cy`{U`oiD*1iC++0A z>y2k40_hmfWK$#US-fF%2+B=hk-V$UM8wfRrj-InKL2M-E&07FF&azl%WNMX%_c_T z>^R0DxrSHQmyCA~ss24lo$1CMP+?jyw#A0jNG6&}Clf;yru-XYLpgvW{F%B<@zHoX z5mm8NlylWHn#o2+VP;}77wWQ9Vsu~^lxs}IMX7@e?CYJF>W*=!=FzMTX&*|ZO&+FC zG%A^4AVnRkdNSMN!?xDx8%>JkP&-DGENhRk+^AvHi=*9WJf_B?@np6;o&|rzgu8k& zSH{yrsZ6|Ul#FA5S4GmJkhpwc&**R}AJUahr_ydv*ZypLG!~Cx?skr*GTB5lV~XP^ zFXGrW(W%MI4Vj`)3~OwxGc^)PjEa>41>qoQ+!LoLV;?&P+6M(?@`odz-4PhGn99h@ zZm&uwz{d1BK$Mt@natjdOlC4kQ`$vogG7_cyrz=CMQ%=I>HtVa6RgrVo*f&{b|%u$ z2dOkQ7{KfLQ{(Aqd_!Vzusab?0zfg!xUOfBWW(;k!HtpVZp@5*OJ6#%6D$SAH@mDe zo{U4Vauy=jfBP^-$j%@dJ@5yholtRh0~$ebGG=w0YwRS&(kuJWjQ|Vs#b`7U&&=+q zXEd4|kH!1PhfK3Yt7)Th$|@Mqsmn1@MJO^GrR{O3x5VCf!PL#JNJnT#HbJ94yU^*1 z&ech)89_Z+1#mp5*Rd-BE*VHCM!H60in^)?6wM}v6LH93OovS7P}+ktR}`gw zutOBqLzn9&p_TTGW0K-ImyHUhH$wf8=}wKKA>P`PA=mAM83urY)EgO%?2N~tQ+K5_ zgc8*rg}%?&K2Or)ft77WRfc=n|zJ?B!0<|^K#oqq~lq3iBypo2CCJ}Vv4fzxMFbwokHb$Ta`$ipE)=tRiZ~{sw8HdZ`D&oZ2ZIaSdaI8*u zwj&jbliGAj;PHUQnQiG5IR-*YW79Lb4F->z+%C4w;VEk+GI=*~HraMmTT;pQk7q=D z0Pje_^#bQAK^eN3dAt3s@qPU^L|7b%v9uqO*K6l7lCJ&H_!#MGU~!s2a{*6HZi4;Y z9vNjn1uHt$9~tJN6O$s6wS|5>IuUROG^ z6{g7&xb5=LEa-KJ>dDQj4H!1FY+s`XR_D^w+>*)HUV2*FIp@N(V6xFvmTE{qda@a z;uB~uU?8QHmUP2ujA!5(%hfPPj;5eMGzHp|$<)4H6enOnwO$lYUT5K;Xvf|#n0>{r zsc~ffbw*}ivMe;#;0i7kq1zj5?jz!z0^DOLVT`yKjO9?ixCW79lNw1cFeI=+SH*bj)34TRO29{-(_u@Q%7u zNpt(Klck~3Z4xgo_oRbuX>q^oC0Y&%4nm@8c@T%eh_q84W&BNQVvzDHEReg`AkUDR zj3!sYcFc{`QV8bB<(AaWo$<6`cT*$p8eQhrJ!&|efHF?%n^WTXMv}(e(@>&@g$5Ld z)(iQi+s22IiKyKHh?rlBd-DN|+Kd*$(y6g{I;(plk--w+%g&AD*-<0bvw+4(U6~;< zz`5`$GQ#+B4|INf0CQ*7n6?716PG46mRn2bFKJ<$vhYu%DcraN4hx$$*F?=MCtcu_ zU0qf=TOduMt6=&h59e@*u#RNPE^)~iRNqL>#iG#ZTVYk@!nVA*0=f-yA@Lf?^+v`R z#>rLbjDx56fsq`NpRv0Qr)4Dy^P2;+?PhEHp zb~M0@+~rl&*=u6@G}|I+)CDPpx=Eq~p9|}bM2tCE;4-79K(+7OnT{ip3_!8Cn2f$Z z%ks|n&^VRC#xx=~G$|U~6-&T1D*(b2+W|IR3Fx##WV4(?4S{?VK-O(&7#z&lU2)Yb zeZRt$vP}Ogy@zb!Op$mTK$w=O9|KRqn8uYzCFE>ug4(1HzUn?kBWxVGlfkj&c`K}Z zRU*5~soWcx7>bJ#RKwa|fIXz}j-k!81gOwqEN9BprtyU9ikxM;dL|mDFsZX(xrXT1 zJB^tM+?pDt`N=QLRog)?Id^5xI;Xo3=HdjWsDK-s0_aIuwB@&ip(A*i$ZOpgnSn&s z-Kn-4skE?_!mw=KX!C5wG$mkAoEG51Y8Yf#{$C* zbQp))#vy*UxX^3s7z7>8Kk$x(<2Gl5SraW zo~u2(xHF!KrW3M&ate)7%h=NdA3Vo;nr{UohGh0jF5{G&VZr-|jYqRi0kuJ{6)J+< zg}H^I11Dmas|b26GSZ$-M<$9@$2QKWtH3tW#1L2wNeIZf&EB+A8z&%ro%GVj^ z|56!P5VMW88$rXaq3T&`?<&i^vs3VzI&ez%(5@S!LL<7nP2W zU>*K)weo!(1db$p|1wSI7w2}T6tOb%UVug+c=iAaYZS%5u+nxJq|mh=VI`v^TRWVvv36U^~_%kL4o#)_V=OXsn z!@fjxI-~3BJpt2sXEp}0V;qYR;>c}=&YZ~vB8Y+55edwv1dpgbQ5(_-+3y+M1;a&G z;8gQCfN9Fq89$$u5uTV85+~I#gHRXJ9;)O^H6pnZ&g+$hh^Z!#rWDqc2xzcnMyW9A zIY$nju|jZcY#$@TGDb>0(5It|%?!EX(6#3vmt-y1Wh^hM<0_yF>blH`Gc7HEHMm5j z#ggk`lS$jbd4byEEP0|JA+_AqmHoDhDv-QQ9C9q%mlEWQv!R}SlGW6+8x%_Ey|+Y$;>pwM_hq)N zbIx9!OK+Z5!|wXI1*AD2lF4f>S3H9AI2fNOXGMzG5#=rMy|2!2V#y@7jF5D0vyA3LcK&Uj=*x}{?*#y~PeB!74XBNk)3 zF;bu%sZtAW!v;AuTme+q6Q<;rX5Vl@IRHV;lQPp z!eK#d@i^CHT|-E1^f_-%IaUPDMQ1YUT!1=x7rc)sQO6=;=ae~TIvf}&WBW-8YS?6< zq*0PntOm@bi=MK zr`i0B17SF7r$fxfZ_e}cl-~c%hmk>wLb7p$ta%E9;T_#Q=7!7car?5L3rOtsN0P8h z?gB081wdO(Z^GA@xz^Av(pliap?JCv>+cZ*PU;}MxTU$}M!UYmQCQNLdwhLqJwb-S zHv$IDZu_$;V*APkU`|8ch)w-jq%Z|G>W=1e_Cq0%_HifrrQ;M(bFD1~&&9cbvXjpv zkvx;-f&-yk+>omUW3XIR9PizZ5f_wgPwjI-pwnDe_L%K13f3oD(dXGW)rYfW`6f?} za^zQnH7%$ED_97Dr<8x!Y-`F0Y(XXa+=wBHiVZmw669Q$nh9KhXpWe)orXKM$F*xo z?m-P5(4zd&py0G&g2yXR*3*~UPp5Z+HAf`oK&XZDA=m*YS|bmzj}+lL*-VzF=3DbVW%tb}Zx!2FH;@A13B&UNX!|g30`0ZmGvS?B4OzS0ld32Gb-G#&-3-~8qeZ5=BWGdnM9@G z*A1j}cXAYnidpt0^jRUf1n205GK$!=y@w)YSf|RbAS}B-ayjB;!LCr&hz_RGQiNg3 zZkwj7fVPfv+sFlAYq?z?POFbE2Au8zLU2#^c6t?_sa(WU*UV=GbY>FvoKGkn9~-~hs# z=9HniWPfSZo^-Z3`{`;&Kr22BA=K8VQvfF$yWkyQ7nqOy0z2;6kD#`Fdv9WtyNjB{ zY9#MUGY;1h@w7P{q;mtXi8dTQK8raeptS6ptB48b<{%K(T%Oif79Kf>UhT~S_vk6l zRfBfS<%QAoak-7-IC=*Z+(+zkFsN_J3|wvlGFmbZ7|pL!pmjANOan9tj*`tUgWf+` z(IyicHtlFXS_-b~XpK z4;$!0@iA17S=8!F*`sofFk%aP507rRAUrdt&o?S#S!fTg!r?UFZ3lkbk6Red=e85v zf9f*X^}@0x#{KoQ+6d2WRA=)M$EtgORyN?$c>_{e9tbpU1Qn;?y(PgT2Fc9kcoJff zL(g2A^~hBadY0!kX@GiOwbn!(Qd}co>r?w8<2skD;yi9<7XTMK2ThCv#`c9X5KOHZ z6DRm=)^mAB#ujd{ob<6Y)e0YSzsW+d0j3MM~2(g6ZHH5TU%dO1Tv^p=q8K zc9$X#w?=A9_<(V7oq=A_8Md5Lms*WVeMeQ=Ky!2t`qW`sLf zeRU-xV+bVoBBYdnErgGkIW6Wob=1vtZ}uQ02LzqhBQG0VIslcgq+&$rG6Nl2^yyjS&uE#*C@MIO~iZz`5 z*oiHX#9%LW;+^B>gs>4?GR^vd;B;Q>s%Ql{$?d+!g-_vmIUA15&hG-^VAxoXk#3& ziD1GfNZSu=ut#l!9Sq1quviYjHen86zq>T&oIB-LnjI$zyEt&#!Q94N#(}d(uo%3A zED>^^Ja7Rq9nj`>NFg8Yx*Bs@VWSes%&4yYIJOWga(rC03fIVzfrQxyo$;0&@`vjh z-Rr~48Fl$6)^OsxqT}2V){NdM%*9Tj$n;4$uG(@&1;a<+DL(5|Bh zz*)hm2-j1L89aDU0AO=wtpZBqT|snk^wL!uQaY3tmjbv?JvzDUc9X z37k7TTMQ?jv*Uv2;#Dq~ap7Gc+f_4BuDWfxQ)y75Iv|z{ya7T*=e~9#%r2rgKAD8XCR-k3>(?#uuFI_*pk7@8E5cM@$w7B2oRnXVO_288KRaY z9TY8sR_@2}p*~Xi*W5421%+&i;LI)d1QBhqH|H>39+?rg*3W7g2nTW%o^;x&14ezr z+EvIX>^vey=Uk`cJd=nEThD58Q6@OA5rejiDB@URX#0!!-j#{?K8*?X4KivZvR{5VP!LWA zfZZ$x`Vd^z0V(@TlIjIZ?TREfPJmrC9Yk5%S^Y?-JMeDrznJ(ti~zQ{x!j3o&Em<$ z+__~Y{8}zfSc#AIsDwU|1m6J{d}LfmH~?D;iFX~NT}eFlkp+@U8Ou%>kjr`Eu+c(iDk|IqKPS)L=W$O70f}6R>f?G{qNDt3gW^rpu|5D(gH;JUl#%xf0ztj}Z4M&BB6Z-{C_w^ozmhCdk zKAuJuuZW>!?dqDcoJeUKY=b#UX|8{KIIns8TAH`>j?DGs7UC1L%0TGcOxlIA-?MQ- zX%iskgZc!Q-0{Ryb8_HPm9*jho9Kj@KgU(VfnR`OaFP?- zbe`>;V!Kc13uBe@P3^qB9LSA?U^Zn(SkSfj+hAx~q8xM+54>OpjmwH0(5`9+Ybl?4 zXEo=(>WPv~GgHYq5F@eyE2%?Hxp$xBP9~^~JY~x_r3i*D|Bs+V!P``@4v+B!cKayC z92wPfDyvFFnC&Y*K;V7_k+iF$L=)W15(Nwv1zX#6GKJV?I(cDX#A$-0Fn1115Q?1O zVl%8lw4c(Rn+V=xE)Z7e8O<+}Wq%%UCmCtf^^C2#8?+IB*STg@*~mA}j~a?#TR(SI z;2P0Ck^VSyPA%PG{xyk$rKAH)IO@)xH98UnK>IG}mXnkf7JxQ#Pa!;A9N?fsoE^G5 za5Pv9%<6nKOtG@eDaz2?$!?3~^pn#&yRq%117!QNfVOpXYT2%vgP`=An@M{ML?U}y zY}{%~W&{BDyKU@Q(&woP%Vf;3cxd4%=e7qKo-`!xFUjNZynK_5XdQc2_w3_P2I915AWmBb(qq)G0T9JP80W1J7O_>ZxzBbJjg1kq z&`(H>4!VyL_ocS6iQS z&(+HBh3_26-JQ!*8{{tVBFjtOgm=P*@jluV-WH2(OT1$?j5lV60jws$I-@^q(#`b<4;->Pxl@KHrCO2`!WruFQ;mHa#zihV8CC_7 zSd`xljt)njQf8X+=}SF>HM~8u8TDGoeG<}7zA=2JTB!l4TJ`)F8&ITxDaia+f> zGZN}L1X6$r6+5}aF%jB0=9F~*4rq>c=(J9uXe7@VYYwBq*ohX&OB^rT|v*9)e$v>x;POCYtV=M8|*v5%gfqC)aXTiE6SL*%UxX(PM z7S&?vZtSvQk7Nev8c$g|MA!1BoviVTzaz34 zmYiKOkyg%~F3b!U4TCH2*dj_m$FmAK!_cP=qav%S(mK>+`#9SQ8Wg&e11O;xDRc$v zfB|vAYny~p+UOd`pjblzAC-bZjoFv|2~W?4Rw1VVmp*) zV+qznY7f4WiP4K?DtgWKj@~rOy-bep^mI|n=5rXQj^rjvTpDYqHVi4%mRTj-X05o_ zLRXpUNc%<9=A2eDOv4<7UJLzM?U&kI$@rHOw<_$)n4YU_>gi@FWRzwnXi156uaHb9 zG(>K$JAL$)+p2822$uHrt*PCwWTxmj#Kd+o#1I9A3K7>{RzGHfgK?scJ)o>!f@;fa zJlG6aiUF*Ab>;Aawy#F(%+>~B;E)i4?2{ZlTat?F3^QYTb`0SPRioQt8*6S>9&W8x zTpNY+lyVvR?ga)MjgF$4a#>bYaY;=KbIWiqqT&8)5cO6UIHtJ+6uuHIG2lsFE;Ns7 z@()7X+FD4d!__*qBR+K=>NIANV&kM&q5a}|Cu z+Uo^ltOt}%bpm3{Nv2@ptACTfJH6pwh8yVXxrg8U|MkIFX+usm&IujSr{X$HJ0@WXaA^V1jWs9GLz!X%&WF7MME6^?T3Pl(UGx0xzVPP+ruO=Ei&Le#ZE~YhuYY4C0 zdNrzL)6dbXK%bZ*_l_>ft_?H%hPibx&5V-keOooZ9c_(){k5}dLyPXN(^wS7AIz2w z!=&0|QR~oq%AIq$K+heuxpS8$UF60ncOWXi z6}9-(y@MmVH0|@pVm4(8<97LBOM?konf#U^who+AeaA%O84>0b@i>gRHW2|bv=g8q zbI`bI7-I*^k*B_*>UR7TPTMg4*Zvblgi=VqWvBF@*^Hi>-fyJ`O^=8k7u5%s)r9dr z9fLJdFUBvl_OxnstgUcOqm8_poH|vsi^HP5Vz7?GVe_;?B+KkgF!CIw9B&#$4HJaP zcVCPPq=~`yRmaO=;N}M7$M8;Wjp_ER8(yxB9l*&}fAVJNM4EC1+a4j@aG*p^RT}@`nV~;XA`ah3h|VpT4KF2xGg?PnsQIT1_&0ak*k= zj^F9brIF8K%;u2MHHTL_$ZEwI7a`MYF0Ov^)jOxfIZQ@>%(1k(5#p*PGwCZbOb0p^JEO0?j@| znt!je=r%e6&t7AI?p+vX{_@c_E|rdsP-f_6bFoR{(K&Tn3vBeyBOkd9GaS&#=kgJn zD02M9%=YOIhRVYzl0rlZ2f_GR7U@pYmph4oGzIng8GehK}`+yDF>o=o{UJd|=UB1QiP5TRE_ZLC?*NTu1Z)ocNW;m=PI%8xS41GL)o#&OhkN#R@;T2nkx zvAD499$?Pd=lJAltx~!=40WhlJ~w4%<8nYIKtpl_>#Mmu`@m2N$BWwM=DXJ9HMc~o z`Q*D;fsd-@a}4_mp_4QD6YDSWZ z?q7F(+Oz!~ORE3%QRT%6dtcbHf_@}b^O+4X@yPWKf7oM%LM1Gle5?LB?hmW#sre=I zt0y0{f`nC1-iu~DgdDYkzOb6dW^1JS^muT7bz-)_xQ zr8t_SbAhmjm6cs$0gd21RT7XEkf7m^XP#B6yrJspL!sK5V5Q|*q!y`=ugt0*2`XY! zHGP1&ZEwv)%utQFF~A^c9E`N^BD>hh9+x4Om?@+*%A!(>{Ck*lid2mJw$r+UPv zES9S3=|{>GuB)fNfGh~)3C#=m>_+BSO&&yB)#ahmu#yYnuYn{Zunt%uT=m8X0pt2OzAZ3>URPY3q7qzRVpF)Q$$4I6E%8T;an%4yUp6bajR8QU_ zWG6*K$bH3w;T_4pDh2#;R6c^Cd90cR^FT5WU=Lc0Kz0-@QXW63H+dviGqkwUt|DzN z(luQ-EV4?<*kq_iT98_^dp_H=vItY|?r)K`u#6}aLwBB3Ef@j_OYQ<|$Zvir2JRj` zInd$^KjjJ4cuGQ?d@>+M2N2kRta`r{0y71fz1a$tVV;nC5EXgnlbBD^d&(~iKK%^1 zc=|bz=*2mhFO%oo)yxTaatr`=stpA(Q&ue}8TF5a&JE0|p8Wgj$!}Co-i~Xj3mpE5 z6*Vs8lu#*{55@QwKqLNIKLx4QPxhT|m%{0GM5W~$(%vaz2(Xa z%7&_^N~@Y?<` zEF=g&!7$R=>dBWNX_i!*ydARWp#TSi&_h*IJ1i=$scS8dw~Sd0;b4DHg%Ap1o}|2b zDncPaicY7l22&x0RPsvcCPHW;1VYt-2;d?#3dvfeRt7jVr0{;sQq|O+>TGTG)HrmP z5SS7Ky$N#O&e2aEmN{R>La3;jm4SN8sIP96GwXRV(;f;aB6cqnkpd3o3T(^Kqk$7u0kR7*oT`v{szIgNd5Voq-W$|6 z+T^~yEI^J!Wegs4gmzOZ6rv*47?%U1IY4iI^&ZjMLid>~pnItK2o2R#fxV=*Xdvnp z8N(5FICVs5dn6ddRMnIQz&sBJ@gIg9gqiY$yx!VCpnB>NgEA-$J@|xusi`<~wdmMT z=)3?1GMPY#k5^AU0UU5EI)M$t(4W8s@DHL(sVB%z9Ti%}aX~9X`b{12>K`$N zXh$kePT?nrCgudZRa2GvpWW0`kmKs9W1$f6t^uVmRW-qY$F9S&?}2LkJ&s?9l~MG; zIRPJpS+qjP2lm=eR-oeAPn9zD0%x##N-W#db7l#+vLu1OltO%k*STd0Nf03GxVnSE<8;0xl87fFmD zi2;TMVET{@_rmvFST$W+p@{PLq>dVVP%1j<1L~dY)5UE3mWbS9ihb1y_x4`jL z0l#Si8n}9TRcO8_G{MMjiX8#n8kntxcA;&{TouZt85>T2kG77$`(an)q5@hDnj0W$ zxY9BMKU-W!>ClW2Tp+hV9HF6TR^R}JS_5=G9?qJZ1o<$GFJym3h1z3X}mfogfFb49npu3zQJq>D8go8OHcf zF_{5D_ATguHj%?F%mrqO&QJApmv)t=yO0fpy;e<4ZOwcRs{&qx<~iCX3=h>Yl80fh zz_PUzUT}b=eX6MnA2>ENFB}9lJXJG~RL^{&7UppZJOO<<-CjN2gBu|iQ;>_PQh0Ru zshT-@mX=}8N!9cfFlB;tC^SbLtzNNsApdkPiU?yRI-g(=slG5!MkA|ntzN39Pui#y zg41WUfz+y#$0}@B59G%`A!F6_4wUJ%dgd$I;7lKa0@d@c8Cs+SY=yOn+)5Uc{KbJY zqz8aqbIZw~mYce{dg_ERKWy(N&Js%ScQYm{P(6KhE!pmS@W3!%s6a%guU>#<1;F+q z!Sw?-yR0cNhlMv=93008g*<(&v_fS#dALYcG}lxcbQtEXwuZhZr|4c;X`&@4o2r>7 z-1^dJyTfQuCS>MGA^rke=4&(wMEh1xN3;h9I#Im}ai-@}gUviu3GawQK_yH9`XuL1 zN7e`C5&;yExcXPSZ&2L$2Uzt~RrPcn_OeE<>6IL%Zl=11+`#{$nv&bKzCtx-SgDpO zwgygX_00EBvy_>q*eJ#iE;sc>&r74Ez;vx%i9$xrxT>c|%AtC4ng?#FxXM!(ilLSj z{LC|A9;d3O-zxtO)Y`uFbHe|C(@;WwUf@sl%n8a)^@zyhTSXAxN>zb-Lm^^34f}Xd zZk6`vpdG1&PO+PRYj92&uFjEaS+tYL5Go8?F95M_3RXA6Q^C*m!QiLgc+Hgyn}2v9 z_=!sf-%|Bd+1kkusijK!CY8EPDOKV@g6r-5?G4HY&mR8=p8V}qkA3{u&p%vu<45Oy z{0|k+J^P0@JpZ1z|IWKNIkV-^dl!B3;vfIzv8TR!^m~8#&6atKJ-5tBuX}0o_P0EC zd|%~zz8cuqxANJ>(0l*G|NPU>E`IdhpFMjbcFmUZTaSM1(28q^F8pZx!rI?{dwurW z)T(Dr{Ka*DGxxFgtv|o!9n~H21>uoLZ*A^<-8XN&?oWF@X7>9Ziocs-bFt=4lzet0 zjM+0ZwqU&a5Se{W|K&C(&U^X2iC`T< zdEC-LhOx}JDyu^nl}BUttId4Z4&RD%74|;(ww!CQQ&G5QaE;>AJKP9l%)eja?~Jpj zP`g3t$N8?G-4GvT*r!@hfe*s)sbPlw|I`kGrl&=nXr*xDsYims+$@^>tv9Cm4Zuqd; zS7#d4se}J|b1b8LJ=iTP(TCMT`DfD4(1#B4kEEBoMXIv!;9Gs6#(KHE%}f8g+mV%p z&)J3YAG2F#v==IyNxEcX?n3&SHBd@wYb7`iZQ zzi57ab6q|Ezc6fnoN4`Nd>o(4OkNn)--E;3zz0&haFvNp%hWZa~Nbs{$P{t1jo&olHK# z*Pmtiws zN!8RLR=JDGVJ7!78TXdd22n`@dZnhX{VaNp$qTq~@*twdD%b+)$;Dg=^Gb|+_UxxCbu*BdnPYn7($|d=G7mVJPlAYGE+Us zT+d9HDC@N(JYWwTdo2F2Goq?%-~;QShj@8|j;u^^pGBPLayxDhf4ZFRbxrjMAa+@( z9LqyY4yFbZL)UkbYgd47IWz1vD{m|nG%>ItP!;ytem}zx4`UXv@U#1e&x?@85g^3& zF)0Y8VLGuMc%h8=N~Z{lN$4LAF+x5SaCuF5DCE(B7{tp@aEXokUM!Pxw%{p6&mm7G zs z8|x-4q_A`Xs$4^HNrT=ofR_;D|^rWv|OR8NhR+m~o}Pp}gAR8LJ*hU9-j1nURE(ujCsXt=x#gJ}#w4ZSFy{gnOe2C`h{F$WsY%o{?JRsDAx|%2C z7wwUgopbU;N?OnX2FMlSG#Elt#s(s$&s1it!D$&`9mdi^XFDKM(fn3G z+OTkE;0;Zob#rAZxH>dNIi>Ibl>*pm@*dL3T->QI?v#=T^u+`7!~UFJKu-@>Pd8A@ zQ_64QCCP5O#4n~7H?rcqFgJ-GbV?EQs?624>0A}|GaPr5Og-kN(gVc-;kd~z$Hdu1 zfMMSTQ{7;<3cPH5O!vTux`cOElJ4vfiU^S*X#c~g6j(il_ z01{OZnxniBZHCqm!-bBWZbt-;VnZVVOuwr zT0M!Xf0fh2DxMr{*{G&3_DP>psad&Dnzkj z6k-Yi3JiuJ3%Ph}NI^Lf{8m#P_Z?YC9(8Xgqa$tXM1&(Ejf{g=O=HKyYXz}Ivb0hM z+gC`HrR;cWX~?$%2N{@H-W4i@KaVd6lg8u*Ka$BQZ%~CwR~TC+uv>z14VLk*pvpr^ zJ;waKl8#GyzofTI`lO^!N&2{?N71lHa?eTn0y_61N6mni!1qk=l=K1V_R-RynNrjZ z;;$xXsUUo1g*Yw(ECZf1`E~NG{2*U6F5kPucaiYbGPp;Ij5yL@%y>Zay~rUup&ICK1KjWrBM zR<}l*Bk@?dLo#ar7Vv9{RiSTx!Yiy`0G)Y8z@*ihftR$o8V+Sn8wZd+5|wz_pV+8l3a zZEdJuGaPNHZ*6UD9&SYYO^x;Ow#Im*esw$=Z;r2NY>3uJR^#(CYla(Inpa1gqxI3Y zrf5TC2wkpO9cyW9j7B0Ys~geXa3t2!6l-k;bht4VUp?H=8ebic4A-NtHk35BG(^`# z8XB9MT2?o#X{>LFMeEy|nwpzqtAS@*6Xsw7bC5Bgv^AfoS#qS#Y|D=C) zN&g0rKGr!g8W~AM@y&?+6ZoK+`8Y=7tI6ik)y=KZNVKUnG8AiTi>`?cH8z678i&El zktWE>aMKWeTB6amHEj(o^{Zp`jYE+LR$2AU!_Cp*XnkuFq@t;9sI6&exOL6y#^Kgj zTVqR03mRVC6pc2vwZ>axjq%uUynZMWZHUIe^uw(Ut&PnMt5?^@>m#j04Q&k#ZL5bM zK&?YV&BHCtL(!o%@y3S6hNd<3!?6a)P;(2o5)C71SPeA5t8I|nrllc1 zJlxV485(W@DvfOo@fbw5xjx>|06A=Eh_^&qV@b&CP9*RX{qjD$?8pDQt|^LwuF0vQ&8kSHLaJ^-Xp4EqDj8 zrOvL~+BJ~-VAX|Yp}e=bZZ(u^=!{&E{Y5W+->aJUgmWcf)XiEdl|#Gk%0vd=n(5Du z#}cVJ`BVu$uQQxVkJP=47VgJKYVf5$d}0(|@8g<&JS(KRVBIEsfD7N#jDu9E^oH2r zV53rFmfHO)bh;g1hD(i{PKRZd@^^M^+_4EKGh{9?o$Z!tvf~2yo|AmvF;h2?N+l7T zz~^E|cP1y~Gm55=AG?di)4_(-Iu@a4aAR{rb4yc4)2cOVT3S{$H*H+KYGX%J)2hae z^)0O}-L2itja|~I?v|6@0)F1u(cQhOxuLUZRrAKiu2pN8Z0ugs-m<2lzGF@E8r^tv zKWxw%OU$ zx~jdYv13(hL+8eg8{4|un_4=_!-qpk{lnLP_C;cI5P!*86fncpA5eZ(!yrp$cc#D7 zZTjqwXKDG*#2^3L*51i~rGLD8`m>K+^qwD|^RYu$et6CYFIo5KgC`!{`ef_kitql- z-lv}X%b%R_A76jd?ibhJSmC|y;g45*arAYsxpv88^ror&up%3r|s-M9u5sjmUX|9I}_I{dvhpj1r9qM%+h*8Ff9~kE;9vO>g{Dn|8jdG6SM+ zdu7d#ny3D>%HwEs`zveIU0dg8KPyuW=D5yXarTrHQd2)f#783eXl6GsPpe`rmu6>_pY$M_s43Qj>7x>SyY*BRNMLf>>3?ZuIhrg=aMP!bi=XTRJ#GQo z2s&+*M^2LJAet@8zNgphslK=JPiXqGQxU;D|9>*v`Y@AScz{NK{3r}PQB)cXrsi8E zrzXTMG}Fk91m|4@eDdVwKD_dN+}6T9L_X`LpUWsVG!1j}^@J*=()-hHHACWq%K4vP zxfYGOwn_LLrrC>E2P&_<34i7Pv4#)W^=sN2@i>_A~pQj8vpV13r=VUy-HoP$s%Y)*3c58Jf zYr`q|R$(~zi9x^{Zde|ckG~J&+nnJnkVxQ;a5fc2zq<8!j5lTyF$3Ti0K@zsqpPKT zyAsh|z(GbANhVYK;KW+*J{6|j5sW{^t|D;JGntn|FBTq}C>)v|*@X_``w}1(DeOXj zZTL-%Hy~-c!RkB(mkv*ZGN^gA8dY4efbXmy-ctN6U4kWEI&=D>)qF-A_&NMtk|Pp5H9Dk|Uc zjD<1%;AJ$)@92gz_#S-{pQMb3?Qb(0jPtvg@8(`|oydZ<%l=Gy;asm3bPcn{AT8Nl z`WDK@Nq9Sok3jSL(_!!hK0%xeM|VZi_;PJLovE|dpR%V}Ek@;=kmM{1WSzD3l(##G z&T2@;X@tdmZnVzoK4p6{+!1`_J#3FD9La{0@dyC;n7T8rI;*ZIUBfGi-~sVpX{GWO zZ((p4KUa>=7stYw>G9F{{xN)a6<2Zn#e19RiBaf^OcjUxc5t3_gw zF_1SroKt|fk>6#eieO{>nz-o|Bmgvxuf^wz>caRCHwcr4vL5B?Tb9z`0?;@$K9r2Z zdZa`U^(0VKFZ_SnyAp6Jx3;|})0PZd%Dj;wV!vBtDD#{#WQxpF#@I51?5!hG87gDL zmMJM?sgx-iRb*-=By>0kB`W`Vv86hl@4Np0`>yj{|Np

)qBntalC1TF-OeYprL2 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 + + + Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions + + + +

+ Used to specify deployment item (file or directory) for per-test deployment. + Can be specified on test class or test method. + Can have multiple instances of the attribute to specify more than one item. + The item path can be absolute or relative, if relative, it is relative to RunConfig.RelativePathRoot. + + + [DeploymentItem("file1.xml")] + [DeploymentItem("file2.xml", "DataFiles")] + [DeploymentItem("bin\Debug")] + + + + + Initializes a new instance of the class. + + The file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies. + + + + Initializes a new instance of the class + + The relative or absolute path to the file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies. + The path of the directory to which the items are to be copied. It can be either absolute or relative to the deployment directory. All files and directories identified by will be copied to this directory. + + + + Gets the path of the source file or folder to be copied. + + + + + Gets the path of the directory to which the item is copied. + + + + + Contains literals for names of sections, properties, attributes. + + + + + The configuration section name. + + + + + The configuration section name for Beta2. Left around for compat. + + + + + Section name for Data source. + + + + + Attribute name for 'Name' + + + + + Attribute name for 'ConnectionString' + + + + + Attribute name for 'DataAccessMethod' + + + + + Attribute name for 'DataTable' + + + + + The Data Source element. + + + + + Gets or sets the name of this configuration. + + + + + Gets or sets the ConnectionStringSettings element in <connectionStrings> section in the .config file. + + + + + Gets or sets the name of the data table. + + + + + Gets or sets the type of data access. + + + + + Gets the key name. + + + + + Gets the configuration properties. + + + + + The Data source element collection. + + + + + Initializes a new instance of the class. + + + + + Returns the configuration element with the specified key. + + The key of the element to return. + The System.Configuration.ConfigurationElement with the specified key; otherwise, null. + + + + Gets the configuration element at the specified index location. + + The index location of the System.Configuration.ConfigurationElement to return. + + + + Adds a configuration element to the configuration element collection. + + The System.Configuration.ConfigurationElement to add. + + + + Removes a System.Configuration.ConfigurationElement from the collection. + + The . + + + + Removes a System.Configuration.ConfigurationElement from the collection. + + The key of the System.Configuration.ConfigurationElement to remove. + + + + Removes all configuration element objects from the collection. + + + + + Creates a new . + + A new . + + + + Gets the element key for a specified configuration element. + + The System.Configuration.ConfigurationElement to return the key for. + An System.Object that acts as the key for the specified System.Configuration.ConfigurationElement. + + + + Adds a configuration element to the configuration element collection. + + The System.Configuration.ConfigurationElement to add. + + + + Adds a configuration element to the configuration element collection. + + The index location at which to add the specified System.Configuration.ConfigurationElement. + The System.Configuration.ConfigurationElement to add. + + + + Support for configuration settings for Tests. + + + + + Gets the configuration section for tests. + + + + + The configuration section for tests. + + + + + Gets the data sources for this configuration section. + + + + + Gets the collection of properties. + + + The of properties for the element. + + + + + This class represents the live NON public INTERNAL object in the system + + + + + Initializes a new instance of the class that contains + the already existing object of the private class + + object that serves as starting point to reach the private members + the de-referencing string using . that points to the object to be retrieved as in m_X.m_Y.m_Z + + + + Initializes a new instance of the class that wraps the + specified type. + + Name of the assembly + fully qualified name + Arguments to pass to the constructor + + + + Initializes a new instance of the class that wraps the + specified type. + + Name of the assembly + fully qualified name + An array of objects representing the number, order, and type of the parameters for the constructor to get + Arguments to pass to the constructor + + + + Initializes a new instance of the class that wraps the + specified type. + + type of the object to create + Arguments to pass to the constructor + + + + Initializes a new instance of the class that wraps the + specified type. + + type of the object to create + An array of objects representing the number, order, and type of the parameters for the constructor to get + Arguments to pass to the constructor + + + + Initializes a new instance of the class that wraps + the given object. + + object to wrap + + + + Initializes a new instance of the class that wraps + the given object. + + object to wrap + PrivateType object + + + + Gets or sets the target + + + + + Gets the type of underlying object + + + + + returns the hash code of the target object + + int representing hashcode of the target object + + + + Equals + + Object with whom to compare + returns true if the objects are equal. + + + + Invokes the specified method + + Name of the method + Arguments to pass to the member to invoke. + Result of method call + + + + Invokes the specified method + + Name of the method + An array of objects representing the number, order, and type of the parameters for the method to get. + Arguments to pass to the member to invoke. + Result of method call + + + + Invokes the specified method + + Name of the method + An array of objects representing the number, order, and type of the parameters for the method to get. + Arguments to pass to the member to invoke. + An array of types corresponding to the types of the generic arguments. + Result of method call + + + + Invokes the specified method + + Name of the method + Arguments to pass to the member to invoke. + Culture info + Result of method call + + + + Invokes the specified method + + Name of the method + An array of objects representing the number, order, and type of the parameters for the method to get. + Arguments to pass to the member to invoke. + Culture info + Result of method call + + + + Invokes the specified method + + Name of the method + A bitmask comprised of one or more that specify how the search is conducted. + Arguments to pass to the member to invoke. + Result of method call + + + + Invokes the specified method + + Name of the method + A bitmask comprised of one or more that specify how the search is conducted. + An array of objects representing the number, order, and type of the parameters for the method to get. + Arguments to pass to the member to invoke. + Result of method call + + + + Invokes the specified method + + Name of the method + A bitmask comprised of one or more that specify how the search is conducted. + Arguments to pass to the member to invoke. + Culture info + Result of method call + + + + Invokes the specified method + + Name of the method + A bitmask comprised of one or more that specify how the search is conducted. + An array of objects representing the number, order, and type of the parameters for the method to get. + Arguments to pass to the member to invoke. + Culture info + Result of method call + + + + Invokes the specified method + + Name of the method + A bitmask comprised of one or more that specify how the search is conducted. + An array of objects representing the number, order, and type of the parameters for the method to get. + Arguments to pass to the member to invoke. + Culture info + An array of types corresponding to the types of the generic arguments. + Result of method call + + + + Gets the array element using array of subscripts for each dimension + + Name of the member + the indices of array + An array of elements. + + + + Sets the array element using array of subscripts for each dimension + + Name of the member + Value to set + the indices of array + + + + Gets the array element using array of subscripts for each dimension + + Name of the member + A bitmask comprised of one or more that specify how the search is conducted. + the indices of array + An array of elements. + + + + Sets the array element using array of subscripts for each dimension + + Name of the member + A bitmask comprised of one or more that specify how the search is conducted. + Value to set + the indices of array + + + + Get the field + + Name of the field + The field. + + + + Sets the field + + Name of the field + value to set + + + + Gets the field + + Name of the field + A bitmask comprised of one or more that specify how the search is conducted. + The field. + + + + Sets the field + + Name of the field + A bitmask comprised of one or more that specify how the search is conducted. + value to set + + + + Get the field or property + + Name of the field or property + The field or property. + + + + Sets the field or property + + Name of the field or property + value to set + + + + Gets the field or property + + Name of the field or property + A bitmask comprised of one or more that specify how the search is conducted. + The field or property. + + + + Sets the field or property + + Name of the field or property + A bitmask comprised of one or more that specify how the search is conducted. + value to set + + + + Gets the property + + Name of the property + Arguments to pass to the member to invoke. + The property. + + + + Gets the property + + Name of the property + An array of objects representing the number, order, and type of the parameters for the indexed property. + Arguments to pass to the member to invoke. + The property. + + + + Set the property + + Name of the property + value to set + Arguments to pass to the member to invoke. + + + + Set the property + + Name of the property + An array of objects representing the number, order, and type of the parameters for the indexed property. + value to set + Arguments to pass to the member to invoke. + + + + Gets the property + + Name of the property + A bitmask comprised of one or more that specify how the search is conducted. + Arguments to pass to the member to invoke. + The property. + + + + Gets the property + + Name of the property + A bitmask comprised of one or more that specify how the search is conducted. + An array of objects representing the number, order, and type of the parameters for the indexed property. + Arguments to pass to the member to invoke. + The property. + + + + Sets the property + + Name of the property + A bitmask comprised of one or more that specify how the search is conducted. + value to set + Arguments to pass to the member to invoke. + + + + Sets the property + + Name of the property + A bitmask comprised of one or more that specify how the search is conducted. + value to set + An array of objects representing the number, order, and type of the parameters for the indexed property. + Arguments to pass to the member to invoke. + + + + Validate access string + + access string + + + + Invokes the member + + Name of the member + Additional attributes + Arguments for the invocation + Culture + Result of the invocation + + + + Extracts the most appropriate generic method signature from the current private type. + + The name of the method in which to search the signature cache. + An array of types corresponding to the types of the parameters in which to search. + An array of types corresponding to the types of the generic arguments. + to further filter the method signatures. + Modifiers for parameters. + A method info instance. + + + + This class represents a private class for the Private Accessors functionality. + + + + + Binds to everything + + + + + The wrapped type. + + + + + Initializes a new instance of the class that contains the private type. + + Assembly name + fully qualified name of the + + + + Initializes a new instance of the class that contains + the private type from the type object + + The wrapped Type to create. + + + + Gets the referenced type + + + + + Invokes static member + + Name of the member to InvokeHelper + Arguments to the invocation + Result of invocation + + + + Invokes static member + + Name of the member to InvokeHelper + An array of objects representing the number, order, and type of the parameters for the method to invoke + Arguments to the invocation + Result of invocation + + + + Invokes static member + + Name of the member to InvokeHelper + An array of objects representing the number, order, and type of the parameters for the method to invoke + Arguments to the invocation + An array of types corresponding to the types of the generic arguments. + Result of invocation + + + + Invokes the static method + + Name of the member + Arguments to the invocation + Culture + Result of invocation + + + + Invokes the static method + + Name of the member + An array of objects representing the number, order, and type of the parameters for the method to invoke + Arguments to the invocation + Culture info + Result of invocation + + + + Invokes the static method + + Name of the member + Additional invocation attributes + Arguments to the invocation + Result of invocation + + + + Invokes the static method + + Name of the member + Additional invocation attributes + An array of objects representing the number, order, and type of the parameters for the method to invoke + Arguments to the invocation + Result of invocation + + + + Invokes the static method + + Name of the member + Additional invocation attributes + Arguments to the invocation + Culture + Result of invocation + + + + Invokes the static method + + Name of the member + Additional invocation attributes + /// An array of objects representing the number, order, and type of the parameters for the method to invoke + Arguments to the invocation + Culture + Result of invocation + + + + Invokes the static method + + Name of the member + Additional invocation attributes + /// An array of objects representing the number, order, and type of the parameters for the method to invoke + Arguments to the invocation + Culture + An array of types corresponding to the types of the generic arguments. + Result of invocation + + + + Gets the element in static array + + Name of the array + + A one-dimensional array of 32-bit integers that represent the indexes specifying + the position of the element to get. For instance, to access a[10][11] the indices would be {10,11} + + element at the specified location + + + + Sets the member of the static array + + Name of the array + value to set + + A one-dimensional array of 32-bit integers that represent the indexes specifying + the position of the element to set. For instance, to access a[10][11] the array would be {10,11} + + + + + Gets the element in static array + + Name of the array + Additional InvokeHelper attributes + + A one-dimensional array of 32-bit integers that represent the indexes specifying + the position of the element to get. For instance, to access a[10][11] the array would be {10,11} + + element at the specified location + + + + Sets the member of the static array + + Name of the array + Additional InvokeHelper attributes + value to set + + A one-dimensional array of 32-bit integers that represent the indexes specifying + the position of the element to set. For instance, to access a[10][11] the array would be {10,11} + + + + + Gets the static field + + Name of the field + The static field. + + + + Sets the static field + + Name of the field + Argument to the invocation + + + + Gets the static field using specified InvokeHelper attributes + + Name of the field + Additional invocation attributes + The static field. + + + + Sets the static field using binding attributes + + Name of the field + Additional InvokeHelper attributes + Argument to the invocation + + + + Gets the static field or property + + Name of the field or property + The static field or property. + + + + Sets the static field or property + + Name of the field or property + Value to be set to field or property + + + + Gets the static field or property using specified InvokeHelper attributes + + Name of the field or property + Additional invocation attributes + The static field or property. + + + + Sets the static field or property using binding attributes + + Name of the field or property + Additional invocation attributes + Value to be set to field or property + + + + Gets the static property + + Name of the field or property + Arguments to the invocation + The static property. + + + + Sets the static property + + Name of the property + Value to be set to field or property + Arguments to pass to the member to invoke. + + + + Sets the static property + + Name of the property + Value to be set to field or property + An array of objects representing the number, order, and type of the parameters for the indexed property. + Arguments to pass to the member to invoke. + + + + Gets the static property + + Name of the property + Additional invocation attributes. + Arguments to pass to the member to invoke. + The static property. + + + + Gets the static property + + Name of the property + Additional invocation attributes. + An array of objects representing the number, order, and type of the parameters for the indexed property. + Arguments to pass to the member to invoke. + The static property. + + + + Sets the static property + + Name of the property + Additional invocation attributes. + Value to be set to field or property + Optional index values for indexed properties. The indexes of indexed properties are zero-based. This value should be null for non-indexed properties. + + + + Sets the static property + + Name of the property + Additional invocation attributes. + Value to be set to field or property + An array of objects representing the number, order, and type of the parameters for the indexed property. + Arguments to pass to the member to invoke. + + + + Invokes the static method + + Name of the member + Additional invocation attributes + Arguments to the invocation + Culture + Result of invocation + + + + Provides method signature discovery for generic methods. + + + + + Compares the method signatures of these two methods. + + Method1 + Method2 + True if they are similar. + + + + Gets the hierarchy depth from the base type of the provided type. + + The type. + The depth. + + + + Finds most derived type with the provided information. + + Candidate matches. + Number of matches. + The most derived method. + + + + Given a set of methods that match the base criteria, select a method based + upon an array of types. This method should return null if no method matches + the criteria. + + Binding specification. + Candidate matches + Types + Parameter modifiers. + Matching method. Null if none matches. + + + + Finds the most specific method in the two methods provided. + + Method 1 + Parameter order for Method 1 + Parameter array type. + Method 2 + Parameter order for Method 2 + >Parameter array type. + Types to search in. + Args. + An int representing the match. + + + + Finds the most specific method in the two methods provided. + + Method 1 + Parameter order for Method 1 + Parameter array type. + Method 2 + Parameter order for Method 2 + >Parameter array type. + Types to search in. + Args. + An int representing the match. + + + + Finds the most specific type in the two provided. + + Type 1 + Type 2 + The defining type + An int representing the match. + + + + Used to store information that is provided to unit tests. + + + + + Gets test properties for a test. + + + + + Gets or sets the cancellation token source. This token source is canceled when test times out. Also when explicitly canceled the test will be aborted + + + + + Gets the current data row when test is used for data driven testing. + + + + + Gets current data connection row when test is used for data driven testing. + + + + + Gets base directory for the test run, under which deployed files and result files are stored. + + + + + Gets directory for files deployed for the test run. Typically a subdirectory of . + + + + + Gets base directory for results from the test run. Typically a subdirectory of . + + + + + Gets directory for test run result files. Typically a subdirectory of . + + + + + Gets directory for test result files. + + + + + Gets base directory for the test run, under which deployed files and result files are stored. + Same as . Use that property instead. + + + + + Gets directory for files deployed for the test run. Typically a subdirectory of . + Same as . Use that property instead. + + + + + Gets directory for test run result files. Typically a subdirectory of . + Same as . Use that property for test run result files, or + for test-specific result files instead. + + + + + Gets the Fully-qualified name of the class containing the test method currently being executed + + + + + Gets the fully specified type name metadata format. + + + + + Gets the fully specified method name metadata format. + + + + + Gets the name of the test method currently being executed + + + + + Gets the current test outcome. + + + + + Used to write trace messages while the test is running + + formatted message string + + + + Used to write trace messages while the test is running + + format string + the arguments + + + + Used to write trace messages while the test is running + + formatted message string + + + + Used to write trace messages while the test is running + + format string + the arguments + + + + Adds a file name to the list in TestResult.ResultFileNames + + + The file Name. + + + + + Begins a timer with the specified name + + Name of the timer. + + + + Ends a timer with the specified name + + Name of the timer. + + + diff --git a/OszthatUnitTest/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.dll b/OszthatUnitTest/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.dll new file mode 100644 index 0000000000000000000000000000000000000000..ad03efb4e5bc3a4fb9733bc0d453a07a73d8575a GIT binary patch literal 71056 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]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 + + + Microsoft.VisualStudio.TestPlatform.TestFramework + + + +

+ The presence of this attribute in a test assembly causes MSTest to discover test classes (i.e. classes having + the "TestClass" attribute) and test methods (i.e. methods having the "TestMethod" attribute) which are declared + internal in addition to test classes and test methods which are declared public. When this attribute is not + present in a test assembly the tests in such classes will not be discovered. + + + + + Specification to disable parallelization. + + + + + Enum to specify whether the data is stored as property or in method. + + + + + Data is declared as property. + + + + + Data is declared in method. + + + + + Attribute to define dynamic data for a test method. + + + + + Initializes a new instance of the class. + + + The name of method or property having test data. + + + Specifies whether the data is stored as property or in method. + + + + + Initializes a new instance of the class when the test data is present in a class different + from test method's class. + + + The name of method or property having test data. + + + The declaring type of property or method having data. Useful in cases when declaring type is present in a class different from + test method's class. If null, declaring type defaults to test method's class type. + + + Specifies whether the data is stored as property or in method. + + + + + Gets or sets the name of method used to customize the display name in test results. + + + + + Gets or sets the declaring type used to customize the display name in test results. + + + + + + + + + + + Specification for parallelization level for a test run. + + + + + The default scope for the parallel run. Although method level gives maximum parallelization, the default is set to + class level to enable maximum number of customers to easily convert their tests to run in parallel. In most cases within + a class tests aren't thread safe. + + + + + Initializes a new instance of the class. + + + + + Gets or sets the number of workers to be used for the parallel run. + + + + + Gets or sets the scope of the parallel run. + + + To enable all classes to run in parallel set this to . + To get the maximum parallelization level set this to . + + + + + Parallel execution mode. + + + + + Each thread of execution will be handed a TestClass worth of tests to execute. + Within the TestClass, the test methods will execute serially. + + + + + Each thread of execution will be handed TestMethods to execute. + + + + + Specifies how to discover ITestDataSource tests. + + + + + Initializes a new instance of the class. + + + Sets which to use when discovering ITestDataSource tests. + + + + + Gets specified discovery option. + + + + + Supported TestDataSource discovery modes + + + + + Discover tests during execution. + This was the default option on version 2.2.3 and before. + + + + + Discover and expand ITestDataSource based tests. + This is the default behavior after version 2.2.3. + + + + + Test data source for data driven tests. + + + + + Gets the test data from custom test data source. + + + The method info of test method. + + + Test data for calling test method. + + + + + Gets the display name corresponding to test data row for displaying in TestResults. + + + The method info of test method. + + + The test data which is passed to test method. + + + The . + + + + + TestMethod for execution. + + + + + Gets the name of test method. + + + + + Gets the name of test class. + + + + + Gets the return type of test method. + + + + + Gets the arguments with which test method is invoked. + + + + + Gets the parameters of test method. + + + + + Gets the methodInfo for test method. + + + This is just to retrieve additional information about the method. + Do not directly invoke the method using MethodInfo. Use ITestMethod.Invoke instead. + + + + + Invokes the test method. + + + Arguments to pass to test method. (E.g. For data driven) + + + Result of test method invocation. + + + This call handles asynchronous test methods as well. + + + + + Get all attributes of the test method. + + + Whether attribute defined in parent class is valid. + + + All attributes. + + + + + Get attribute of specific type. + + System.Attribute type. + + Whether attribute defined in parent class is valid. + + + The attributes of the specified type. + + + + + The helper. + + + + + The check parameter not null. + + + The parameter. + + + The parameter name. + + + The message. + + Throws argument null exception when parameter is null. + + + + The check parameter not null or empty. + + + The parameter. + + + The parameter name. + + + The message. + + Throws ArgumentException when parameter is null. + + + + Enumeration for how we access data rows in data driven testing. + + + + + Rows are returned in sequential order. + + + + + Rows are returned in random order. + + + + + Attribute to define in-line data for a test method. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The data object. + + + + Initializes a new instance of the class which takes in an array of arguments. + + A data object. + More data. + + + + Gets data for calling test method. + + + + + Gets or sets display name in test results for customization. + + + + + + + + + + + The assert inconclusive exception. + + + + + Initializes a new instance of the class. + + The message. + The exception. + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + + + + InternalTestFailureException class. Used to indicate internal failure for a test case + + + This class is only added to preserve source compatibility with the V1 framework. + For all practical purposes either use AssertFailedException/AssertInconclusiveException. + + + + + Initializes a new instance of the class. + + The exception message. + The exception. + + + + Initializes a new instance of the class. + + The exception message. + + + + Initializes a new instance of the class. + + + + + Attribute that specifies to expect an exception of the specified type + + + + + Initializes a new instance of the class with the expected type + + Type of the expected exception + + + + Initializes a new instance of the class with + the expected type and the message to include when no exception is thrown by the test. + + Type of the expected exception + + Message to include in the test result if the test fails due to not throwing an exception + + + + + Gets a value indicating the Type of the expected exception + + + + + Gets or sets a value indicating whether to allow types derived from the type of the expected exception to + qualify as expected + + + + + Gets the message to include in the test result if the test fails due to not throwing an exception + + + + + Verifies that the type of the exception thrown by the unit test is expected + + The exception thrown by the unit test + + + + Base class for attributes that specify to expect an exception from a unit test + + + + + Initializes a new instance of the class with a default no-exception message + + + + + Initializes a new instance of the class with a no-exception message + + + Message to include in the test result if the test fails due to not throwing an + exception + + + + + Gets the message to include in the test result if the test fails due to not throwing an exception + + + + + Gets the message to include in the test result if the test fails due to not throwing an exception + + + + + Gets the default no-exception message + + The ExpectedException attribute type name + The default no-exception message + + + + Determines whether the exception is expected. If the method returns, then it is + understood that the exception was expected. If the method throws an exception, then it + is understood that the exception was not expected, and the thrown exception's message + is included in the test result. The class can be used for + convenience. If is used and the assertion fails, + then the test outcome is set to Inconclusive. + + The exception thrown by the unit test + + + + Rethrow the exception if it is an AssertFailedException or an AssertInconclusiveException + + The exception to rethrow if it is an assertion exception + + + + This class is designed to help user doing unit testing for types which uses generic types. + GenericParameterHelper satisfies some common generic type constraints + such as: + 1. public default constructor + 2. implements common interface: IComparable, IEnumerable + + + + + Initializes a new instance of the class that + satisfies the 'newable' constraint in C# generics. + + + This constructor initializes the Data property to a random value. + + + + + Initializes a new instance of the class that + initializes the Data property to a user-supplied value. + + Any integer value + + + + Gets or sets the Data + + + + + Do the value comparison for two GenericParameterHelper object + + object to do comparison with + true if obj has the same value as 'this' GenericParameterHelper object. + false otherwise. + + + + Returns a hashcode for this object. + + The hash code. + + + + Compares the data of the two objects. + + The object to compare with. + + A signed number indicating the relative values of this instance and value. + + + Thrown when the object passed in is not an instance of . + + + + + Returns an IEnumerator object whose length is derived from + the Data property. + + The IEnumerator object + + + + Returns a GenericParameterHelper object that is equal to + the current object. + + The cloned object. + + + + Enables users to log/write traces from unit tests for diagnostics. + + + + + Handler for LogMessage. + + Message to log. + + + + Event to listen. Raised when unit test writer writes some message. + Mainly to consume by adapter. + + + + + API for test writer to call to Log messages. + + String format with placeholders. + Parameters for placeholders. + + + + TestCategory attribute; used to specify the category of a unit test. + + + + + Initializes a new instance of the class and applies the category to the test. + + + The test Category. + + + + + Gets the test categories that has been applied to the test. + + + + + Base class for the "Category" attribute + + + The reason for this attribute is to let the users create their own implementation of test categories. + - test framework (discovery, etc) deals with TestCategoryBaseAttribute. + - The reason that TestCategories property is a collection rather than a string, + is to give more flexibility to the user. For instance the implementation may be based on enums for which the values can be OR'ed + in which case it makes sense to have single attribute rather than multiple ones on the same test. + + + + + Initializes a new instance of the class. + Applies the category to the test. The strings returned by TestCategories + are used with the /category command to filter tests + + + + + Gets the test category that has been applied to the test. + + + + + AssertFailedException class. Used to indicate failure for a test case + + + + + Initializes a new instance of the class. + + The message. + The exception. + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + + + + A collection of helper classes to test various conditions within + unit tests. If the condition being tested is not met, an exception + is thrown. + + + + + Gets the singleton instance of the Assert functionality. + + + Users can use this to plug-in custom assertions through C# extension methods. + For instance, the signature of a custom assertion provider could be "public static void IsOfType<T>(this Assert assert, object obj)" + Users could then use a syntax similar to the default assertions which in this case is "Assert.That.IsOfType<Dog>(animal);" + More documentation is at "https://github.com/Microsoft/testfx-docs". + + + + + Tests whether the specified condition is true and throws an exception + if the condition is false. + + + The condition the test expects to be true. + + + Thrown if is false. + + + + + Tests whether the specified condition is true and throws an exception + if the condition is false. + + + The condition the test expects to be true. + + + Thrown if is false. + + + + + Tests whether the specified condition is true and throws an exception + if the condition is false. + + + The condition the test expects to be true. + + + The message to include in the exception when + is false. The message is shown in test results. + + + Thrown if is false. + + + + + Tests whether the specified condition is true and throws an exception + if the condition is false. + + + The condition the test expects to be true. + + + The message to include in the exception when + is false. The message is shown in test results. + + + Thrown if is false. + + + + + Tests whether the specified condition is true and throws an exception + if the condition is false. + + + The condition the test expects to be true. + + + The message to include in the exception when + is false. The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if is false. + + + + + Tests whether the specified condition is true and throws an exception + if the condition is false. + + + The condition the test expects to be true. + + + The message to include in the exception when + is false. The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if is false. + + + + + Tests whether the specified condition is false and throws an exception + if the condition is true. + + + The condition the test expects to be false. + + + Thrown if is true. + + + + + Tests whether the specified condition is false and throws an exception + if the condition is true. + + + The condition the test expects to be false. + + + Thrown if is true. + + + + + Tests whether the specified condition is false and throws an exception + if the condition is true. + + + The condition the test expects to be false. + + + The message to include in the exception when + is true. The message is shown in test results. + + + Thrown if is true. + + + + + Tests whether the specified condition is false and throws an exception + if the condition is true. + + + The condition the test expects to be false. + + + The message to include in the exception when + is true. The message is shown in test results. + + + Thrown if is true. + + + + + Tests whether the specified condition is false and throws an exception + if the condition is true. + + + The condition the test expects to be false. + + + The message to include in the exception when + is true. The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if is true. + + + + + Tests whether the specified condition is false and throws an exception + if the condition is true. + + + The condition the test expects to be false. + + + The message to include in the exception when + is true. The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if is true. + + + + + Tests whether the specified object is null and throws an exception + if it is not. + + + The object the test expects to be null. + + + Thrown if is not null. + + + + + Tests whether the specified object is null and throws an exception + if it is not. + + + The object the test expects to be null. + + + The message to include in the exception when + is not null. The message is shown in test results. + + + Thrown if is not null. + + + + + Tests whether the specified object is null and throws an exception + if it is not. + + + The object the test expects to be null. + + + The message to include in the exception when + is not null. The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if is not null. + + + + + Tests whether the specified object is non-null and throws an exception + if it is null. + + + The object the test expects not to be null. + + + Thrown if is null. + + + + + Tests whether the specified object is non-null and throws an exception + if it is null. + + + The object the test expects not to be null. + + + The message to include in the exception when + is null. The message is shown in test results. + + + Thrown if is null. + + + + + Tests whether the specified object is non-null and throws an exception + if it is null. + + + The object the test expects not to be null. + + + The message to include in the exception when + is null. The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if is null. + + + + + Tests whether the specified objects both refer to the same object and + throws an exception if the two inputs do not refer to the same object. + + + The first object to compare. This is the value the test expects. + + + The second object to compare. This is the value produced by the code under test. + + + Thrown if does not refer to the same object + as . + + + + + Tests whether the specified objects both refer to the same object and + throws an exception if the two inputs do not refer to the same object. + + + The first object to compare. This is the value the test expects. + + + The second object to compare. This is the value produced by the code under test. + + + The message to include in the exception when + is not the same as . The message is shown + in test results. + + + Thrown if does not refer to the same object + as . + + + + + Tests whether the specified objects both refer to the same object and + throws an exception if the two inputs do not refer to the same object. + + + The first object to compare. This is the value the test expects. + + + The second object to compare. This is the value produced by the code under test. + + + The message to include in the exception when + is not the same as . The message is shown + in test results. + + + An array of parameters to use when formatting . + + + Thrown if does not refer to the same object + as . + + + + + Tests whether the specified objects refer to different objects and + throws an exception if the two inputs refer to the same object. + + + The first object to compare. This is the value the test expects not + to match . + + + The second object to compare. This is the value produced by the code under test. + + + Thrown if refers to the same object + as . + + + + + Tests whether the specified objects refer to different objects and + throws an exception if the two inputs refer to the same object. + + + The first object to compare. This is the value the test expects not + to match . + + + The second object to compare. This is the value produced by the code under test. + + + The message to include in the exception when + is the same as . The message is shown in + test results. + + + Thrown if refers to the same object + as . + + + + + Tests whether the specified objects refer to different objects and + throws an exception if the two inputs refer to the same object. + + + The first object to compare. This is the value the test expects not + to match . + + + The second object to compare. This is the value produced by the code under test. + + + The message to include in the exception when + is the same as . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if refers to the same object + as . + + + + + Tests whether the specified values are equal and throws an exception + if the two values are not equal. Different numeric types are treated + as unequal even if the logical values are equal. 42L is not equal to 42. + + + The type of values to compare. + + + The first value to compare. This is the value the tests expects. + + + The second value to compare. This is the value produced by the code under test. + + + Thrown if is not equal to . + + + + + Tests whether the specified values are equal and throws an exception + if the two values are not equal. Different numeric types are treated + as unequal even if the logical values are equal. 42L is not equal to 42. + + + The type of values to compare. + + + The first value to compare. This is the value the tests expects. + + + The second value to compare. This is the value produced by the code under test. + + + The message to include in the exception when + is not equal to . The message is shown in + test results. + + + Thrown if is not equal to + . + + + + + Tests whether the specified values are equal and throws an exception + if the two values are not equal. Different numeric types are treated + as unequal even if the logical values are equal. 42L is not equal to 42. + + + The type of values to compare. + + + The first value to compare. This is the value the tests expects. + + + The second value to compare. This is the value produced by the code under test. + + + The message to include in the exception when + is not equal to . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is not equal to + . + + + + + Tests whether the specified values are unequal and throws an exception + if the two values are equal. Different numeric types are treated + as unequal even if the logical values are equal. 42L is not equal to 42. + + + The type of values to compare. + + + The first value to compare. This is the value the test expects not + to match . + + + The second value to compare. This is the value produced by the code under test. + + + Thrown if is equal to . + + + + + Tests whether the specified values are unequal and throws an exception + if the two values are equal. Different numeric types are treated + as unequal even if the logical values are equal. 42L is not equal to 42. + + + The type of values to compare. + + + The first value to compare. This is the value the test expects not + to match . + + + The second value to compare. This is the value produced by the code under test. + + + The message to include in the exception when + is equal to . The message is shown in + test results. + + + Thrown if is equal to . + + + + + Tests whether the specified values are unequal and throws an exception + if the two values are equal. Different numeric types are treated + as unequal even if the logical values are equal. 42L is not equal to 42. + + + The type of values to compare. + + + The first value to compare. This is the value the test expects not + to match . + + + The second value to compare. This is the value produced by the code under test. + + + The message to include in the exception when + is equal to . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is equal to . + + + + + Tests whether the specified objects are equal and throws an exception + if the two objects are not equal. Different numeric types are treated + as unequal even if the logical values are equal. 42L is not equal to 42. + + + The first object to compare. This is the object the tests expects. + + + The second object to compare. This is the object produced by the code under test. + + + Thrown if is not equal to + . + + + + + Tests whether the specified objects are equal and throws an exception + if the two objects are not equal. Different numeric types are treated + as unequal even if the logical values are equal. 42L is not equal to 42. + + + The first object to compare. This is the object the tests expects. + + + The second object to compare. This is the object produced by the code under test. + + + The message to include in the exception when + is not equal to . The message is shown in + test results. + + + Thrown if is not equal to + . + + + + + Tests whether the specified objects are equal and throws an exception + if the two objects are not equal. Different numeric types are treated + as unequal even if the logical values are equal. 42L is not equal to 42. + + + The first object to compare. This is the object the tests expects. + + + The second object to compare. This is the object produced by the code under test. + + + The message to include in the exception when + is not equal to . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is not equal to + . + + + + + Tests whether the specified objects are unequal and throws an exception + if the two objects are equal. Different numeric types are treated + as unequal even if the logical values are equal. 42L is not equal to 42. + + + The first object to compare. This is the value the test expects not + to match . + + + The second object to compare. This is the object produced by the code under test. + + + Thrown if is equal to . + + + + + Tests whether the specified objects are unequal and throws an exception + if the two objects are equal. Different numeric types are treated + as unequal even if the logical values are equal. 42L is not equal to 42. + + + The first object to compare. This is the value the test expects not + to match . + + + The second object to compare. This is the object produced by the code under test. + + + The message to include in the exception when + is equal to . The message is shown in + test results. + + + Thrown if is equal to . + + + + + Tests whether the specified objects are unequal and throws an exception + if the two objects are equal. Different numeric types are treated + as unequal even if the logical values are equal. 42L is not equal to 42. + + + The first object to compare. This is the value the test expects not + to match . + + + The second object to compare. This is the object produced by the code under test. + + + The message to include in the exception when + is equal to . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is equal to . + + + + + Tests whether the specified floats are equal and throws an exception + if they are not equal. + + + The first float to compare. This is the float the tests expects. + + + The second float to compare. This is the float produced by the code under test. + + + The required accuracy. An exception will be thrown only if + is different than + by more than . + + + Thrown if is not equal to + . + + + + + Tests whether the specified floats are equal and throws an exception + if they are not equal. + + + The first float to compare. This is the float the tests expects. + + + The second float to compare. This is the float produced by the code under test. + + + The required accuracy. An exception will be thrown only if + is different than + by more than . + + + The message to include in the exception when + is different than by more than + . The message is shown in test results. + + + Thrown if is not equal to + . + + + + + Tests whether the specified floats are equal and throws an exception + if they are not equal. + + + The first float to compare. This is the float the tests expects. + + + The second float to compare. This is the float produced by the code under test. + + + The required accuracy. An exception will be thrown only if + is different than + by more than . + + + The message to include in the exception when + is different than by more than + . The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if is not equal to + . + + + + + Tests whether the specified floats are unequal and throws an exception + if they are equal. + + + The first float to compare. This is the float the test expects not to + match . + + + The second float to compare. This is the float produced by the code under test. + + + The required accuracy. An exception will be thrown only if + is different than + by at most . + + + Thrown if is equal to . + + + + + Tests whether the specified floats are unequal and throws an exception + if they are equal. + + + The first float to compare. This is the float the test expects not to + match . + + + The second float to compare. This is the float produced by the code under test. + + + The required accuracy. An exception will be thrown only if + is different than + by at most . + + + The message to include in the exception when + is equal to or different by less than + . The message is shown in test results. + + + Thrown if is equal to . + + + + + Tests whether the specified floats are unequal and throws an exception + if they are equal. + + + The first float to compare. This is the float the test expects not to + match . + + + The second float to compare. This is the float produced by the code under test. + + + The required accuracy. An exception will be thrown only if + is different than + by at most . + + + The message to include in the exception when + is equal to or different by less than + . The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if is equal to . + + + + + Tests whether the specified doubles are equal and throws an exception + if they are not equal. + + + The first double to compare. This is the double the tests expects. + + + The second double to compare. This is the double produced by the code under test. + + + The required accuracy. An exception will be thrown only if + is different than + by more than . + + + Thrown if is not equal to + . + + + + + Tests whether the specified doubles are equal and throws an exception + if they are not equal. + + + The first double to compare. This is the double the tests expects. + + + The second double to compare. This is the double produced by the code under test. + + + The required accuracy. An exception will be thrown only if + is different than + by more than . + + + The message to include in the exception when + is different than by more than + . The message is shown in test results. + + + Thrown if is not equal to . + + + + + Tests whether the specified doubles are equal and throws an exception + if they are not equal. + + + The first double to compare. This is the double the tests expects. + + + The second double to compare. This is the double produced by the code under test. + + + The required accuracy. An exception will be thrown only if + is different than + by more than . + + + The message to include in the exception when + is different than by more than + . The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if is not equal to . + + + + + Tests whether the specified doubles are unequal and throws an exception + if they are equal. + + + The first double to compare. This is the double the test expects not to + match . + + + The second double to compare. This is the double produced by the code under test. + + + The required accuracy. An exception will be thrown only if + is different than + by at most . + + + Thrown if is equal to . + + + + + Tests whether the specified doubles are unequal and throws an exception + if they are equal. + + + The first double to compare. This is the double the test expects not to + match . + + + The second double to compare. This is the double produced by the code under test. + + + The required accuracy. An exception will be thrown only if + is different than + by at most . + + + The message to include in the exception when + is equal to or different by less than + . The message is shown in test results. + + + Thrown if is equal to . + + + + + Tests whether the specified doubles are unequal and throws an exception + if they are equal. + + + The first double to compare. This is the double the test expects not to + match . + + + The second double to compare. This is the double produced by the code under test. + + + The required accuracy. An exception will be thrown only if + is different than + by at most . + + + The message to include in the exception when + is equal to or different by less than + . The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if is equal to . + + + + + Tests whether the specified strings are equal and throws an exception + if they are not equal. The invariant culture is used for the comparison. + + + The first string to compare. This is the string the tests expects. + + + The second string to compare. This is the string produced by the code under test. + + + A Boolean indicating a case-sensitive or insensitive comparison. (true + indicates a case-insensitive comparison.) + + + Thrown if is not equal to . + + + + + Tests whether the specified strings are equal and throws an exception + if they are not equal. The invariant culture is used for the comparison. + + + The first string to compare. This is the string the tests expects. + + + The second string to compare. This is the string produced by the code under test. + + + A Boolean indicating a case-sensitive or insensitive comparison. (true + indicates a case-insensitive comparison.) + + + The message to include in the exception when + is not equal to . The message is shown in + test results. + + + Thrown if is not equal to . + + + + + Tests whether the specified strings are equal and throws an exception + if they are not equal. The invariant culture is used for the comparison. + + + The first string to compare. This is the string the tests expects. + + + The second string to compare. This is the string produced by the code under test. + + + A Boolean indicating a case-sensitive or insensitive comparison. (true + indicates a case-insensitive comparison.) + + + The message to include in the exception when + is not equal to . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is not equal to . + + + + + Tests whether the specified strings are equal and throws an exception + if they are not equal. + + + The first string to compare. This is the string the tests expects. + + + The second string to compare. This is the string produced by the code under test. + + + A Boolean indicating a case-sensitive or insensitive comparison. (true + indicates a case-insensitive comparison.) + + + A CultureInfo object that supplies culture-specific comparison information. + + + Thrown if is not equal to . + + + + + Tests whether the specified strings are equal and throws an exception + if they are not equal. + + + The first string to compare. This is the string the tests expects. + + + The second string to compare. This is the string produced by the code under test. + + + A Boolean indicating a case-sensitive or insensitive comparison. (true + indicates a case-insensitive comparison.) + + + A CultureInfo object that supplies culture-specific comparison information. + + + The message to include in the exception when + is not equal to . The message is shown in + test results. + + + Thrown if is not equal to . + + + + + Tests whether the specified strings are equal and throws an exception + if they are not equal. + + + The first string to compare. This is the string the tests expects. + + + The second string to compare. This is the string produced by the code under test. + + + A Boolean indicating a case-sensitive or insensitive comparison. (true + indicates a case-insensitive comparison.) + + + A CultureInfo object that supplies culture-specific comparison information. + + + The message to include in the exception when + is not equal to . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is not equal to . + + + + + Tests whether the specified strings are unequal and throws an exception + if they are equal. The invariant culture is used for the comparison. + + + The first string to compare. This is the string the test expects not to + match . + + + The second string to compare. This is the string produced by the code under test. + + + A Boolean indicating a case-sensitive or insensitive comparison. (true + indicates a case-insensitive comparison.) + + + Thrown if is equal to . + + + + + Tests whether the specified strings are unequal and throws an exception + if they are equal. The invariant culture is used for the comparison. + + + The first string to compare. This is the string the test expects not to + match . + + + The second string to compare. This is the string produced by the code under test. + + + A Boolean indicating a case-sensitive or insensitive comparison. (true + indicates a case-insensitive comparison.) + + + The message to include in the exception when + is equal to . The message is shown in + test results. + + + Thrown if is equal to . + + + + + Tests whether the specified strings are unequal and throws an exception + if they are equal. The invariant culture is used for the comparison. + + + The first string to compare. This is the string the test expects not to + match . + + + The second string to compare. This is the string produced by the code under test. + + + A Boolean indicating a case-sensitive or insensitive comparison. (true + indicates a case-insensitive comparison.) + + + The message to include in the exception when + is equal to . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is equal to . + + + + + Tests whether the specified strings are unequal and throws an exception + if they are equal. + + + The first string to compare. This is the string the test expects not to + match . + + + The second string to compare. This is the string produced by the code under test. + + + A Boolean indicating a case-sensitive or insensitive comparison. (true + indicates a case-insensitive comparison.) + + + A CultureInfo object that supplies culture-specific comparison information. + + + Thrown if is equal to . + + + + + Tests whether the specified strings are unequal and throws an exception + if they are equal. + + + The first string to compare. This is the string the test expects not to + match . + + + The second string to compare. This is the string produced by the code under test. + + + A Boolean indicating a case-sensitive or insensitive comparison. (true + indicates a case-insensitive comparison.) + + + A CultureInfo object that supplies culture-specific comparison information. + + + The message to include in the exception when + is equal to . The message is shown in + test results. + + + Thrown if is equal to . + + + + + Tests whether the specified strings are unequal and throws an exception + if they are equal. + + + The first string to compare. This is the string the test expects not to + match . + + + The second string to compare. This is the string produced by the code under test. + + + A Boolean indicating a case-sensitive or insensitive comparison. (true + indicates a case-insensitive comparison.) + + + A CultureInfo object that supplies culture-specific comparison information. + + + The message to include in the exception when + is equal to . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is equal to . + + + + + Tests whether the specified object is an instance of the expected + type and throws an exception if the expected type is not in the + inheritance hierarchy of the object. + + + The object the test expects to be of the specified type. + + + The expected type of . + + + Thrown if is null or + is not in the inheritance hierarchy + of . + + + + + Tests whether the specified object is an instance of the expected + type and throws an exception if the expected type is not in the + inheritance hierarchy of the object. + + + The object the test expects to be of the specified type. + + + The expected type of . + + + The message to include in the exception when + is not an instance of . The message is + shown in test results. + + + Thrown if is null or + is not in the inheritance hierarchy + of . + + + + + Tests whether the specified object is an instance of the expected + type and throws an exception if the expected type is not in the + inheritance hierarchy of the object. + + + The object the test expects to be of the specified type. + + + The expected type of . + + + The message to include in the exception when + is not an instance of . The message is + shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if is null or + is not in the inheritance hierarchy + of . + + + + + Tests whether the specified object is not an instance of the wrong + type and throws an exception if the specified type is in the + inheritance hierarchy of the object. + + + The object the test expects not to be of the specified type. + + + The type that should not be. + + + Thrown if is not null and + is in the inheritance hierarchy + of . + + + + + Tests whether the specified object is not an instance of the wrong + type and throws an exception if the specified type is in the + inheritance hierarchy of the object. + + + The object the test expects not to be of the specified type. + + + The type that should not be. + + + The message to include in the exception when + is an instance of . The message is shown + in test results. + + + Thrown if is not null and + is in the inheritance hierarchy + of . + + + + + Tests whether the specified object is not an instance of the wrong + type and throws an exception if the specified type is in the + inheritance hierarchy of the object. + + + The object the test expects not to be of the specified type. + + + The type that should not be. + + + The message to include in the exception when + is an instance of . The message is shown + in test results. + + + An array of parameters to use when formatting . + + + Thrown if is not null and + is in the inheritance hierarchy + of . + + + + + Throws an AssertFailedException. + + + Always thrown. + + + + + Throws an AssertFailedException. + + + The message to include in the exception. The message is shown in + test results. + + + Always thrown. + + + + + Throws an AssertFailedException. + + + The message to include in the exception. The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Always thrown. + + + + + Throws an AssertInconclusiveException. + + + Always thrown. + + + + + Throws an AssertInconclusiveException. + + + The message to include in the exception. The message is shown in + test results. + + + Always thrown. + + + + + Throws an AssertInconclusiveException. + + + The message to include in the exception. The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Always thrown. + + + + + Static equals overloads are used for comparing instances of two types for reference + equality. This method should not be used for comparison of two instances for + equality. This object will always throw with Assert.Fail. Please use + Assert.AreEqual and associated overloads in your unit tests. + + Object A + Object B + False, always. + + + + Tests whether the code specified by delegate throws exact given exception of type (and not of derived type) + and throws AssertFailedException if code does not throws exception or throws exception of type other than . + + + Delegate to code to be tested and which is expected to throw exception. + + + Type of exception expected to be thrown. + + + Thrown if does not throws exception of type . + + + The exception that was thrown. + + + + + Tests whether the code specified by delegate throws exact given exception of type (and not of derived type) + and throws AssertFailedException if code does not throws exception or throws exception of type other than . + + + Delegate to code to be tested and which is expected to throw exception. + + + The message to include in the exception when + does not throws exception of type . + + + Type of exception expected to be thrown. + + + Thrown if does not throws exception of type . + + + The exception that was thrown. + + + + + Tests whether the code specified by delegate throws exact given exception of type (and not of derived type) + and throws AssertFailedException if code does not throws exception or throws exception of type other than . + + + Delegate to code to be tested and which is expected to throw exception. + + + Type of exception expected to be thrown. + + + Thrown if does not throws exception of type . + + + The exception that was thrown. + + + + + Tests whether the code specified by delegate throws exact given exception of type (and not of derived type) + and throws AssertFailedException if code does not throws exception or throws exception of type other than . + + + Delegate to code to be tested and which is expected to throw exception. + + + The message to include in the exception when + does not throws exception of type . + + + Type of exception expected to be thrown. + + + Thrown if does not throws exception of type . + + + The exception that was thrown. + + + + + Tests whether the code specified by delegate throws exact given exception of type (and not of derived type) + and throws AssertFailedException if code does not throws exception or throws exception of type other than . + + + Delegate to code to be tested and which is expected to throw exception. + + + The message to include in the exception when + does not throws exception of type . + + + An array of parameters to use when formatting . + + + Type of exception expected to be thrown. + + + Thrown if does not throw exception of type . + + + The exception that was thrown. + + + + + Tests whether the code specified by delegate throws exact given exception of type (and not of derived type) + and throws AssertFailedException if code does not throws exception or throws exception of type other than . + + + Delegate to code to be tested and which is expected to throw exception. + + + The message to include in the exception when + does not throws exception of type . + + + An array of parameters to use when formatting . + + + Type of exception expected to be thrown. + + + Thrown if does not throws exception of type . + + + The exception that was thrown. + + + + + Tests whether the code specified by delegate throws exact given exception of type (and not of derived type) + and throws AssertFailedException if code does not throws exception or throws exception of type other than . + + + Delegate to code to be tested and which is expected to throw exception. + + + Type of exception expected to be thrown. + + + Thrown if does not throws exception of type . + + + The executing the delegate. + + + + + Tests whether the code specified by delegate throws exact given exception of type (and not of derived type) + and throws AssertFailedException if code does not throws exception or throws exception of type other than . + + Delegate to code to be tested and which is expected to throw exception. + + The message to include in the exception when + does not throws exception of type . + + Type of exception expected to be thrown. + + Thrown if does not throws exception of type . + + + The executing the delegate. + + + + + Tests whether the code specified by delegate throws exact given exception of type (and not of derived type) + and throws AssertFailedException if code does not throws exception or throws exception of type other than . + + Delegate to code to be tested and which is expected to throw exception. + + The message to include in the exception when + does not throws exception of type . + + + An array of parameters to use when formatting . + + Type of exception expected to be thrown. + + Thrown if does not throws exception of type . + + + The executing the delegate. + + + + + Replaces null characters ('\0') with "\\0". + + + The string to search. + + + The converted string with null characters replaced by "\\0". + + + This is only public and still present to preserve compatibility with the V1 framework. + + + + + Helper function that creates and throws an AssertionFailedException + + + name of the assertion throwing an exception + + + message describing conditions for assertion failure + + + The parameters. + + + + + Checks the parameter for valid conditions + + + The parameter. + + + The assertion Name. + + + parameter name + + + message for the invalid parameter exception + + + The parameters. + + + + + Safely converts an object to a string, handling null values and null characters. + Null values are converted to "(null)". Null characters are converted to "\\0". + + + The object to convert to a string. + + + The converted string. + + + + + The string assert. + + + + + Gets the singleton instance of the CollectionAssert functionality. + + + Users can use this to plug-in custom assertions through C# extension methods. + For instance, the signature of a custom assertion provider could be "public static void ContainsWords(this StringAssert customAssert, string value, ICollection substrings)" + Users could then use a syntax similar to the default assertions which in this case is "StringAssert.That.ContainsWords(value, substrings);" + More documentation is at "https://github.com/Microsoft/testfx-docs". + + + + + Tests whether the specified string contains the specified substring + and throws an exception if the substring does not occur within the + test string. + + + The string that is expected to contain . + + + The string expected to occur within . + + + Thrown if is not found in + . + + + + + Tests whether the specified string contains the specified substring + and throws an exception if the substring does not occur within the + test string. + + + The string that is expected to contain . + + + The string expected to occur within . + + + The comparison method to compare strings . + + + Thrown if is not found in + . + + + + + Tests whether the specified string contains the specified substring + and throws an exception if the substring does not occur within the + test string. + + + The string that is expected to contain . + + + The string expected to occur within . + + + The message to include in the exception when + is not in . The message is shown in + test results. + + + Thrown if is not found in + . + + + + + Tests whether the specified string contains the specified substring + and throws an exception if the substring does not occur within the + test string. + + + The string that is expected to contain . + + + The string expected to occur within . + + + The message to include in the exception when + is not in . The message is shown in + test results. + + + The comparison method to compare strings . + + + Thrown if is not found in + . + + + + + Tests whether the specified string contains the specified substring + and throws an exception if the substring does not occur within the + test string. + + + The string that is expected to contain . + + + The string expected to occur within . + + + The message to include in the exception when + is not in . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is not found in + . + + + + + Tests whether the specified string contains the specified substring + and throws an exception if the substring does not occur within the + test string. + + + The string that is expected to contain . + + + The string expected to occur within . + + + The message to include in the exception when + is not in . The message is shown in + test results. + + + The comparison method to compare strings . + + + An array of parameters to use when formatting . + + + Thrown if is not found in + . + + + + + Tests whether the specified string begins with the specified substring + and throws an exception if the test string does not start with the + substring. + + + The string that is expected to begin with . + + + The string expected to be a prefix of . + + + Thrown if does not begin with + . + + + + + Tests whether the specified string begins with the specified substring + and throws an exception if the test string does not start with the + substring. + + + The string that is expected to begin with . + + + The string expected to be a prefix of . + + + The comparison method to compare strings . + + + Thrown if does not begin with + . + + + + + Tests whether the specified string begins with the specified substring + and throws an exception if the test string does not start with the + substring. + + + The string that is expected to begin with . + + + The string expected to be a prefix of . + + + The message to include in the exception when + does not begin with . The message is + shown in test results. + + + Thrown if does not begin with + . + + + + + Tests whether the specified string begins with the specified substring + and throws an exception if the test string does not start with the + substring. + + + The string that is expected to begin with . + + + The string expected to be a prefix of . + + + The message to include in the exception when + does not begin with . The message is + shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if does not begin with + . + + + + + Tests whether the specified string begins with the specified substring + and throws an exception if the test string does not start with the + substring. + + + The string that is expected to begin with . + + + The string expected to be a prefix of . + + + The message to include in the exception when + does not begin with . The message is + shown in test results. + + + The comparison method to compare strings . + + + Thrown if does not begin with + . + + + + + Tests whether the specified string begins with the specified substring + and throws an exception if the test string does not start with the + substring. + + + The string that is expected to begin with . + + + The string expected to be a prefix of . + + + The message to include in the exception when + does not begin with . The message is + shown in test results. + + + The comparison method to compare strings . + + + An array of parameters to use when formatting . + + + Thrown if does not begin with + . + + + + + Tests whether the specified string ends with the specified substring + and throws an exception if the test string does not end with the + substring. + + + The string that is expected to end with . + + + The string expected to be a suffix of . + + + Thrown if does not end with + . + + + + + Tests whether the specified string ends with the specified substring + and throws an exception if the test string does not end with the + substring. + + + The string that is expected to end with . + + + The string expected to be a suffix of . + + + The comparison method to compare strings . + + + Thrown if does not end with + . + + + + + Tests whether the specified string ends with the specified substring + and throws an exception if the test string does not end with the + substring. + + + The string that is expected to end with . + + + The string expected to be a suffix of . + + + The message to include in the exception when + does not end with . The message is + shown in test results. + + + Thrown if does not end with + . + + + + + Tests whether the specified string ends with the specified substring + and throws an exception if the test string does not end with the + substring. + + + The string that is expected to end with . + + + The string expected to be a suffix of . + + + The message to include in the exception when + does not end with . The message is + shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if does not end with + . + + + + + Tests whether the specified string ends with the specified substring + and throws an exception if the test string does not end with the + substring. + + + The string that is expected to end with . + + + The string expected to be a suffix of . + + + The message to include in the exception when + does not end with . The message is + shown in test results. + + + The comparison method to compare strings . + + + Thrown if does not end with + . + + + + + Tests whether the specified string ends with the specified substring + and throws an exception if the test string does not end with the + substring. + + + The string that is expected to end with . + + + The string expected to be a suffix of . + + + The message to include in the exception when + does not end with . The message is + shown in test results. + + + The comparison method to compare strings . + + + An array of parameters to use when formatting . + + + Thrown if does not end with + . + + + + + Tests whether the specified string matches a regular expression and + throws an exception if the string does not match the expression. + + + The string that is expected to match . + + + The regular expression that is + expected to match. + + + Thrown if does not match + . + + + + + Tests whether the specified string matches a regular expression and + throws an exception if the string does not match the expression. + + + The string that is expected to match . + + + The regular expression that is + expected to match. + + + The message to include in the exception when + does not match . The message is shown in + test results. + + + Thrown if does not match + . + + + + + Tests whether the specified string matches a regular expression and + throws an exception if the string does not match the expression. + + + The string that is expected to match . + + + The regular expression that is + expected to match. + + + The message to include in the exception when + does not match . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if does not match + . + + + + + Tests whether the specified string does not match a regular expression + and throws an exception if the string matches the expression. + + + The string that is expected not to match . + + + The regular expression that is + expected to not match. + + + Thrown if matches . + + + + + Tests whether the specified string does not match a regular expression + and throws an exception if the string matches the expression. + + + The string that is expected not to match . + + + The regular expression that is + expected to not match. + + + The message to include in the exception when + matches . The message is shown in test + results. + + + Thrown if matches . + + + + + Tests whether the specified string does not match a regular expression + and throws an exception if the string matches the expression. + + + The string that is expected not to match . + + + The regular expression that is + expected to not match. + + + The message to include in the exception when + matches . The message is shown in test + results. + + + An array of parameters to use when formatting . + + + Thrown if matches . + + + + + A collection of helper classes to test various conditions associated + with collections within unit tests. If the condition being tested is not + met, an exception is thrown. + + + + + Gets the singleton instance of the CollectionAssert functionality. + + + Users can use this to plug-in custom assertions through C# extension methods. + For instance, the signature of a custom assertion provider could be "public static void AreEqualUnordered(this CollectionAssert customAssert, ICollection expected, ICollection actual)" + Users could then use a syntax similar to the default assertions which in this case is "CollectionAssert.That.AreEqualUnordered(list1, list2);" + More documentation is at "https://github.com/Microsoft/testfx-docs". + + + + + Tests whether the specified collection contains the specified element + and throws an exception if the element is not in the collection. + + + The collection in which to search for the element. + + + The element that is expected to be in the collection. + + + Thrown if is not found in + . + + + + + Tests whether the specified collection contains the specified element + and throws an exception if the element is not in the collection. + + + The collection in which to search for the element. + + + The element that is expected to be in the collection. + + + The message to include in the exception when + is not in . The message is shown in + test results. + + + Thrown if is not found in + . + + + + + Tests whether the specified collection contains the specified element + and throws an exception if the element is not in the collection. + + + The collection in which to search for the element. + + + The element that is expected to be in the collection. + + + The message to include in the exception when + is not in . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is not found in + . + + + + + Tests whether the specified collection does not contain the specified + element and throws an exception if the element is in the collection. + + + The collection in which to search for the element. + + + The element that is expected not to be in the collection. + + + Thrown if is found in + . + + + + + Tests whether the specified collection does not contain the specified + element and throws an exception if the element is in the collection. + + + The collection in which to search for the element. + + + The element that is expected not to be in the collection. + + + The message to include in the exception when + is in . The message is shown in test + results. + + + Thrown if is found in + . + + + + + Tests whether the specified collection does not contain the specified + element and throws an exception if the element is in the collection. + + + The collection in which to search for the element. + + + The element that is expected not to be in the collection. + + + The message to include in the exception when + is in . The message is shown in test + results. + + + An array of parameters to use when formatting . + + + Thrown if is found in + . + + + + + Tests whether all items in the specified collection are non-null and throws + an exception if any element is null. + + + The collection in which to search for null elements. + + + Thrown if a null element is found in . + + + + + Tests whether all items in the specified collection are non-null and throws + an exception if any element is null. + + + The collection in which to search for null elements. + + + The message to include in the exception when + contains a null element. The message is shown in test results. + + + Thrown if a null element is found in . + + + + + Tests whether all items in the specified collection are non-null and throws + an exception if any element is null. + + + The collection in which to search for null elements. + + + The message to include in the exception when + contains a null element. The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if a null element is found in . + + + + + Tests whether all items in the specified collection are unique or not and + throws if any two elements in the collection are equal. + + + The collection in which to search for duplicate elements. + + + Thrown if a two or more equal elements are found in + . + + + + + Tests whether all items in the specified collection are unique or not and + throws if any two elements in the collection are equal. + + + The collection in which to search for duplicate elements. + + + The message to include in the exception when + contains at least one duplicate element. The message is shown in + test results. + + + Thrown if a two or more equal elements are found in + . + + + + + Tests whether all items in the specified collection are unique or not and + throws if any two elements in the collection are equal. + + + The collection in which to search for duplicate elements. + + + The message to include in the exception when + contains at least one duplicate element. The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if a two or more equal elements are found in + . + + + + + Tests whether one collection is a subset of another collection and + throws an exception if any element in the subset is not also in the + superset. + + + The collection expected to be a subset of . + + + The collection expected to be a superset of + + + Thrown if an element in is not found in + . + + + + + Tests whether one collection is a subset of another collection and + throws an exception if any element in the subset is not also in the + superset. + + + The collection expected to be a subset of . + + + The collection expected to be a superset of + + + The message to include in the exception when an element in + is not found in . + The message is shown in test results. + + + Thrown if an element in is not found in + . + + + + + Tests whether one collection is a subset of another collection and + throws an exception if any element in the subset is not also in the + superset. + + + The collection expected to be a subset of . + + + The collection expected to be a superset of + + + The message to include in the exception when an element in + is not found in . + The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if an element in is not found in + . + + + + + Tests whether one collection is not a subset of another collection and + throws an exception if all elements in the subset are also in the + superset. + + + The collection expected not to be a subset of . + + + The collection expected not to be a superset of + + + Thrown if every element in is also found in + . + + + + + Tests whether one collection is not a subset of another collection and + throws an exception if all elements in the subset are also in the + superset. + + + The collection expected not to be a subset of . + + + The collection expected not to be a superset of + + + The message to include in the exception when every element in + is also found in . + The message is shown in test results. + + + Thrown if every element in is also found in + . + + + + + Tests whether one collection is not a subset of another collection and + throws an exception if all elements in the subset are also in the + superset. + + + The collection expected not to be a subset of . + + + The collection expected not to be a superset of + + + The message to include in the exception when every element in + is also found in . + The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if every element in is also found in + . + + + + + Tests whether two collections contain the same elements and throws an + exception if either collection contains an element not in the other + collection. + + + The first collection to compare. This contains the elements the test + expects. + + + The second collection to compare. This is the collection produced by + the code under test. + + + Thrown if an element was found in one of the collections but not + the other. + + + + + Tests whether two collections contain the same elements and throws an + exception if either collection contains an element not in the other + collection. + + + The first collection to compare. This contains the elements the test + expects. + + + The second collection to compare. This is the collection produced by + the code under test. + + + The message to include in the exception when an element was found + in one of the collections but not the other. The message is shown + in test results. + + + Thrown if an element was found in one of the collections but not + the other. + + + + + Tests whether two collections contain the same elements and throws an + exception if either collection contains an element not in the other + collection. + + + The first collection to compare. This contains the elements the test + expects. + + + The second collection to compare. This is the collection produced by + the code under test. + + + The message to include in the exception when an element was found + in one of the collections but not the other. The message is shown + in test results. + + + An array of parameters to use when formatting . + + + Thrown if an element was found in one of the collections but not + the other. + + + + + Tests whether two collections contain the different elements and throws an + exception if the two collections contain identical elements without regard + to order. + + + The first collection to compare. This contains the elements the test + expects to be different than the actual collection. + + + The second collection to compare. This is the collection produced by + the code under test. + + + Thrown if the two collections contained the same elements, including + the same number of duplicate occurrences of each element. + + + + + Tests whether two collections contain the different elements and throws an + exception if the two collections contain identical elements without regard + to order. + + + The first collection to compare. This contains the elements the test + expects to be different than the actual collection. + + + The second collection to compare. This is the collection produced by + the code under test. + + + The message to include in the exception when + contains the same elements as . The message + is shown in test results. + + + Thrown if the two collections contained the same elements, including + the same number of duplicate occurrences of each element. + + + + + Tests whether two collections contain the different elements and throws an + exception if the two collections contain identical elements without regard + to order. + + + The first collection to compare. This contains the elements the test + expects to be different than the actual collection. + + + The second collection to compare. This is the collection produced by + the code under test. + + + The message to include in the exception when + contains the same elements as . The message + is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if the two collections contained the same elements, including + the same number of duplicate occurrences of each element. + + + + + Tests whether all elements in the specified collection are instances + of the expected type and throws an exception if the expected type is + not in the inheritance hierarchy of one or more of the elements. + + + The collection containing elements the test expects to be of the + specified type. + + + The expected type of each element of . + + + Thrown if an element in is null or + is not in the inheritance hierarchy + of an element in . + + + + + Tests whether all elements in the specified collection are instances + of the expected type and throws an exception if the expected type is + not in the inheritance hierarchy of one or more of the elements. + + + The collection containing elements the test expects to be of the + specified type. + + + The expected type of each element of . + + + The message to include in the exception when an element in + is not an instance of + . The message is shown in test results. + + + Thrown if an element in is null or + is not in the inheritance hierarchy + of an element in . + + + + + Tests whether all elements in the specified collection are instances + of the expected type and throws an exception if the expected type is + not in the inheritance hierarchy of one or more of the elements. + + + The collection containing elements the test expects to be of the + specified type. + + + The expected type of each element of . + + + The message to include in the exception when an element in + is not an instance of + . The message is shown in test results. + + + An array of parameters to use when formatting . + + + Thrown if an element in is null or + is not in the inheritance hierarchy + of an element in . + + + + + Tests whether the specified collections are equal and throws an exception + if the two collections are not equal. Equality is defined as having the same + elements in the same order and quantity. Whether two elements are the same + is checked using method. + Different references to the same value are considered equal. + + + The first collection to compare. This is the collection the tests expects. + + + The second collection to compare. This is the collection produced by the + code under test. + + + Thrown if is not equal to + . + + + + + Tests whether the specified collections are equal and throws an exception + if the two collections are not equal. Equality is defined as having the same + elements in the same order and quantity. Whether two elements are the same + is checked using method. + Different references to the same value are considered equal. + + + The first collection to compare. This is the collection the tests expects. + + + The second collection to compare. This is the collection produced by the + code under test. + + + The message to include in the exception when + is not equal to . The message is shown in + test results. + + + Thrown if is not equal to + . + + + + + Tests whether the specified collections are equal and throws an exception + if the two collections are not equal. Equality is defined as having the same + elements in the same order and quantity. Whether two elements are the same + is checked using method. + Different references to the same value are considered equal. + + + The first collection to compare. This is the collection the tests expects. + + + The second collection to compare. This is the collection produced by the + code under test. + + + The message to include in the exception when + is not equal to . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is not equal to + . + + + + + Tests whether the specified collections are unequal and throws an exception + if the two collections are equal. Equality is defined as having the same + elements in the same order and quantity. Whether two elements are the same + is checked using method. + Different references to the same value are considered equal. + + + The first collection to compare. This is the collection the tests expects + not to match . + + + The second collection to compare. This is the collection produced by the + code under test. + + + Thrown if is equal to . + + + + + Tests whether the specified collections are unequal and throws an exception + if the two collections are equal. Equality is defined as having the same + elements in the same order and quantity. Whether two elements are the same + is checked using method. + Different references to the same value are considered equal. + + + The first collection to compare. This is the collection the tests expects + not to match . + + + The second collection to compare. This is the collection produced by the + code under test. + + + The message to include in the exception when + is equal to . The message is shown in + test results. + + + Thrown if is equal to . + + + + + Tests whether the specified collections are unequal and throws an exception + if the two collections are equal. Equality is defined as having the same + elements in the same order and quantity. Whether two elements are the same + is checked using method. + Different references to the same value are considered equal. + + + The first collection to compare. This is the collection the tests expects + not to match . + + + The second collection to compare. This is the collection produced by the + code under test. + + + The message to include in the exception when + is equal to . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is equal to . + + + + + Tests whether the specified collections are equal and throws an exception + if the two collections are not equal. Equality is defined as having the same + elements in the same order and quantity. Different references to the same + value are considered equal. + + + The first collection to compare. This is the collection the tests expects. + + + The second collection to compare. This is the collection produced by the + code under test. + + + The compare implementation to use when comparing elements of the collection. + + + Thrown if is not equal to + . + + + + + Tests whether the specified collections are equal and throws an exception + if the two collections are not equal. Equality is defined as having the same + elements in the same order and quantity. Different references to the same + value are considered equal. + + + The first collection to compare. This is the collection the tests expects. + + + The second collection to compare. This is the collection produced by the + code under test. + + + The compare implementation to use when comparing elements of the collection. + + + The message to include in the exception when + is not equal to . The message is shown in + test results. + + + Thrown if is not equal to + . + + + + + Tests whether the specified collections are equal and throws an exception + if the two collections are not equal. Equality is defined as having the same + elements in the same order and quantity. Different references to the same + value are considered equal. + + + The first collection to compare. This is the collection the tests expects. + + + The second collection to compare. This is the collection produced by the + code under test. + + + The compare implementation to use when comparing elements of the collection. + + + The message to include in the exception when + is not equal to . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is not equal to + . + + + + + Tests whether the specified collections are unequal and throws an exception + if the two collections are equal. Equality is defined as having the same + elements in the same order and quantity. Different references to the same + value are considered equal. + + + The first collection to compare. This is the collection the tests expects + not to match . + + + The second collection to compare. This is the collection produced by the + code under test. + + + The compare implementation to use when comparing elements of the collection. + + + Thrown if is equal to . + + + + + Tests whether the specified collections are unequal and throws an exception + if the two collections are equal. Equality is defined as having the same + elements in the same order and quantity. Different references to the same + value are considered equal. + + + The first collection to compare. This is the collection the tests expects + not to match . + + + The second collection to compare. This is the collection produced by the + code under test. + + + The compare implementation to use when comparing elements of the collection. + + + The message to include in the exception when + is equal to . The message is shown in + test results. + + + Thrown if is equal to . + + + + + Tests whether the specified collections are unequal and throws an exception + if the two collections are equal. Equality is defined as having the same + elements in the same order and quantity. Different references to the same + value are considered equal. + + + The first collection to compare. This is the collection the tests expects + not to match . + + + The second collection to compare. This is the collection produced by the + code under test. + + + The compare implementation to use when comparing elements of the collection. + + + The message to include in the exception when + is equal to . The message is shown in + test results. + + + An array of parameters to use when formatting . + + + Thrown if is equal to . + + + + + Determines whether the first collection is a subset of the second + collection. If either set contains duplicate elements, the number + of occurrences of the element in the subset must be less than or + equal to the number of occurrences in the superset. + + + The collection the test expects to be contained in . + + + The collection the test expects to contain . + + + True if is a subset of + , false otherwise. + + + + + Constructs a dictionary containing the number of occurrences of each + element in the specified collection. + + + The collection to process. + + + The number of null elements in the collection. + + + A dictionary containing the number of occurrences of each element + in the specified collection. + + + + + Finds a mismatched element between the two collections. A mismatched + element is one that appears a different number of times in the + expected collection than it does in the actual collection. The + collections are assumed to be different non-null references with the + same number of elements. The caller is responsible for this level of + verification. If there is no mismatched element, the function returns + false and the out parameters should not be used. + + + The first collection to compare. + + + The second collection to compare. + + + The expected number of occurrences of + or 0 if there is no mismatched + element. + + + The actual number of occurrences of + or 0 if there is no mismatched + element. + + + The mismatched element (may be null) or null if there is no + mismatched element. + + + true if a mismatched element was found; false otherwise. + + + + + compares the objects using object.Equals + + + + + Base class for Framework Exceptions. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + The exception. + + + + Initializes a new instance of the class. + + The message. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Access string has invalid syntax.. + + + + + Looks up a localized string similar to The expected collection contains {1} occurrence(s) of <{2}>. The actual collection contains {3} occurrence(s). {0}. + + + + + Looks up a localized string similar to Duplicate item found:<{1}>. {0}. + + + + + Looks up a localized string similar to Expected:<{1}>. Case is different for actual value:<{2}>. {0}. + + + + + Looks up a localized string similar to Expected a difference no greater than <{3}> between expected value <{1}> and actual value <{2}>. {0}. + + + + + Looks up a localized string similar to Expected:<{1} ({2})>. Actual:<{3} ({4})>. {0}. + + + + + Looks up a localized string similar to Expected:<{1}>. Actual:<{2}>. {0}. + + + + + Looks up a localized string similar to Expected a difference greater than <{3}> between expected value <{1}> and actual value <{2}>. {0}. + + + + + Looks up a localized string similar to Expected any value except:<{1}>. Actual:<{2}>. {0}. + + + + + Looks up a localized string similar to Do not pass value types to AreSame(). Values converted to Object will never be the same. Consider using AreEqual(). {0}. + + + + + Looks up a localized string similar to {0} failed. {1}. + + + + + Looks up a localized string similar to async TestMethod with UITestMethodAttribute are not supported. Either remove async or use TestMethodAttribute.. + + + + + Looks up a localized string similar to UITestMethodAttribute.DispatcherQueue should not be null. To use UITestMethodAttribute within a WinUI Desktop App, remember to set the static UITestMethodAttribute.DispatcherQueue during the test initialization.. + + + + + Looks up a localized string similar to Both collections are empty. {0}. + + + + + Looks up a localized string similar to Both collection contain same elements.. + + + + + Looks up a localized string similar to Both collection references point to the same collection object. {0}. + + + + + Looks up a localized string similar to Both collections contain the same elements. {0}. + + + + + Looks up a localized string similar to {0}({1}). + + + + + Looks up a localized string similar to (null). + + + + + Looks up a localized string similar to (object). + + + + + Looks up a localized string similar to String '{0}' does not contain string '{1}'. {2}.. + + + + + Looks up a localized string similar to {0} ({1}). + + + + + Looks up a localized string similar to Assert.Equals should not be used for Assertions. Please use Assert.AreEqual & overloads instead.. + + + + + Looks up a localized string similar to Method {0} must match the expected signature: public static {1} {0}({2}).. + + + + + Looks up a localized string similar to Property or method {0} on {1} returns empty IEnumerable<object[]>.. + + + + + Looks up a localized string similar to Property or method {0} on {1} does not return IEnumerable<object[]>.. + + + + + Looks up a localized string similar to Value returned by property or method {0} shouldn't be null.. + + + + + Looks up a localized string similar to The number of elements in the collections do not match. Expected:<{1}>. Actual:<{2}>.{0}. + + + + + Looks up a localized string similar to Element at index {0} do not match.. + + + + + Looks up a localized string similar to Element at index {1} is not of expected type. Expected type:<{2}>. Actual type:<{3}>.{0}. + + + + + Looks up a localized string similar to Element at index {1} is (null). Expected type:<{2}>.{0}. + + + + + Looks up a localized string similar to String '{0}' does not end with string '{1}'. {2}.. + + + + + Looks up a localized string similar to Invalid argument- EqualsTester can't use nulls.. + + + + + Looks up a localized string similar to Cannot convert object of type {0} to {1}.. + + + + + Looks up a localized string similar to The internal object referenced is no longer valid.. + + + + + Looks up a localized string similar to The parameter '{0}' is invalid. {1}.. + + + + + Looks up a localized string similar to The property {0} has type {1}; expected type {2}.. + + + + + Looks up a localized string similar to {0} Expected type:<{1}>. Actual type:<{2}>.. + + + + + Looks up a localized string similar to String '{0}' does not match pattern '{1}'. {2}.. + + + + + Looks up a localized string similar to Wrong Type:<{1}>. Actual type:<{2}>. {0}. + + + + + Looks up a localized string similar to String '{0}' matches pattern '{1}'. {2}.. + + + + + Looks up a localized string similar to No test data source specified. Atleast one TestDataSource is required with DataTestMethodAttribute.. + + + + + Looks up a localized string similar to No exception thrown. {1} exception was expected. {0}. + + + + + Looks up a localized string similar to The parameter '{0}' is invalid. The value cannot be null. {1}.. + + + + + Looks up a localized string similar to Different number of elements.. + + + + + Looks up a localized string similar to + The constructor with the specified signature could not be found. You might need to regenerate your private accessor, + or the member may be private and defined on a base class. If the latter is true, you need to pass the type + that defines the member into PrivateObject's constructor. + . + + + + + Looks up a localized string similar to + The member specified ({0}) could not be found. You might need to regenerate your private accessor, + or the member may be private and defined on a base class. If the latter is true, you need to pass the type + that defines the member into PrivateObject's constructor. + . + + + + + Looks up a localized string similar to String '{0}' does not start with string '{1}'. {2}.. + + + + + Looks up a localized string similar to The expected exception type must be System.Exception or a type derived from System.Exception.. + + + + + Looks up a localized string similar to (Failed to get the message for an exception of type {0} due to an exception.). + + + + + Looks up a localized string similar to Test method did not throw expected exception {0}. {1}. + + + + + Looks up a localized string similar to Test method did not throw an exception. An exception was expected by attribute {0} defined on the test method.. + + + + + Looks up a localized string similar to Test method threw exception {0}, but exception {1} was expected. Exception message: {2}. + + + + + Looks up a localized string similar to Test method threw exception {0}, but exception {1} or a type derived from it was expected. Exception message: {2}. + + + + + Looks up a localized string similar to Threw exception {2}, but exception {1} was expected. {0} + Exception Message: {3} + Stack Trace: {4}. + + + + + unit test outcomes + + + + + Test was executed, but there were issues. + Issues may involve exceptions or failed assertions. + + + + + Test has completed, but we can't say if it passed or failed. + May be used for aborted tests. + + + + + Test was executed without any issues. + + + + + Test is currently executing. + + + + + There was a system error while we were trying to execute a test. + + + + + The test timed out. + + + + + Test was aborted by the user. + + + + + Test is in an unknown state + + + + + Test cannot be executed. + + + + + Provides helper functionality for the unit test framework + + + + + Gets the exception messages, including the messages for all inner exceptions + recursively + + Exception to get messages for + string with error message information + + + + Enumeration for timeouts, that can be used with the class. + The type of the enumeration must match + + + + + The infinite. + + + + + Enumeration for inheritance behavior, that can be used with both the class + and class. + Defines the behavior of the ClassInitialize and ClassCleanup methods of base classes. + The type of the enumeration must match + + + + + None. + + + + + Before each derived class. + + + + + The test class attribute. + + + + + Gets a test method attribute that enables running this test. + + The test method attribute instance defined on this method. + The to be used to run this test. + Extensions can override this method to customize how all methods in a class are run. + + + + The test method attribute. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + Display Name for the Test Window + + + + + Gets display Name for the Test Window + + + + + Executes a test method. + + The test method to execute. + An array of TestResult objects that represent the outcome(s) of the test. + Extensions can override this method to customize running a TestMethod. + + + + Attribute for data driven test where data can be specified in-line. + + + + + The test initialize attribute. + + + + + The test cleanup attribute marks methods that are executed after every test marked with a . + + + + + The ignore attribute. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + Message specifies reason for ignoring. + + + + + Gets the owner. + + + + + The test property attribute. + + + + + Initializes a new instance of the class. + + + The name. + + + The value. + + + + + Gets the name. + + + + + Gets the value. + + + + + The class initialize attribute. + + + + + Initializes a new instance of the class. + ClassInitializeAttribute + + + + + Initializes a new instance of the class. + ClassInitializeAttribute + + + Specifies the ClassInitialize Inheritance Behavior + + + + + Gets the Inheritance Behavior + + + + + The class cleanup attribute. + + + + + Initializes a new instance of the class. + ClassCleanupAttribute + + + + + Initializes a new instance of the class. + ClassCleanupAttribute + + + Specifies the ClassCleanup Inheritance Behavior + + + + + Gets the Inheritance Behavior + + + + + The assembly initialize attribute. + + + + + The assembly cleanup attribute. + + + + + Test Owner + + + + + Initializes a new instance of the class. + + + The owner. + + + + + Gets the owner. + + + + + Priority attribute; used to specify the priority of a unit test. + + + + + Initializes a new instance of the class. + + + The priority. + + + + + Gets the priority. + + + + + Description of the test + + + + + Initializes a new instance of the class to describe a test. + + The description. + + + + Gets the description of a test. + + + + + CSS Project Structure URI + + + + + Initializes a new instance of the class for CSS Project Structure URI. + + The CSS Project Structure URI. + + + + Gets the CSS Project Structure URI. + + + + + CSS Iteration URI + + + + + Initializes a new instance of the class for CSS Iteration URI. + + The CSS Iteration URI. + + + + Gets the CSS Iteration URI. + + + + + WorkItem attribute; used to specify a work item associated with this test. + + + + + Initializes a new instance of the class for the WorkItem Attribute. + + The Id to a work item. + + + + Gets the Id to a work item associated. + + + + + Timeout attribute; used to specify the timeout of a unit test. + + + + + Initializes a new instance of the class. + + + The timeout in milliseconds. + + + + + Initializes a new instance of the class with a preset timeout + + + The timeout + + + + + Gets the timeout in milliseconds. + + + + + TestResult object to be returned to adapter. + + + + + Initializes a new instance of the class. + + + + + Gets or sets the display name of the result. Useful when returning multiple results. + If null then Method name is used as DisplayName. + + + + + Gets or sets the outcome of the test execution. + + + + + Gets or sets the exception thrown when test is failed. + + + + + Gets or sets the output of the message logged by test code. + + + + + Gets or sets the output of the message logged by test code. + + + + + Gets or sets the debug traces by test code. + + + + + Gets or sets the debug traces by test code. + + + + + Gets or sets the execution id of the result. + + + + + Gets or sets the parent execution id of the result. + + + + + Gets or sets the inner results count of the result. + + + + + Gets or sets the duration of test execution. + + + + + Gets or sets the data row index in data source. Set only for results of individual + run of data row of a data driven test. + + + + + Gets or sets the return value of the test method. (Currently null always). + + + + + Gets or sets the result files attached by the test. + + + + + Specifies connection string, table name and row access method for data driven testing. + + + [DataSource("Provider=SQLOLEDB.1;Data Source=source;Integrated Security=SSPI;Initial Catalog=EqtCoverage;Persist Security Info=False", "MyTable")] + [DataSource("dataSourceNameFromConfigFile")] + + + + + The default provider name for DataSource. + + + + + The default data access method. + + + + + Initializes a new instance of the class. This instance will be initialized with a data provider, connection string, data table and data access method to access the data source. + + Invariant data provider name, such as System.Data.SqlClient + + Data provider specific connection string. + WARNING: The connection string can contain sensitive data (for example, a password). + The connection string is stored in plain text in source code and in the compiled assembly. + Restrict access to the source code and assembly to protect this sensitive information. + + The name of the data table. + Specifies the order to access data. + + + + Initializes a new instance of the class.This instance will be initialized with a connection string and table name. + Specify connection string and data table to access OLEDB data source. + + + Data provider specific connection string. + WARNING: The connection string can contain sensitive data (for example, a password). + The connection string is stored in plain text in source code and in the compiled assembly. + Restrict access to the source code and assembly to protect this sensitive information. + + The name of the data table. + + + + Initializes a new instance of the class. This instance will be initialized with a data provider and connection string associated with the setting name. + + The name of a data source found in the <microsoft.visualstudio.qualitytools> section in the app.config file. + + + + Gets a value representing the data provider of the data source. + + + The data provider name. If a data provider was not designated at object initialization, the default provider of System.Data.OleDb will be returned. + + + + + Gets a value representing the connection string for the data source. + + + + + Gets a value indicating the table name providing data. + + + + + Gets the method used to access the data source. + + + + One of the values. If the is not initialized, this will return the default value . + + + + + Gets the name of a data source found in the <microsoft.visualstudio.qualitytools> section in the app.config file. + + + + Specifies that null is allowed as an input even if the corresponding type disallows it. + + + Specifies that null is disallowed as an input even if the corresponding type allows it. + + + Specifies that an output may be null even if the corresponding type disallows it. + + + Specifies that an output will not be null even if the corresponding type allows it. + + + Specifies that when a method returns , the parameter may be null even if the corresponding type disallows it. + + + Initializes the attribute with the specified return value condition. + + The return value condition. If the method returns this value, the associated parameter may be null. + + + + Gets the return value condition. + + + Specifies that when a method returns , the parameter will not be null even if the corresponding type allows it. + + + Initializes the attribute with the specified return value condition. + + The return value condition. If the method returns this value, the associated parameter will not be null. + + + + Gets the return value condition. + + + Specifies that the output will be non-null if the named parameter is non-null. + + + Initializes the attribute with the associated parameter name. + + The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null. + + + + Gets the associated parameter name. + + + Applied to a method that will never return under any circumstance. + + + Specifies that the method will not return if the associated Boolean parameter is passed the specified value. + + + Initializes the attribute with the specified parameter value. + + The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to + the associated parameter matches this value. + + + + Gets the condition parameter value. + + + Specifies that the method or property will ensure that the listed field and property members have not-null values. + + + Initializes the attribute with a field or property member. + + The field or property member that is promised to be not-null. + + + + Initializes the attribute with the list of field and property members. + + The list of field and property members that are promised to be not-null. + + + + Gets field or property member names. + + + Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition. + + + Initializes the attribute with the specified return value condition and a field or property member. + + The return value condition. If the method returns this value, the associated parameter will not be null. + + + The field or property member that is promised to be not-null. + + + + Initializes the attribute with the specified return value condition and list of field and property members. + + The return value condition. If the method returns this value, the associated parameter will not be null. + + + The list of field and property members that are promised to be not-null. + + + + Gets the return value condition. + + + Gets field or property member names. + + + diff --git a/OszthatUnitTest/bin/Debug/Oszthat.exe b/OszthatUnitTest/bin/Debug/Oszthat.exe new file mode 100644 index 0000000000000000000000000000000000000000..3e37af2300979d1500a2dc75895d09d31bc900c8 GIT binary patch literal 5120 zcmeHLU2Ggz6+W}J*Umb2VmA#9A#}1f#BH+c_1b`w#<3l*-7fWCvyMZ-$eEqJUQaVS zvz<73f-$Yy5;D(rGj2@OCsIVlNbzLFV7OqYi;z4{>+=v zXm=<{-CBky0Zv!IT^&NN2HdXV1D{(PU3`IPzxvngLo!gIcKBUl ze2VDhj*!{fT_oBI`uSr-ArUu^rJ*LZ%Askw%6gHlZ=x|sH) zXM$3(O#$JFazHI@3el%MVY^UNqKgo+uYPEcL(Bq$0qQfle?u2N#De6|D zA>@UlIa~PrS&bt>E|2*Rb-?N;uWQ_yZFT5uP z&KGDNIEOp%`1yPe{Tk>Ka6NF=c8j37!CbrWV2t)K@po;M4yruR10dV*aU{qX>#3#d z4RPiNQNE-FeH`awG8U(81t+N|wvX0f7N;`3qs8ej3f@+5U1QF11#=2sQTzhw@Gzp_ zYl?G&UV-LUV!s3YtH$tQV)#$s2qBDtGp1p#w=@}>R`@k6)a{UJ!=!$zJx0qqTf9Vf zv@_5tDeA?CIx%95s-f&xS_;(7kou{X3$x&GqTpo@b;dL-HCr75Owc2M`w=t4lL}5N zm{;&A1)o;X0DO=vg+HrcUBPeBG5R=N10JUv$owENCq-%M#u-S1^AzA=ssavB9q>54 z2soTSY1he|cm1r_Sj7nO8qkPfGe`+yJ#KYF}ih0Ew= z)H4y7(Sl()4Hsg=7A8-c=3K90__N!lP)VS)>APN}m$Qtr<4WH$WyFd`&pW>G+-gC1 zTb3zyiGvghuOSci2ZF^egF4n!QaCwUDn5f~coQCdlKw~@3G8DXu#CN~V>e$WgDT{b zPg?gTa1VF|mn3tz9l7wc-+c9jKjg3NYy0+%*}om5c3soD+H}%7fb{h-*~=i-PKdKS&CGZymHlkClp6btIhHCG z$4;h1aXbS~(Ht9vCOaL$Wy3Kp$HYwspqgs(z!yea9exjyH9`9S$yr! z#bZCe`MuY9!ZWAVN@8ox99T0`a?|jtYhgmx+~PB9Y8ynHbhT8Z6JZU&uICun8Qa~W zS|O0E&$!;~wosc|-B&`SOE$lms3bo{`jo;x0{>4Lh^alMql$hAVK1ZK89kptRrBoP zv))}ya030!T_SZX>17=7>r*&gT>OM>Z`&BKRlKX~fU|TCSRNJnBIrEeTu`mkkK5mU zFL+r4Uja@u8T#QDHj;!a$|>Hey1nL58`!wt^5oD4?lNwJ#8xY~+YE3e7Ru(+dD&7yyR2k85EW3F+y-GTMS;UaVk5HL&o|=Aw z6)C}Q1%5reOi|W|rc|s;;TXIk9BY&#rh*LqyO@LAEW_TV64j7Tzh$QUw;{iM&0LPD zT<+ArJEObv$?G-^Pg2dHhzR*r{UE!WGem!C*~IVu=*`oU+Z9{i3QDbsB;KT?E*#S> z;aQ(Zo?n?ujVE>K8&1ivT}MnL>p~_c&-5gE5~q!@?$hDIkrT<9=bVz}CTcyIs#vDy zN_WFgnQrBjAuH*vk)&QR9BV^JKYHKPcyOlc4QKh1K=I_)cf`c+WKwtVeJP# zZJDZqOB>Z{ayanddo}6joelRs + + + + + \ No newline at end of file diff --git a/OszthatUnitTest/bin/Debug/Oszthat.pdb b/OszthatUnitTest/bin/Debug/Oszthat.pdb new file mode 100644 index 0000000000000000000000000000000000000000..9d892b0bd8b69596e44bba6420ca012d2ad8721f GIT binary patch literal 22016 zcmeHOeQZ|v#PKIisuV(;q(vhoRnm5CBY{6&5|_lz{0tN{ zwbsNorj9Aom=M!eZJkDuirBQK8fvN9Nfn~oq;9LUzxJ)J)4Hi?(AqIEh5df-z3Vt_ zUXs=h;N%_U_}q_k&pqed&v)KSM?9KJs>$B8GgKd{t#x*EwL60@x4WWzb!(RZ*tI`V zi{uFNfGs+)e&>M){%jMOYZfe64~Q>@pA`RFu;wp#!IFMflb8 zQ&Fwb`YCD;SmR&R!cMXpBw-AAEMEHmr`rKx$3<+ zQQi`ow+DF7e?&AnDnS=#rIm=7s1{E&hc-CtoPL+b<*p03yk5_?fXm~qRRV!PFzAg% zg28CG!P^jVdn5ixEZ`4DeVztiL$KH5iMc(!S#eh4ruD#7_y1e*1ep8$chf3wDVDbf zrW*fM*7)b`*J2S+sPo^t{};=MPu8;7LXBR*Nr@zL>78;Z{G zCv;a&OgY#S-Ov-QQ~SfIp`JbJk#v7J-P4&$_NBsuuBa+R^dnqJgKKDl%Uo2~5nYbC z7}ek~mywJ-*3+s)4)pc7?rZCAhi1y5WNQD`2bGi>PbTg@=ywHOUe``lRR$vihj*sa zsd(f-T2X0$dB+qR)5Ru~bZ=Jd!O3F7hS=~VvF6&sc|%Gn9aq#IsnM=PZ*qEF;7i#^ z_7^uAIgBCXkPQR>4!i?+C(sPGgINV8z_8n3Dg#~fSGTQ%f(*z>%A#p0pA$-fY}aIP zvX9L`%6{SM>3{Yk%|59k>lB~_>MnUVk2b$ZUfM)n*5&fjKFRz3l0P0LFZ-3Y=kn54 z$@`Z#PHH;P2jpd4E-#7}EO7k(4Xgsv?*#hEf`#D$j=xvbXj{r_hRL7FF&%G!OIISV zO$k*=bN6O-wOHg}+oM48OCFZVgA4tpXOIw3>>>k9sL`li(JKnkY z{KLQ7bzxJP{iWwd_Mw^R5UtQph!T8<#C>WR(jcWJXr`sp{648PYeN$|1B7&<{X)-D zH&R+v--Hd@KYpK!xK8X3*)wNI(eGtY`arkeruhO{!M*iyCICy}4)zUwGcZF`fGz=D z4vIRB(iY}XClHIvd>RyeW!8eiVHuaG2VDVNkM_&Kvl-uE)gbTE@@1l2)8)J1*KM_B zeZW43fduHO>4FzB8TR?^=y-;)zgv-CZRFW!HS*kVS&vtLViocMBOe5Xewh|fw8`9o zlcz!(Y3jNar2?96(5S=sT8xxBa<8H7yR}+<-(m7LAoaeN84IqP2e39UgY@;!u_16S zOW;~#T3b6E;W*E4x%Mw0EqPgAE;c$I=sK*Xl|jsgY}yq{4h$&KG%jYU>mDVcq~cM` zkBR!-@x&Lhs_W?B{KyOyyw?3=O z>c_bD*1|#DcW6V{pa%@P%b*^El1JK#q$$jX$7$Mnc706Ke8#HT=r^N~kHgR`IK}22 zaD8wO-w5Pfl4}S_3vOZ$REtg8eTQM zc0$(Fva3Y1A&}HewidJSd)=OvfS-30g4A(pxnW6UW1Zg< z_SH4Iqwc!KSZ~;a&ul#5#=v$FY;S4Z>1}1Kr0zx6nDm8wuF36$bu5>09?44{rs*RY zKgq4LL)!|izy|;6R;u9T-awFLq$Qe_HngxqCL7tsIsD2qgC7K&N6hnz@0*LACJ=Al zNWQNy=P>53_HsnNPchsCD-EDibST#xrKe@>4WlPq`r4;P*{(L^ZlIWqQ1K$ z6pr>QqCSDwEvl$jQ_=cUoYszvQX=zvw20N37Cmrz6+Wab6)RnX4S(q zZ)JE?ATprM^%wNumw3l0<9|;w3il|GPfA>Ui-812BoJZH!YquyQO+?SBY}k9-|y2V zlb$Q|FXDdMdy>=WqXFqB7wI(H57sv0t}%nJA2b)8$e#dD3_Lxc&A_uLqjiiULL6g+ zVhxb@48|I(fQ*mQYI=npp|$iL9{?C*p@(=5Q9pU+aKA(x(t-kdK%M~w6lsYnLJ#m9 zCrGO2tl#`TI?c-g~ivLgVqk`62@&AIl(-M}S2e|&N_|HT)0$HRRoZ5eX~)Z{nnRP@EfHVtTIPzjW0m;61>nfwPLJnlsHD zn7#gCWKoRq-xXEA{2Ryp4cjxPA3mPA@2CHY+>>qMII-`jzVe)9uE#*68}566E$i?a1V?i(9{R{R%E UC?ISupe#$2|hFRf&^FK9r& zMavTPf|H53Zy&&{?-tHKI)r;H#0Qb3az9>aR7&q+($dV0S?wIig>x zM0AdGM7M%>>k!f2PTBQnov5cx-UIqX8*PMQBLw}^n*ku>SYy9I@z9CR88VPIDE2J} zL={Ro)HZVP-jKrep~#|h5Gq?7H|BWch>j+BGHsIbm=A{O)>wC@c`X3 zv`ajX4Cp6gs+TDzqV9SVHZ{cmCSuwNn4vv@y>tL@2aPhEW_X0* zEW__Je1f3~cqciGKh3bg@JE0ddX3>_z`NTuu$qODxstdHRl~(ShppBK-Ta-wx9kz56LEf)5 zq*Gb@T2ZxTdX3harMee7RiWI#)|TTsVVktr2trXcVkIL^3O+A1@7U50{MFDvMe3$o z4C`gbH^u9tQQLD*NQ@(cWkju9Mwz6raU^Q zh!O`K>apXrU_Av#5}#FC62BSmh%f$az442EZ#_L&UwHkmAAa6+G))=BFI zvU8^*`xHnide?jxL7d9;;3uo~ynk_JdC$ZbFZI0l=-KCXe%5=aM~g4kZ>uk1DYg3t z(yX2Gy=G2IYtp|EXwbWff64tC-M-DSZWet@qg~BorT_7=u8(EM#)uARwBIy^ZI>sr zBjc;4Ju)$QaB5`QGP5Jr*u>P-L2GilY)|68#V(_`zVHyuYqZxmHB)L9d^kQ@hjGPC z8Dns_ufHiQI6=)d8>jGt?N_VxrbK7$F6H8yMs|E$J4!#SC*Pi7J=sQGq&}~w7u_O4@b^GTuiXzD9o^e@d;fWk z>MV%vin{1F^HH~k6TaET1gcIz)H^<&L(dj9PRyH2PheigjeQnyhL(WMqSHPFdKU0l z)OFJzy8iah$WCM{vH2)liSBH^lw(>=s?XD4)g%c!4*DLtg-*6v5y0)#QGtOW$__w*;xi(Vnr*? zQFKPx=Bw(|4}F!Xkaa!Sb=$nV{(c6Pp{;uJ6X=vRnuCoBTTq#(QG+9>z+2_pcAid` zaj10~gHL04h#rKMb~{nU%CK97U5VZ<$tuwz`@RtGp(>_)PjaXzRSEUK-1TzSiXq1} zScE+van+Ikuq_ievV;FgIQLuEcUGV?{}1z;Bk(Zb7%fE5Kt^t~4q<(BLy!Jvywth^ OzPY{rZ~4D21OEcfPugw( literal 0 HcmV?d00001 diff --git a/OszthatUnitTest/bin/Debug/OszthatUnitTest.pdb b/OszthatUnitTest/bin/Debug/OszthatUnitTest.pdb new file mode 100644 index 0000000000000000000000000000000000000000..7ac4f59bf269999d76685e142cd50ad64a3c6e1a GIT binary patch literal 13824 zcmeHOdu&r>6#u%7v4LYNjDbV2al^nyZ+rV#J2MQhfsioI?>@F}EM3W%8{0j} zx!>bFzH`oZ@AvB0`fwl~lVYKS$z$=9mz(Mv>r5`rYR#Kf>}_NO8H^bySwwgcWrAWQ z(VtTw0+$W!cE1kOHUbOpO$0-7{f8Y&njAI2VQi8x_$!R7%mGVfbOw=EbbOiMN zf26x_%*Kz@|MO@BNdErE+=#AV(nesU{-3Y+|D^4&hizCkDKrsQsft&rDH6>7GYG+> z!_G(l&ZzzE#-Z>T;y^OA8-BRjMH zql^!~UH#ntKdxLf?x|MFv)_AtvoUnZc(RPK+c|4b=3iL;=GVq~wQua|p7Ywi!$l_5 z_QN-R?z(ozQaJycLy_~>Up@c!=bzmv^yi-bjob3$;)a_iC(uQ`=@b!oSpDxe?r+|? z=WdbkyW!ls`}n|j4M)GavgO2E1^KQ2hTre&NMV9bn!pG=tp5Mt>^^qppk;C8ao^m| zr%t_Gd#mu!!NP)9%4 zL9xphDDef%QkxL(@U542B-(^Tb2OZ25~YMs%kW%4Vk~eUe@x-;B>n{WwT#R^y84*^ zC7)OHceeVt7gjgb#f5gUI~L!zVxt(B!m;SeE(ho0Y+Q{biS7Q#_L@W@9`<)qOE712 zYoI=;sE>+?(17}`q3Q)yy)Z=m=+-yHV;y2V5f&w%X5rdsD3+dW9fQJJ`(aghHg(Ms z>K`kmTPQ_W@r1*ng(^-H4zA;ebKGBE^sCj-OVx9389ZNZ?KMF6g8*g3 zEF*;OWqqrTwNbu>5cY#65^4ZHG~V4$p1KHL=mIZj$-MAgG~MBS?s01%9mP4UCmpuw%!BV>Az|rs4#E`h zy_hYP$9{}A1~znnFJjA+Xx0iVfXDqmMdpGmGjt%;WE7ezg8^HINg08H6jo_-Lkbq1 z^oU0QecYYP%lp0pwq&=F{oOs6eDcynjP=I~!mCL>7E%6jxqR)6R^8vPVt*q4M zvnq8`|ClO<&+o$y7zS2_JhNHrYV0+(Iz@}7bL2L12lg%s_t0mV$rEeu2uH*?w&SKU z=B}u7+N`chl`XaIISgYX0P`Kzn#oY*6{4*XTElu{fzEa@nvlwDHoM(n_Xo{_+gWLL z@Pgf3X$@G-mBEm})6ZhOQ0aV@x$0`YH8wAXM)NW5x)v904Vl~qXsAzK%WCutvM5g$ zHput(P>(ab9M#alc=h*Z%D?Dil?j22f&1KBsWkfO#+c4#MpvKW@MLshZ7-o5OKE3X zYFNlS6%Y&s^5kGCd5tODfBO=OlR9m`3~BEgExGUQS5cJsD=GdF-X}_X%v#&J$u84fth)U4C1Y(*O8` zvC9Z|QS-P5oJpHkq#E>6eJ>S)gl$O(857}6qI+qq!8`#v9LG3`Juv19j71nf5iHy> oz&M7WAW(2#-N!O4G%@eMp814@ggT6W1eCda{M*r6n4A=WE5b^rhX literal 0 HcmV?d00001 diff --git a/OszthatUnitTest/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/OszthatUnitTest/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/OszthatUnitTest/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/OszthatUnitTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/OszthatUnitTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000000000000000000000000000000000000..015834f17aee4546774d80dae119bf6d0ad26a39 GIT binary patch literal 20468 zcmeHPYg-$~6$Trx4Ng+yI*wx}snVovl9CM=V{Er>izTp03|5dZZY+vNyCbn?Z=T%+ zWJ2yu)27YSrq^%%1%3Jx+xN^~BrVv<)1tv2zz>7G+THh^GiT16bLP_5-`CgoAN?P`_;j5wj~{WLlnH^c=@?XG_x~h1*;Nmgim_o76|?-$2ig}%VVtm{W%@H`%Vp4qmy!Of{4;7;9cO>c(WC04=HxVz}N4XZh0+5EJ@T+=dH z$kRLNYH+R*+4hWJ4&U&^TKZL$)$!e_uJ2|%+eCd|qKj1~nmo)Nt3>sHhx2$z@T%2x zJ;6)7!61rRHweM6%`SfN8;`#!eqDU)bJp&!cyY(|&Zi1C>KTMNnk7qcBlLvDgA=|P zGEw177^`I#t_CNXxeLdA;WZ#3s?|xsn^q8tR{McLR4n8q!n1f$r!YEDPUpUw^IU6< zi*myT!`Gza(MDc{!Ouzf-_OT z7kGmU?&4K5!gKJ_`*_ncBE2fbq8-u>Yg%95VU&mZ`};NgqU<~L&m)yq5ON3ViS{)@ zQaJrOce$_({U(HUZ|v^f$J~M*ahur@FEdNrJD=TJ35Df0M+#10c*3^o?LKzlTX(U^ zNj70jTpYVReu0l(y1YE{I37cz{SaGl!Y4s@WP zz0jcp1>LKGbGe`V;K9Qvh6V@d;}I(04)hHkMS(xZs2HSTh>GJVhP0CJ8J8N6w+c%^3Y^_uZY&3H3d zWx}uB3Lb{5EL?Q0unK3d=GE`lO1vI5Q3miZtMGyrc;MOVnakUDd31vrt9jdGJ~Mzi()m zBuT&8X)5#$%XLicIeZ?_P21Ma$WMHe50kJ1x`#ac_jgv^XT}<9@}M?Xp{natOqt9_ zn4q7>zsXviVu#v_A%m5+%)3JwdaMjrx#0;%-{nMR(1-LH~DT9K4lg^P6yUaBs` zpawIzl-4;A`{KzUMsj)qbk_cNF}XavFwxOYT}_inWHGdCD@61n>;EDE$94kddqt`$ zx*i-dU@FmLS? zbkaVxy5%O;D!HPg<7?l?LuOC7WwDruyU!~?TInScwfL(5+3E?%3^SP7**5x;<&K}% z%ffQdN7j>0@&gdCdrANu0;vGkWWtoq{zD*&o+2hKIVH0@A>Rxo?vH@`fePHtfFJ24 zBN9j=#2j7&hd?z4(zDn1qw@2fn$cV`_5J_VMMAr9#2VuVn?9cZ@2-EA3$2AsEzO&^TvR~>T z^YMO=$yvg;z~i(1;8AV)9Cl)z3-V5>eMUjWQ==O$-2ZsI8w02k+f-s9OC||qZO;RE zTSaY47DMhm2rVN3zKi(>BaB_eaZqTfrXWKxDS-=s|5SZ;mP)l_i1M3L%+L-koL(q*N|} zk#ha4dY&D3kIR5pGIDn|ij+ddi$u~YS3u&Sl0GUJ5)aM1r~DJ(Zz#cUxy->NQ8G^@ z72v0;THw0v)yZ9wo{C;%HYd+LR)eb`L6LFKU8immG$Q^C&@wVsjGc>&e-0W-tkdi* z8X^8t>O2PfMVo#7pXCvBW~8f#XqV8WfaRU{IKaUyAhuW(CU;kjRyqI0Jmj_4eEb z0Dq1Na;qD!vD=~Z$z09y2%0{Aq4Bt&aD@hJW=yxM7TC|`^ zV$T6PR3Y?v9_ly3(AO8jI1?}rWF_{6kZBc>ocxL?CnIZq3;0S#cZttKT2MyAjBsLa zi(0-64oWNxaVV3UOQ`PxRf)by)b0%Q0P?vp41J zN87g7Kt)ZOFHhyB)m#lXIF(W;%V46U2X+$4)?G^qzuE^1xsYlF6qLA^RCd zjsZGKW?oV@WS32VD)D<$&|FrF17D4Oj#u96H?SN4+b5*N8vs}0k))MR_KIZ9Pc6^{ z3Au(#nHJ_*B<%9xz$%D+rDQ7NQR2a>5!2fU(yvKc7D%bFn~A>6M-FY9h!y5O(A8QD zsES-d5Rc?DGG4-PNBmOf=Sv70MgP3ZW_+GKY+#lV*~{{eWYS%0!S zk7?KN%ry5Q_PLF6{f1UGtFidI%jV9+=;b1oqF4>fpgn@J!9tKy;-O@mAQjiJd=_`& z2>43kl?-2g;PLhgDS~xSP_i;2aZKW{y%hO2-;@M4KtRbFfGz?uK}&=F=DyS)8JwyS z8;uqSC~*|K>YwYK4?#kaBFg9_)`CncsUfyNLCLfPElAP3Oy&E4Rx=URjh%~EwpD3@ zWPuGjk6QR-$eFO$d9I7^hDht-) zf#_p^E7HJB>@j-R{M;v?p(Fz8kb&eQTi{cmE7pOSM;R-^B!kcPK?kr|Elybd8sJLO z*mD1Ul}2D$>CaU)I)yHAqOc=T_8XupG5dsmr{o!kxszQBU#Mzr3GLWj;J*d961OJ- zPov00*?tFjC1zg2(~%NV*S-X-5^u8&+tua+M?m0U`}M*0>peYaWUo&zI1DA#R_N0>^y+w;B*x_Yw3{(!Sq7!_qy@-_^gS$%g2rl{vHaI z{tRpQ)Q?~74=5IU;_43{O)h7mMwYIgt;QPHf0O7BA)6-iEY=f3+ z(#o!F?Qgg=f~tPQnF#G&#=~^f!6E!=e@D@q_SXJ^S1;!qU{AJIr@Ie_p9KW{9F@vU Y3QRwT|8-yvzv<|?19O-i3ATLvzwMjaga7~l literal 0 HcmV?d00001 diff --git a/OszthatUnitTest/obj/Debug/OszthatUnitTest.csproj.AssemblyReference.cache b/OszthatUnitTest/obj/Debug/OszthatUnitTest.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..4595666d12702a54b1da9be07437f0c82bd08201 GIT binary patch literal 11562 zcmds7TWl0n7~TV=ZQ4QsZ;&9_1~rhhGu>XORH`9c@WHk;?WPzrNY2il-Hx4|DRb$~ zK#P|kzF?@D(5Fp^FOZ<|#aBogpL~&|CN+|1yig5^@+gMrIcLx8?rhI)yUunPdz`sR2!ft zU>m;Dpy@_ZiD^*K)bV<9qQ&K$;}|)nH)-)P`h{~szX5glS*=2QYkTNO0G!znGlr*4 z3ne*5Y$dJ(pw_VyR1q6F8<=Gmsoeoki%-9rkw*4*{CJ6egQYyl9uwBJxRS69Xeqi@ zlEg1wIWxO!sjl0RSjQy3o>WVcZB+Lz;)nT`B*kfoyk`G97i#ZC7acLaNV=zG|VK{+>-_tlpA79~wRu3SeFV_*3)k!&8elm;bsZym!6v=A-SuuRMC|{^g7R zY@JZw?Ynwq|CcY_TUcKD;r88yJBOcW+VWAoarE!GPi7Z?n%sH$>zc`vhgRBlT=`?$ z{a;p^ZhiLW%7d8H*D!zk#?^zTqs`Y*^Ro}X>#uq*R~xQb*?4DTqt*Aba^f^dAwLK<;$X;k8bmHLs_Xk z=3Z6xC{&dhZ)whP!qZIC$f$u}OwkfT1e#;swcW$y_9`%;>86DVTIfYlJK-4#`yGwZ zl!alIuvKUrpBguiS)SPOG>_=I>fI;xO!GcPJL}mEI~_MTf%7bJACrhnR|eYhy%O}j z$f-C1Xds2}pl(<&s-_8uR4V_n4b4=YW?8l`Y+tt@w86+DQWC>2(~bUdwt%jze(0(1In=QEubp z2rEOqN?=PiUKhDKZPPnl9JSrmoKuTjBozR-=FKndPnt8JjJn%`$_V{AKSIx4hUdNa>sz-ko&w(YwKynjT4mrPxgq#qOFOQm W-&J_Pl|hFRf&^FK9r& zMavTPf|H53Zy&&{?-tHKI)r;H#0Qb3az9>aR7&q+($dV0S?wIig>x zM0AdGM7M%>>k!f2PTBQnov5cx-UIqX8*PMQBLw}^n*ku>SYy9I@z9CR88VPIDE2J} zL={Ro)HZVP-jKrep~#|h5Gq?7H|BWch>j+BGHsIbm=A{O)>wC@c`X3 zv`ajX4Cp6gs+TDzqV9SVHZ{cmCSuwNn4vv@y>tL@2aPhEW_X0* zEW__Je1f3~cqciGKh3bg@JE0ddX3>_z`NTuu$qODxstdHRl~(ShppBK-Ta-wx9kz56LEf)5 zq*Gb@T2ZxTdX3harMee7RiWI#)|TTsVVktr2trXcVkIL^3O+A1@7U50{MFDvMe3$o z4C`gbH^u9tQQLD*NQ@(cWkju9Mwz6raU^Q zh!O`K>apXrU_Av#5}#FC62BSmh%f$az442EZ#_L&UwHkmAAa6+G))=BFI zvU8^*`xHnide?jxL7d9;;3uo~ynk_JdC$ZbFZI0l=-KCXe%5=aM~g4kZ>uk1DYg3t z(yX2Gy=G2IYtp|EXwbWff64tC-M-DSZWet@qg~BorT_7=u8(EM#)uARwBIy^ZI>sr zBjc;4Ju)$QaB5`QGP5Jr*u>P-L2GilY)|68#V(_`zVHyuYqZxmHB)L9d^kQ@hjGPC z8Dns_ufHiQI6=)d8>jGt?N_VxrbK7$F6H8yMs|E$J4!#SC*Pi7J=sQGq&}~w7u_O4@b^GTuiXzD9o^e@d;fWk z>MV%vin{1F^HH~k6TaET1gcIz)H^<&L(dj9PRyH2PheigjeQnyhL(WMqSHPFdKU0l z)OFJzy8iah$WCM{vH2)liSBH^lw(>=s?XD4)g%c!4*DLtg-*6v5y0)#QGtOW$__w*;xi(Vnr*? zQFKPx=Bw(|4}F!Xkaa!Sb=$nV{(c6Pp{;uJ6X=vRnuCoBTTq#(QG+9>z+2_pcAid` zaj10~gHL04h#rKMb~{nU%CK97U5VZ<$tuwz`@RtGp(>_)PjaXzRSEUK-1TzSiXq1} zScE+van+Ikuq_ievV;FgIQLuEcUGV?{}1z;Bk(Zb7%fE5Kt^t~4q<(BLy!Jvywth^ OzPY{rZ~4D21OEcfPugw( literal 0 HcmV?d00001 diff --git a/OszthatUnitTest/obj/Debug/OszthatUnitTest.pdb b/OszthatUnitTest/obj/Debug/OszthatUnitTest.pdb new file mode 100644 index 0000000000000000000000000000000000000000..7ac4f59bf269999d76685e142cd50ad64a3c6e1a GIT binary patch literal 13824 zcmeHOdu&r>6#u%7v4LYNjDbV2al^nyZ+rV#J2MQhfsioI?>@F}EM3W%8{0j} zx!>bFzH`oZ@AvB0`fwl~lVYKS$z$=9mz(Mv>r5`rYR#Kf>}_NO8H^bySwwgcWrAWQ z(VtTw0+$W!cE1kOHUbOpO$0-7{f8Y&njAI2VQi8x_$!R7%mGVfbOw=EbbOiMN zf26x_%*Kz@|MO@BNdErE+=#AV(nesU{-3Y+|D^4&hizCkDKrsQsft&rDH6>7GYG+> z!_G(l&ZzzE#-Z>T;y^OA8-BRjMH zql^!~UH#ntKdxLf?x|MFv)_AtvoUnZc(RPK+c|4b=3iL;=GVq~wQua|p7Ywi!$l_5 z_QN-R?z(ozQaJycLy_~>Up@c!=bzmv^yi-bjob3$;)a_iC(uQ`=@b!oSpDxe?r+|? z=WdbkyW!ls`}n|j4M)GavgO2E1^KQ2hTre&NMV9bn!pG=tp5Mt>^^qppk;C8ao^m| zr%t_Gd#mu!!NP)9%4 zL9xphDDef%QkxL(@U542B-(^Tb2OZ25~YMs%kW%4Vk~eUe@x-;B>n{WwT#R^y84*^ zC7)OHceeVt7gjgb#f5gUI~L!zVxt(B!m;SeE(ho0Y+Q{biS7Q#_L@W@9`<)qOE712 zYoI=;sE>+?(17}`q3Q)yy)Z=m=+-yHV;y2V5f&w%X5rdsD3+dW9fQJJ`(aghHg(Ms z>K`kmTPQ_W@r1*ng(^-H4zA;ebKGBE^sCj-OVx9389ZNZ?KMF6g8*g3 zEF*;OWqqrTwNbu>5cY#65^4ZHG~V4$p1KHL=mIZj$-MAgG~MBS?s01%9mP4UCmpuw%!BV>Az|rs4#E`h zy_hYP$9{}A1~znnFJjA+Xx0iVfXDqmMdpGmGjt%;WE7ezg8^HINg08H6jo_-Lkbq1 z^oU0QecYYP%lp0pwq&=F{oOs6eDcynjP=I~!mCL>7E%6jxqR)6R^8vPVt*q4M zvnq8`|ClO<&+o$y7zS2_JhNHrYV0+(Iz@}7bL2L12lg%s_t0mV$rEeu2uH*?w&SKU z=B}u7+N`chl`XaIISgYX0P`Kzn#oY*6{4*XTElu{fzEa@nvlwDHoM(n_Xo{_+gWLL z@Pgf3X$@G-mBEm})6ZhOQ0aV@x$0`YH8wAXM)NW5x)v904Vl~qXsAzK%WCutvM5g$ zHput(P>(ab9M#alc=h*Z%D?Dil?j22f&1KBsWkfO#+c4#MpvKW@MLshZ7-o5OKE3X zYFNlS6%Y&s^5kGCd5tODfBO=OlR9m`3~BEgExGUQS5cJsD=GdF-X}_X%v#&J$u84fth)U4C1Y(*O8` zvC9Z|QS-P5oJpHkq#E>6eJ>S)gl$O(857}6qI+qq!8`#v9LG3`Juv19j71nf5iHy> oz&M7WAW(2#-N!O4G%@eMp814@ggT6W1eCda{M*r6n4A=WE5b^rhX literal 0 HcmV?d00001 diff --git a/OszthatUnitTest/packages.config b/OszthatUnitTest/packages.config new file mode 100644 index 0000000..54eb31a --- /dev/null +++ b/OszthatUnitTest/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/c-sharp.sln b/c-sharp.sln index 2325419..dccf01f 100644 --- a/c-sharp.sln +++ b/c-sharp.sln @@ -63,6 +63,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NegyszogUnitTest", "Negyszo EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csv", "csv\csv.csproj", "{D8C331C6-6363-4C0B-91AA-71CC8A27EE6B}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Oszthat", "Oszthat\Oszthat.csproj", "{E1A9C08D-262D-45C4-BB49-EB8062DBC432}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OszthatUnitTest", "OszthatUnitTest\OszthatUnitTest.csproj", "{AAECCD50-3FAC-4567-9BA0-B24776B59DC5}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -271,7 +275,6 @@ Global {F2CDBA8F-B782-4B1C-A5E6-0EBE9F1AE3C2}.Release|Any CPU.Build.0 = Release|Any CPU {F2CDBA8F-B782-4B1C-A5E6-0EBE9F1AE3C2}.Release|x64.ActiveCfg = Release|Any CPU {F2CDBA8F-B782-4B1C-A5E6-0EBE9F1AE3C2}.Release|x64.Build.0 = Release|Any CPU -<<<<<<< HEAD {95611FCF-2765-4679-86FA-1212921A0D06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {95611FCF-2765-4679-86FA-1212921A0D06}.Debug|Any CPU.Build.0 = Debug|Any CPU {95611FCF-2765-4679-86FA-1212921A0D06}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -304,8 +307,6 @@ Global {2933E8F3-3C69-4429-AC6A-7875DB77DAD6}.Release|Any CPU.Build.0 = Release|Any CPU {2933E8F3-3C69-4429-AC6A-7875DB77DAD6}.Release|x64.ActiveCfg = Release|Any CPU {2933E8F3-3C69-4429-AC6A-7875DB77DAD6}.Release|x64.Build.0 = Release|Any CPU -======= -<<<<<<< HEAD {D8C331C6-6363-4C0B-91AA-71CC8A27EE6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D8C331C6-6363-4C0B-91AA-71CC8A27EE6B}.Debug|Any CPU.Build.0 = Debug|Any CPU {D8C331C6-6363-4C0B-91AA-71CC8A27EE6B}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -314,10 +315,22 @@ Global {D8C331C6-6363-4C0B-91AA-71CC8A27EE6B}.Release|Any CPU.Build.0 = Release|Any CPU {D8C331C6-6363-4C0B-91AA-71CC8A27EE6B}.Release|x64.ActiveCfg = Release|Any CPU {D8C331C6-6363-4C0B-91AA-71CC8A27EE6B}.Release|x64.Build.0 = Release|Any CPU -======= ->>>>>>> cbdc00b78c8377e68a29aab9c4aa4ff6d7ffe5e0 ->>>>>>> 101aa2fb434556debb8939ef883c8221e1e332b8 ->>>>>>> aa7898d30284c6d163ff6cc64f11ed8f53e33cae + {E1A9C08D-262D-45C4-BB49-EB8062DBC432}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E1A9C08D-262D-45C4-BB49-EB8062DBC432}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E1A9C08D-262D-45C4-BB49-EB8062DBC432}.Debug|x64.ActiveCfg = Debug|Any CPU + {E1A9C08D-262D-45C4-BB49-EB8062DBC432}.Debug|x64.Build.0 = Debug|Any CPU + {E1A9C08D-262D-45C4-BB49-EB8062DBC432}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E1A9C08D-262D-45C4-BB49-EB8062DBC432}.Release|Any CPU.Build.0 = Release|Any CPU + {E1A9C08D-262D-45C4-BB49-EB8062DBC432}.Release|x64.ActiveCfg = Release|Any CPU + {E1A9C08D-262D-45C4-BB49-EB8062DBC432}.Release|x64.Build.0 = Release|Any CPU + {AAECCD50-3FAC-4567-9BA0-B24776B59DC5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AAECCD50-3FAC-4567-9BA0-B24776B59DC5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AAECCD50-3FAC-4567-9BA0-B24776B59DC5}.Debug|x64.ActiveCfg = Debug|Any CPU + {AAECCD50-3FAC-4567-9BA0-B24776B59DC5}.Debug|x64.Build.0 = Debug|Any CPU + {AAECCD50-3FAC-4567-9BA0-B24776B59DC5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AAECCD50-3FAC-4567-9BA0-B24776B59DC5}.Release|Any CPU.Build.0 = Release|Any CPU + {AAECCD50-3FAC-4567-9BA0-B24776B59DC5}.Release|x64.ActiveCfg = Release|Any CPU + {AAECCD50-3FAC-4567-9BA0-B24776B59DC5}.Release|x64.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/csv/obj/Debug/csv.csproj.FileListAbsolute.txt b/csv/obj/Debug/csv.csproj.FileListAbsolute.txt index f87b0f0..18f0d38 100644 --- a/csv/obj/Debug/csv.csproj.FileListAbsolute.txt +++ b/csv/obj/Debug/csv.csproj.FileListAbsolute.txt @@ -6,3 +6,11 @@ C:\dev\c#\csv\obj\Debug\csv.csproj.SuggestedBindingRedirects.cache C:\dev\c#\csv\obj\Debug\csv.csproj.CoreCompileInputs.cache C:\dev\c#\csv\obj\Debug\csv.exe C:\dev\c#\csv\obj\Debug\csv.pdb +C:\dev\c#\c-sharp\csv\bin\Debug\csv.exe.config +C:\dev\c#\c-sharp\csv\bin\Debug\csv.exe +C:\dev\c#\c-sharp\csv\bin\Debug\csv.pdb +C:\dev\c#\c-sharp\csv\obj\Debug\csv.csproj.AssemblyReference.cache +C:\dev\c#\c-sharp\csv\obj\Debug\csv.csproj.SuggestedBindingRedirects.cache +C:\dev\c#\c-sharp\csv\obj\Debug\csv.csproj.CoreCompileInputs.cache +C:\dev\c#\c-sharp\csv\obj\Debug\csv.exe +C:\dev\c#\c-sharp\csv\obj\Debug\csv.pdb