1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090
|
2006-11-26 Miguel de Icaza <miguel@novell.com>
* DecimalTest.cs: Add new tests for TryParse.
2006-11-13 Atsushi Enomoto <atsushi@ximian.com>
* StringTest.cs : added test for IndexOf(string,StringComparison).
2006-11-07 Dick Porter <dick@ximian.com>
* DateTimeTest.cs: TestToString(): Must specify '+0' for GMT.
* TimeZoneTest.cs: Daylight saving ends at 2am in GMT. (This test
fails on MS, they return "01/01/0001 00:00:00")
2006-10-22 Zoltan Varga <vargaz@gmail.com>
* AppDomainTest.cs: Disable the not yet working #79720 test.
2006-10-22 Gert Driesen <drieseng@users.sourceforge.net>
* AppDomainTest.cs: Modified test for bug #79720 to also check the
number of loaded assemblies. Added additional test for bug #79720 to
ensure no regressions are introduced. Enabled test for bug #79715.
2006-10-22 Gert Driesen <drieseng@users.sourceforge.net>
* AppDomainTest.cs: Added tests for bug #79715, #79522, #79720.
All marked NotWorking until patches have been approved.
2006-10-19 Gert Driesen <drieseng@users.sourceforge.net>
* VersionTest.cs: Reworked tests for NUnit 2.2.x.
2006-10-14 Gert Driesen <drieseng@users.sourceforge.net>
* BadImageFormatExceptionTest.cs: Added ctors tests.
2006-10-07 Gert Driesen <drieseng@users.sourceforge.net>
* EnumTest.cs: Improved TestFormat_Args tests to check whether correct
exception is thrown.
2006-09-05 Raja R Harinath <rharinath@novell.com>
* DateTimeTest.cs (Kind): Add test for DateTime.Today.
2006-09-01 Raja R Harinath <rharinath@novell.com>
* TypeTest.cs (GenericByRef): New. Inspired by #79238.
Re-enable TypeTest.
* TypeTest.cs (TypeTest): Remove explicit constructor that
disabled the default empty constructor.
(Name): Use Assert.AreEqual.
(ByrefTypes): Use a nested type rather than TypeTest.
(InvokeMemberMatchPrimitiveTypeWithInterface): Likewise.
(Bug79023): Disable.
2006-08-31 Zoltan Varga <vargaz@gmail.com>
* TypeTest.cs: Add a test for #79110.
2006-08-22 Sebastien Pouliot <sebastien@ximian.com>
* DateTimeTest.cs: Split the X509Certificate test in two - so the 'Z'
literal case can be marked as NotWorking under 2.0 (anyway this doesn't
affect X.509 certificate parsing).
* StringTest.cs: Add a missing test case and split some existing (to
use nunit2 syntax).
* TypeTest.cs: Fix the unit test build (for 2.0) so that monobuild can
run them (both profiles).
2006-08-19 Miguel de Icaza <miguel@novell.com>
* StringTest.cs: Add test.
2006-08-17 Sebastien Pouliot <sebastien@ximian.com>
* DateTimeTest.cs: Added checks for DateTimeKind (2.0) for the special
case of handling X.509 certificate dates. Added more checks (Kind) for
the failing test case.
2006-08-14 Raja R Harinath <rharinath@novell.com>
* ActivatorTest.cs (GenericType_Open1): New test based on #78943.
(GenericType_Open2, GenericTypes_Closed): Likewise.
2006-08-05 Duncan Mak <duncan@novell.com>
* CharTest.cs (TestTryParseValid, TestTryParseInvalid): Added
tests for 2.0 method Char.TryParse.
2006-07-24 Atsushi Enomoto <atsushi@ximian.com>
* CharTest.cs : added tests for utf32 conversion methods.
2006-07-19 Kornél Pál <kornelpal@gmail.com>
* StringTest.cs: Added some more TestSbytePtrConstructorNegative tests
and TestSbytePtrConstructorOverflow tests.
2006-07-18 Kornél Pál <kornelpal@gmail.com>
* StringTest.cs: Added several tests for constructors that take sbyte*
as an argument. This covers bug #78703 as well. Renamed
TestUnsafeConstructors to TestCharPtrConstructors and removed sbyte*
tests from that test.
2006-07-11 Zoltan Varga <vargaz@gmail.com>
* DoubleTest.cs: Add a test for inner whitespace and Parse ().
2006-07-10 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : (Kind) make it work consistently.
2006-07-07 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : test for DateTimeKind handling in ToLocalTime()
and ToUniversalTime() (bug #78784).
2006-06-27 Atsushi Enomoto <atsushi@ximian.com>
* DoubleTest.cs : added test for bug #78546.
2006-06-20 Jb Evain <jbevain@gmail.com>
* MathTest.cs: add tests for Math.Truncate.
2006-05-08 Atsushi Enomoto <atsushi@ximian.com>
* ArrayTest.cs : test for bug #77277 by Kazuki Oikawa.
2006-04-26 Atsushi Enomoto <atsushi@ximian.com>
* DoubleTest.cs : added tset for bug #77721.
2006-04-26 Atsushi Enomoto <atsushi@ximian.com>
* TypeTest.cs : added test for bug #77367.
2006-03-31 Zoltan Varga <vargaz@gmail.com>
* EnvironmentTest.cs: Add tests for SetEnvironmentVariable.
2006-03-27 Atsushi Enomoto <atsushi@ximian.com>
* TimeSpanTest.cs : updated tests to not fail under run-test-ondotnet
on 2.0 profile. Thus marked them as NotWorking (since they are
regarded as working).
2006-03-16 Atsushi Enomoto <atsushi@ximian.com>
* DoubleTest.cs : added ParseEmptyString().
2006-03-12 Zoltan Varga <vargaz@gmail.com>
* TypeTest.cs: Add test for #74947.
2006-02-18 Raja R Harinath <harinath@gmail.com>
* TypeTest.cs (ByrefType): New.
2006-02-17 Raja R Harinath <rharinath@novell.com>
* TypeTest.cs: Rename one of the instances of Foo<T> to ComFoo<T>.
2006-02-14 Ankit Jain <jankit@novell.com>
* ArraySegmentTest.cs: Fix a misplaced #endif.
2006-02-14 Ankit Jain <jankit@novell.com>
Raja R Harinath <rharinath@novell.com>
* ArraySegmentTest.cs: New.
2006-02-02 Zoltan Varga <vargaz@gmail.com>
* TypeTest.cs: Add test for getting custom attributes of generic
instances.
2006-01-31 Atsushi Enomoto <atsushi@ximian.com>
* StringTest.cs : Added test for bug #77412.
2006-01-19 Atsushi Enomoto <atsushi@ximian.com>
* StringTest.cs : numbered some assertions.
2006-01-19 Atsushi Enomoto <atsushi@ximian.com>
* ModuleHandleTest.cs : GetPEKind() is not public in 2.0 RTM.
2006-01-03 Zoltan Varga <vargaz@gmail.com>
* ActivatorTest.cs: Add Nullable tests.
2006-01-02 Sebastien Pouliot <sebastien@ximian.com>
* ActivatorTest.cs: Added new test cases for bug #71300 and for some
specific types that cannot be created using Activator.
* TypeTest.cs: Added new test cases for bug #71300.
2006-01-02 Zoltan Varga <vargaz@gmail.com>
* TypeTest.cs: Add Nullable tests.
2005-12-26 Zoltan Varga <vargaz@gmail.com>
* TimeZoneTest.cs: Fix CET tests.
2005-12-23 Sebastien Pouliot <sebastien@ximian.com>
* TimeZoneTest.cs: Added test cases for serialization interop.
2005-12-23 Sebastien Pouliot <sebastien@ximian.com>
* DecimalTest.cs: Re-enabled Single rounding tests (which had nothing
to do with bug #60227). The problems were in the string output of the
float - which was then used to parse the decimal.
2005-12-22 Raja R Harinath <rharinath@novell.com>
* ConsoleTest.cs: Modernize to use attributes and Assert class.
2005-12-20 Sebastien Pouliot <sebastien@ximian.com>
* DecimalTest.cs: Fixed test cases to run (without failures) on 2.0.
Re-activated TestDiv by excluding only the failures from Mono (so it
doesn't get worse), in fact we only have 1 (very small) difference
with MS 2.0.
* DecimalTest2.cs: Fixed test cases to run (without failures) on 2.0.
2005-12-20 Raja R Harinath <rharinath@novell.com>
* TypeTest.cs (FullNameGenerics): Add tests for AssemblyQualifiedName.
(IsAssignable): New. Test Type.IsAssignableFrom for generic types.
2005-12-19 Sebastien Pouliot <sebastien@ximian.com>
* ArrayTest.cs: Added test cases for a binary search with an empty
list (bug #77030). Fixed other test cases so they execute without
failures under MS 2.0. Removed test cases for API changes in 2.0
final.
2005-12-18 Raja R Harinath <harinath@gmail.com>
* TypeTest.cs (FullNameGenerics): Identify individual assertions.
2005-12-15 Sebastien Pouliot <sebastien@ximian.com>
* DoubleTest.cs: Added test cases for parsing hexadecimal strings.
* SingleTest.cs: Added test cases for parsing hexadecimal strings.
2005-12-14 Sebastien Pouliot <sebastien@ximian.com>
* BadImageFormatExceptionCas.cs: MS fixed this in 2.0 final (#71861).
2005-12-13 Zoltan Varga <vargaz@gmail.com>
* ArrayTest.cs: Add regression test for #76973.
2005-12-13 Atsushi Enomoto <atsushi@ximian.com>
* DoubleTest.cs : added test for bug #75228.
2005-12-09 Raja R Harinath <rharinath@novell.com>
* TypeTest.cs (TypeParameterIsNotGeneric): New. Test invariants
listed in MSDN docs.
2005-12-08 Sebastien Pouliot <sebastien@ximian.com>
* AppDomainSetupTest.cs: Adapted tests to work on both Mono/MS and
both 1.1/2.0. Most of the previously "NonWorking" test cases were
really path issues (valid on Linux, invalid on Windows).
2005-12-06 Sebastien Pouliot <sebastien@ximian.com>
* ConvertTest.cs: Added test case for bug #76876 (new lines in b64).
* NumberFormatterTest.cs: Moved back "NotWorking" tests into their
normal test case (Test13024). Added more tests for carry propagation.
2005-12-05 Peter Dennis Bartok <pbartok@novell.com>
* EnumTest.cs: Added test for "no bits set" on flags enum (bug #76921)
2005-12-05 Sebastien Pouliot <sebastien@ximian.com>
* AppDomainSetupTest.cs: Fixed test cases to execute properly under
MS 1.1 SP1 and 2.0 final.
* DateTimeTest.cs: Split TestParse5 into several test cases to find
the one failing under MS 1.1 SP1. Also fixed tests for MS 2.0 final.
2005-11-19 Zoltan Varga <vargaz@gmail.com>
* ArrayTest.cs: Reenable some previously not-working 2.0 tests.
2005-11-11 Raja R Harinath <rharinath@novell.com>
* ArrayTest.cs (Resize_null): New. Test Resize<T> with a null argument.
2005-11-09 Atsushi Enomoto <atsushi@ximian.com>
* Int64Test.cs : ditto for long. Numbered tests.
2005-11-09 Atsushi Enomoto <atsushi@ximian.com>
* Int32Test.cs : Added tests for parsing "2147483648" (should be error)
2005-10-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* StringTest.cs: new test for LastIndexOfAny.
2005-10-18 Zoltan Varga <vargaz@gmail.com>
* TypeTest.cs: Add tests for #75515.
2005-10-15 Gert Driesen <drieseng@users.sourceforge.net>
* TypeTest.cs: Added GetTypeCode test.
2005-10-14 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : another crappy Windows dependent format.
2005-10-07 Zoltan Varga <vargaz@gmail.com>
* DelegateTest.cs: New file.
2005-09-26 Zoltan Varga <vargaz@gmail.com>
* StringTest.cs: Add test for #76204.
2005-09-20 Gert Driesen <drieseng@users.sourceforge.net>
* TypeTest.cs: test for #76150.
2005-09-14 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : test for #76082.
2005-09-06 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : test for #72132.
2005-09-06 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : test for #75995.
2005-09-06 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : test for #75213.
2005-09-01 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : another COM dependent idiotic parse.
2005-08-19 Gert Driesen <drieseng@users.sourceforge.net>
* ConvertTest.cs: FromBase64String always return zero-length byte
array for a zero-length string. On 2.0 profile, FromBase64String also
returns a zero-length byte array for a whitespace-only string.
Added tests for empty and whitespace-only byte array.
2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* ConvertTest.cs: added test for bug #75840.
2005-08-18 Gert Driesen <drieseng@users.sourceforge.net>
* ConvertTest.cs: Added mix/max base 16 convert from string tests for
byte/short/int.
2005-08-17 Gert Driesen <drieseng@users.sourceforge.net>
* ConvertTest.cs: Added tests for hex prefixed value, bad hex prefixes,
negative hex values, invalid chars for base 10 and 16 values, empty
base values, values containing only hex prefix, values containing only
negative sign.
2005-08-16 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : added ParseCOMDependent().
2005-08-16 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : added EmptyFormatPattern() failure case.
* StringTest.cs : number asserts.
2005-08-16 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : added test for M/d/yyyy. Uncommented B14 in
TestToString() (working). Commented some part of TestParseExact3()
(timezone dependent). Commented one case in TestParse5() (fails
under MS.NET).
2005-08-09 Zoltan Varga <vargaz@freemail.hu>
* StringTest.cs: Add tests for Split(String[]).
2005-07-25 Raja R Harinath <rharinath@novell.com>
* EnumTest.cs (TestParse2): Enable testcases.
2005-07-09 Zoltan Varga <vargaz@freemail.hu>
* AttributeTest.cs: Add test for bug #75514.
2005-07-07 Gert Driesen <drieseng@users.sourceforge.net>
* TypeTest.cs: Added test for bug #75408. Modified tests to use
Assert instead of inheriting from deprecated Assertion class.
2005-07-04 Ben Maurer <bmaurer@ximian.com>
* StringTest.cs: Add a test for 63981, which seems to be fixed
2005-06-30 Sebastien Pouliot <sebastien@ximian.com>
* GuidTest.cs: Updated tests to NUnit 2.2 format. Added tests for new
2.0 methods. Added missing tests for some constructors. Fixed 2 tests
to work on bigendian machines.
2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* ConvertTest.cs: added test from Lluis.
2005-06-27 Atsushi Enomoto <atsushi@ximian.com>
* StringTest.cs : added new Trim() tests for bug #75259.
2005-06-14 Sebastien Pouliot <sebastien@ximian.com>
* CharCategoryTest.cs: Added new whitespace (to fix failure on Mono,
there are other failures when executed under 2.0 beta 2).
* CharTest.cs: Added test to check for all whitespaces.
2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* ConvertTest.cs: added new tests for FromBase64String.
2005-06-06 Sebastien Pouliot <sebastien@ximian.com>
* ModuleHandleTest.cs: Renamed PortableExecutableKind to *Kinds to fix
compilation.
2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* ActivatorTest.cs: removed CreateCom* tests, as we don't support that
and will never do.
* AppDomainSetupTest.cs: fixed a 'NotWorking' test and added a comment
to the other.
2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* TypeTest.cs: new test for null in Type [] for GetConstructor().
2005-05-30 Sebastien Pouliot <sebastien@ximian.com>
* ActivatorTest.cs: Updated current tests (which weren't executed
since ...) and added more to test exceptions and unification.
2005-05-27 Raja R Harinath <rharinath@novell.com>
* DateTimeTest.cs (TestParseExact2): Remove. Merge into ...
(TestParseExact3): ... here. Fix to convert the parsed DateTime
to UTC before comparing values.
2005-05-25 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : TestParse3() is still NotWorking on others' :(
2005-05-25 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : added testcase for #72788. Test that assures we
reject 2 digit years for "yyyy".
2005-05-25 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : removed some NotWorking (they are working).
Added testcase for #63137.
2005-05-24 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : testcase for #60912.
2005-05-24 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : testcase for #71289.
2005-05-21 Ben Maurer <bmaurer@ximian.com>
* StringTest.cs: Add a test for bug #62160
2004-10-03 Gert Driesen <drieseng@users.sourceforge.net>
* StringTest.cs: Added test for issue with replacing of null chars
(bug #67395).
2005-05-19 Ben Maurer <bmaurer@ximian.com>
* MulticastDelegate.cs: Test for equals where !(obj is Delegate)
2005-05-15 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : Added bug #74775 case to TestParseExact().
2005-05-15 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : added Parse() test for bug #74936.
2005-05-13 Gert Driesen <drieseng@users.sourceforge.net>
* ActivatorTest.cs: Tests for exceptions thrown by CreateInstance
overloads if type is abstract.
2005-05-08 Gert Driesen <drieseng@users.sourceforge.net>
* DoubleFormatterTest.cs: re-enabled test as bug #60110 is fixed.
2005-05-07 Atsushi Enomoto <atsushi@ximian.com>
* DoubleTest.cs : added test for #72955.
2005-05-07 Ben Maurer <bmaurer@ximian.com>
* ArrayTest.cs: Test for #70725.
2005-04-23 Zoltan Varga <vargaz@freemail.hu>
* MathTest.cs: Add new rounding test.
2005-04-16 Ben Maurer <bmaurer@ximian.com>
* DateTimeTest.cs: Remove tests that fail durring DST.
2005-04-05 Sebastien Pouliot <sebastien@ximian.com>
* AppDomainCas.cs: New. Permission (CAS) unit tests for AppDomain.
2005-03-31 Sebastien Pouliot <sebastien@ximian.com>
* ExceptionTest.cs: Added check for ArgumentNullException on
GetObjectData method.
2005-03-30 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add new tests for bug #73972.
2005-03-24 Zoltan Varga <vargaz@freemail.hu>
* StringTest.cs: Added tests for new methods.
* ModuleHandleTest.cs: Fix warning.
2005-03-24 Sebastien Pouliot <sebastien@ximian.com>
* ActivatorCas.cs: New. CAS unit tests for Activator.
* ConsoleCas.cs: New. CAS unit tests for Console.
* EnvironmentCas.cs: Added partial trust test cases.
* ExceptionCas.cs: Added partial trust test cases.
* MarshalByRefObjectCas.cs: New. CAS unit tests for MarshalByRefObject.
* RuntimeMethodHandleCas.cs: New. CAS unit tests RuntimeMethodHandle.
* TypedReferenceCas.cs: New. CAS unit tests for TypedReference.
2005-03-15 Sebastien Pouliot <sebastien@ximian.com>
* BadImageFormatExceptionCas.cs: New. Permission tests for
BadImageFormatException.
2005-03-14 Sebastien Pouliot <sebastien@ximian.com>
* EnvironmentCas.cs: Fixed failures under MS for NET_1_1.
* ExceptionCas.cs: Fixed failures under MS for NET_1_1.
2005-03-09 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add tests for bug #73432.
2005-03-04 Zoltan Varga <vargaz@freemail.hu>
* StringTest.cs: Add some unsafe ctor tests.
2005-02-19 Ben Maurer <bmaurer@ximian.com>
* RandomTest.cs (NextDouble): Disable. See comment.
2005-02-14 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add tests for byref types.
2005-02-12 Ben Maurer <bmaurer@ximian.com>
* *: Fix up tests on 2.0 by explicitly boxing.
2005-02-11 Nick Drochak <ndrochak@ieee.org>
* NumberFormatterTest.cs:
* DecimalTest.cs:
* DecimalTest2.cs: Put NotWorking on some tests.
2005-02-01 Atsushi Enomoto <atsushi@ximian.com>
* NumberFormatterTest.cs : override SetUp().
2005-01-31 Nick Drochak <ndrochak@ieee.org>
* StringTest.cs: Some NotWorking tests fail on .NET too. Fix the tests
and then try on mono.
2005-01-30 Nick Drochak <ndrochak@ieee.org>
* StringTest.cs: Surgically remove some failing tests.
2005-01-29 Zoltan Varga <vargaz@freemail.hu>
* EnvironmentTest.cs: Reenable command line args test.
2005-01-28 Sebastien Pouliot <sebastien@ximian.com>
* EnvironmentTest.cs: Added a new unit for GetCommandLineArgs to track
bug #71938.
2005-01-28 Sebastien Pouliot <sebastien@ximian.com>
* EnvironmentCas.cs: New. Permission tests for Environment.
* ExceptionCas.cs: New. Permission tests for Exception.
2005-01-27 Nick Drochak <ndrochak@ieee.org>
* UInt64Test.cs: Identify tests better
2005-01-24 Sebastien Pouliot <sebastien@ximian.com>
* EnvironmentTest.cs: Updated to NUnit 2.2 syntax. Added some tests
(mostly for NET_2_0).
2005-01-19 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
* TypeTest.cs: Added tests for the Type.FilterNameIgnoreCase and
Type.FilterName delegates (more precisely the implementations behind)
2005-01-19 Zoltan Varga <vargaz@freemail.hu>
* ArrayTest.cs: Add AsReadOnly tests.
2005-01-11 Sebastien Pouliot <sebastien@ximian.com>
* AppDomainTest.cs: Removed tests for Activate and ActivateNewProcess
as the methods have been removed from fx 2.0.
2005-01-10 Sebastien Pouliot <sebastien@ximian.com>
* ApplicationIdentityTest.cs: Changed NullReferenceException for
ArgumentNullException (fixed in Dec CTP) and added test for cultures
in the application indentity.
* TimeZoneTest.cs: Ignore (don't fail) test if the current time zone
isn't part of the test suite.
2005-01-10 Nick Drochak <ndrochak@ieee.org>
* ConvertTest.cs: Test for exception thrown by 1.1. This is different
than the MSDN docs say. Probably a doc bug.
2005-01-08 Sebastien Pouliot <sebastien@ximian.com>
* AppDomainTest.cs: Un-ignore tests that unloaded the appdomain (they
previously displayed a lot of GC warnings). SetAppDomainPolicy_Dual is
fixed (i.e. it throws the excepted exception) in 2.0 (Dec CTP).
* BitConverterTest.cs: Exception thrown only for 1.0/1.1 - an empty
string is returned in 2.0.
2005-01-08 Miguel de Icaza <miguel@ximian.com>
* Int32Test.cs: Add a couple of new formatting tests.
* ConvertTest.cs: Updated the kind of exception thrown.
* BitConverterTest.cs: There is no exception thrown in .NET here.
Fixes an false negative.
2005-01-04 Raja R Harinath <rharinath@novell.com>
Fix for forthcoming type-lookup standard-conformance changes.
* StringTest.cs: Don't refer to System.Text.Encoding.ASCII.
Import the System.Text namespace and refer to Encoding.ASCII.
2004-11-24 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add regression test for #69787.
2004-11-16 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Make property accessor test #if NET_2_0.
2004-11-15 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add test typeof (IntPtr).IsPrimitive.
2004-11-15 Sebastien Pouliot <sebastien@ximian.com>
* BitConverter.cs: Added test for (legal) ToString (new byte [0]).
2004-11-15 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add test for bug #69389.
2004-11-11 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add test for bug #69365.
2004-11-06 Zoltan Varga <vargaz@freemail.hu>
* AppDomainTest.cs: Reenable SetData/GetData (null) tests.
2004-11-01 Zoltan Varga <vargaz@freemail.hu>
* StringTest.cs: Add new tests for (sbyte*, Encoding) ctor.
2004-10-27 Ben Maurer <bmaurer@ximian.com>
* DateTimeTest.cs (TestToString): Remove test C28.
The test does not work in banglore because they have an
offset that has a half-hour part.
2004-10-25 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add tests for byref types.
2004-10-08 Zoltan Varga <vargaz@freemail.hu>
* ConvertTest.cs: Add test for bug #67780.
2004-10-06 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add tests for GetInterfaces ().
2004-10-05 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add test for empty namespaces.
2004-10-02 Zoltan Varga <vargaz@freemail.hu>
* Int32Test.cs: Add tests for TryParse ().
2004-09-23 Martin Garton <martin@wrasse.demon.co.uk>
* ConvertTest.cs: Ensure ToType() fails with an ArgumentException in
a case where is cannot convert.
2004-09-24 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add test for StructLayoutAttribute.
2004-09-22 Sebastien Pouliot <sebastien@ximian.com>
* RandomTest.cs: Commented test CompareWithMS following constants
changes in Mono implementation (to use Knuth's constants).
2004-09-19 Zoltan Varga <vargaz@freemail.hu>
* ModuleHandleTest.cs: New file.
2004-08-31 Nick Drochak <ndrochak@ieee.org>
* BooleanTest.cs: Eliminate compiler warning.
* DateTimeTest.cs: Allow csc to compile.
* TypeTest.cs: Use unsafe for pointers.
2004-08-26 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add regression test for bug #63768.
2004-08-19 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : added bugzilla 63376 test case.
2004-08-17 Sebastien Pouliot <sebastien@ximian.com>
* VersionTest.cs: Added tests when cloning a version with no build and
no revision numbers (-1).
2004-08-09 Sebastien Pouliot <sebastien@ximian.com>
* ApplicationIdTest.cs: New. Unit tests for ApplicationId (NET_2_0).
* ApplicationIdentityTest.cs: New. Unit tests for ApplicationIdentity
(NET_2_0).
* AppDomainTest.cs: Added new unit tests for AppDomain (both fx 1.1
and 2.0).
2004-06-23 Sebastien Pouliot <sebastien@ximian.com>
* DoubleFormatterTest.cs: Added a new test for a negative roundtrip
(which was broken).
2004-06-19 Atsushi Enomoto <atsushi@ximian.com>
* FloatingPointFormatterTest.cs : Format literal (i.e. '...') in
format string should be kept as is.
2004-06-18 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : Improved CultureIndependentTests(). Error message
contains specific locale and error location. Verified by run-test-
ondotnet and commented out X509-like pattern.(not all culture passes)
2004-06-16 Sebastien Pouliot <sebastien@ximian.com>
* DoubleFormatterTest.cs: Added new cases from bug reports 60110
(roundtrip format) and 60111 (non-banker rounding).
2004-06-15 Sebastien Pouliot <sebastien@ximian.com>
* ConvertTest.cs: Changed compare between Decimals (from a string
compare to Decimal.Equals) because the issue wasn't related to the
Convert class. See #60227 for more details.
* DecimalTest.cs: Added test to ensure we keep/output the decimals
precision (#59425). Added tests to see how many decimals are supported
in "G" before switching to "E".
2004-06-14 Sebastien Pouliot <sebastien@ximian.com>
* TimeSpanTest.cs: Added more cases with MinValue and MaxValue for
each parameter of the constructor. Some tests are ignored because
they are too long to run (but useful when debugging).
2004-06-14 Atsushi Enomoto <atsushi@ximian.com>
* FloatingPointFormatterTest.cs : Added more permille and percent
formatting test.
2004-06-14 Atsushi Enomoto <atsushi@ximian.com>
* FloatingPointFormatterTest.cs : Added Permille formatting test.
2004-06-13 Atsushi Enomoto <atsushi@ximian.com>
* FloatingPointFormatterTest.cs : Added regression for #59890.
2004-06-11 Sebastien Pouliot <sebastien@ximian.com>
* TimeSpanTest.cs: Added valid cases to parse MinValue and MaxValue.
Added invalid cases to parse under MinValue and over MaxValue.
2004-06-10 Sebastien Pouliot <sebastien@ximian.com>
* DecimalTest.cs: Added rounding tests for negative values. Added more
checks to ParseFractions. Removed test TooSmall because it was a bad
interaction between a buggy corlib (buggy decimal) and the tests (i.e.
the value was legal).
2004-06-10 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : added more "common pattern" tests.
2004-06-10 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs : Added more milliseconds and pattern recognition
tests. Patch by Steven Brown (a bit modified).
2004-06-09 Sebastien Pouliot <sebastien@ximian.com>
* DecimalTest.cs: Added tests for remainder, divide and parsing
overflow. Reactivated test and added new cases for banker rounding.
2004-06-08 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeTest.cs :
- Added TestParse3() (not-allowed pattern example), ParseUtcNonUtc()
("GMT" strings and time adjustment), TimeZoneAdjustment() ('Z'
pattern conditions) and CultureIndependentTests() (batch tests for
_all_ or almost all cultures).
- Added more Z string to X509Certificate test.
- Added ParseAllowsQueerString() [not fixed].
2004-06-08 Sebastien Pouliot <sebastien@ximian.com>
* DecimalTest.cs: Added test case for truncating including indirect
truncates with cast to integer types.
2004-06-07 Duncan Mak <duncan@ximian.com>
* ExceptionTest.cs (InnerExceptionSource): Test that the
InnerException's Source is null unless it's been set.
2004-06-07 Sebastien Pouliot <sebastien@ximian.com>
* DateTimeTest.cs: Added new test cases for From|ToOADate (OLE
Automation date format). Added test cases for FromFileTime. Added
test cases for ToType (conversion) and contructors (milliseconds).
2004-06-06 Sebastien Pouliot <sebastien@ximian.com>
* DecimalTest.cs: Added tests for default ToString(). Added tests when
Decimal is casted to an integer (trunc not rounded). Added tests to
parse very small values (#59301).
* ByteTest.cs: Added tests for default ToString(String.Empty).
* DoubleTest.cs: Added tests for default ToString(String.Empty).
* Int16Test.cs: Added tests for default ToString(String.Empty).
* Int32Test.cs: Added tests for default ToString(String.Empty).
* Int64Test.cs: Added tests for default ToString(String.Empty).
* SByteTest.cs: Added tests for default ToString(String.Empty).
* SingleTest.cs: Added tests for default ToString(String.Empty).
* StringTest.cs: Added more cases for Join (null separator and null
values).
* TimeSpanTest.cs: Added test to verify exception order when a parsed
string is both invalid (format) and contains an overflow.
* UInt16Test.cs: Added tests for default ToString(String.Empty).
* UInt32Test.cs: Added tests for default ToString(String.Empty).
* UInt64Test.cs: Added tests for default ToString(String.Empty).
2004-06-05 Sebastien Pouliot <sebastien@ximian.com>
* ConvertTest.cs: Added tests to convert min/max values of integer
types to strings in all bases.
* SByteTest.cs: Added test to parse min/max values.
2004-06-04 Sebastien Pouliot <sebastien@ximian.com>
* MathTest.cs: Added case to check for negative 0 (double) in
IEEERemainder - including when dividend is negative.
* TimeSpanTest.cs: Added more asserts in existing tests cases.
Added case to check for ToString with MinValue and MaxValue.
2004-06-02 Sebastien Pouliot <sebastien@ximian.com>
* TimeSpanTest.cs: Added tests for overflow checking and parsing
only days (LAMESPEC).
2004-06-01 Sebastien Pouliot <sebastien@ximian.com>
* TimeSpanTest.cs: Added tests for exceptions in FromXXX methods
which are very badly documented.
2004-05-30 Sebastien Pouliot <sebastien@ximian.com>
* ArrayTest.cs: Added tests for null values in BinarySearch.
* Byte.cs: Added test for default ToString format value.
2004-05-30 David Sheldon <dave-mono@earth.li>
* DecimalTest.cs: Moved the rounding test that fails due to
bug 37744 into its own test, and annotated it as ignored until
the bug is fixed.
2004-05-29 Sebastien Pouliot <sebastien@ximian.com>
* ConvertTest.cs: Added new parsing tests including special case for
Convert.ToSByte. Added test to ChangeType to Empty.
* Int64Test.cs: Added new test cases for overflows.
2004-05-28 Sebastien Pouliot <sebastien@ximian.com>
* ConvertTest.cs: Removed extra 0 from ToInt16_MinValue. Added overflow
testing for integer types convertion. Added new tests for pasring
MinValue and MaxValue of integer types in all supported bases. Added
case for a prefixed hexadecimal without a number.
2004-05-27 Sebastien Pouliot <sebastien@ximian.com>
* ConvertTest.cs: More complete tests for unsigned type convertion wrt
-0, base != 10, ... Added tests for int16 limits in various bases.
2004-05-26 Sebastien Pouliot <sebastien@ximian.com>
* ArrayTest.cs: Added integer overflow tests for LastIndexOf.
* ConvertTest.cs: Added case where 0X00 is valid when parsed in base16
2004-05-25 Sebastien Pouliot <sebastien@ximian.com>
* ArrayTest.cs: Added tests to check for integer overflow in Clear,
Copy and Reverse.
* BitConverterTest.cs: Added test to check for possible integer
overflow in ToString (byte,int,int)
* ConvertTest.cs: New tests for prefixed hexadecimal strings and
negative byte convertion.
* StringTest.cs: Added new tests for integer overflow and negatives.
Added tests for special cases like s.LastIndexOf ('o', s.Length, 1)
fail but s.LastIndexOf ("o", s.Length, 1) works.
2004-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* DateTimeTest.cs: test for bug 56436.
2004-05-23 Sebastien Pouliot <sebastien@ximian.com>
* ArrayTest.cs: Added a new test to clear outside the bound of a
multidimentional array.
* BooleanTest.cs: Added new test to compare booleans using Equals
and == (case of True!=True). Converted to NUnit2 format.
* BitConverterTest.cs: Added new tests for negative integers and
integer overflow in To... methods. Added new boolean convertion
tests.
* BufferTest.cs: Added new tests for integer overflow in BlockCopy.
2004-05-22 Sebastien Pouliot <sebastien@ximian.com>
* ArrayTest.cs: Added a new test to clear a jagged array and a
multidimentional array.
* IntPtrTest.cs: New. Tests for 32/64 bits behaviour of IntPtr.
* SingleTest.cs: Added tests to compare positive 0 and negative 0.
* UIntPtrTest.cs: New. Tests for 32/64 bits behaviour of UIntPtr.
2004-05-21 Sebastien Pouliot <sebastien@ximian.com>
* DecimalTest.cs: Added new unit test to check for correct rounding.
It appears that Decimal.To... trunk but Convert.To... use banking
rounding (so we can't use Convert.To... to implement To...). But
IConvertible does share Convert.To behaviour. Added tests for negative
values and large number parsing (> Int64).
* SingleTest.cs: New. Unit tests for Single (adapted from Double).
2004-05-20 Sebastien Pouliot <sebastien@ximian.com>
* AppDomainTest.cs: Renamed Unload to TearDown (like it's attribute)
to ease searches.
* ConvertTest.cs: Added new unit tests for integer overflow in To/From
Base64CharArray. Added new test for wide char. Exploded some tests in
NUnit2 format (to ease add new tests).
2004-05-19 Gert Driesen (drieseng@users.sourceforge.net)
* AttributeTest.cs: added tests for Inherited and
AllowMultiple
2004-05-19 Gert Driesen (drieseng@users.sourceforge.net)
* AttributeTest.cs: formatting, and remove commented
code
2005-05-18 Sebastien Pouliot <sebastien@ximian.com>
* BufferTest.cs: Added missing tests for BlockCopy exceptions.
2004-04-27 Nick Drochak <ndrochak@gol.com>
* ConvertTest.cs: Remove compiler warnings.
2004-04-25 Nick Drochak <ndrochak@gol.com>
* MathTest.cs: Check precision only so far.
2004-04-22 Lluis Sanchez Gual <lluis@ximian.com>
* AppDomainSetupTest.cs: Changed again test 3 to test that the appdomain is
relative to the current dir, rather than the temp dir. I confirment that
this is how ms.net works.
2004-04-13 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add new regression test for bug #55874.
2004-04-12 David Sheldon <dave-mono@earth.li>
* TimeZoneTest.cs: Make pass when in "GMT".
2004-04-09 David Sheldon <dave-mono@earth.li>
* ConvertTest.cs: Tests for Convert.ToInt32(string, base), with
signs on the strings.
2004-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* TypeTest.cs: enumerated the tests.
2004-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* EnvironmentTest.cs: use uppercase for PATH. Added test to check the
expected substitutions.
2004-04-02 Sebastien Pouliot <sebastien@ximian.com>
* EnvironmentTest.cs: New. Add unit tests for ExpandEnvironmentVariables.
2004-03-29 Lluis Sanchez Gual <lluis@ximian.com>
* GuidTest.cs: Test constructor when the input string is in format "P"
or "N".
2004-03-23 Lluis Sanchez Gual <lluis@ximian.com>
* ByteTest.cs, Int32Test.cs, Int64Test, SingleFormatterTest.cs,
UInt16Test.cs, UInt32Test.cs, UInt64Test.cs: Made some tests depend on the
current culture.
2004-03-22 Dick Porter <dick@ximian.com>
* DateTimeTest.cs (System): Test the MM-dd-yyyy date parse format.
2004-03-21 Jackson Harper <jackson@ximian.com>
* DoubleFormatterTest.cs: test setting the number of decimal
digits.
2004-03-10 Sebastien Pouliot <sebastien@ximian.com>
* ConvertTest.cs: Added another test showing that input length
can't easily be used to check for valid base64 encoding.
2004-03-10 Sebastien Pouliot <sebastien@ximian.com>
* ConvertTest.cs: Added a new unit tests for FromBase64String and
FromBase64CharArray to check for ignored characters (tab, lf, cr
and spaces). Splitted existing tests into smaller tests.
2004-02-29 Zoltan Varga <vargaz@freemail.hu>
* StringTest.cs: Add regression test for bug #54988.
2004-02-27 Sebastien Pouliot <sebastien@ximian.com>
* ConvertTest.cs: Added a new test for bug #54939 when converting a
base64 containing NF and/or LF.
2004-02-27 Lluis Sanchez Gual <lluis@ximian.com>
* StringTest.cs: Added test for Concat when one of the arguments is an
object that returns null on its ToString ().
2004-02-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* AttributeTest.cs: added test for bug 54518.
2004-02-20 Atsushi Enomoto <atsushi@ximian.com>
* CharCategoryTest.cs : csc build fix (line length excess.)
2004-02-18 Atsushi Enomoto <atsushi@ximian.com>
* CharCategoryTest.cs : cleaning ;)
2004-02-18 Atsushi Enomoto <atsushi@ximian.com>
* Added CharCategoryTest.cs (brute force test for Char.IsXXX()).
2004-02-05 Sebastien Pouliot <sebastien@ximian.com>
* AppDomainTest.cs: New. Unit tests for SetPrincipalPolicy and
SetThreadPrincipal.
2004-01-31 Nick Drochak <ndrochak@ieee.org)
* ConvertTest: Cannot partially qualify the type name with csc.
2004-01-31 David Sheldon <dave-mono@earth.li>
* ConvertTest.cs: Added test for malformed Base64. Bug 52928
2004-01-30 Sebastien Pouliot <spouliot@videotron.ca>
* DateTimeTest.cs: Modified X509Certificate test to use
ToUniversalTime ().
2004-01-28 Sebastien Pouliot <spouliot@videotron.ca>
* DateTimeTest.cs: Added a new unit test (X509Certificate) to better
detect regressions in DateTime. See bugzilla entry #53461.
2004-01-27 Nick Drochak <ndrochak@gol.com>
* AppDomainSetupTest.cs: When I run this on .NET the AppBase uses the
temp dir. Perhaps a different runner gives different results? I'm
using 'make run-test' from the mcs directory.
2004-01-22 David Sheldon <dave-mono@earth.li>
* AppDomainSetupTest: Changed test 3 to test that the
appdomain is relative to the current dir, rather than
the temp dir. This is what the MS runtime appears to
give, and handily is what we do too.
2004-01-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* DateTimeTest.cs: added test for bug 52075.
2004-01-16 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: Add Tests for vectors<->one dim. arrays.
2003-01-11 David Sheldon <dave-mono@earth.li>
* DateTimeTest.cs: Tests for bug 52274 fix, formats such as
'--MM--'
2003-12-27 Nick Drochak <ndrochak@gol.com>
* AppDomainSetupTest.cs: Seems that AppDomainSetup's use the temp
path, not current directory.
2003-12-22 Bernie Solomon <bernard@ugsolutions.com>
* Int32Test.cs:
Int64Test.cs: Add checks for overflow on hex parse.
2003-12-20 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs (GetMethodImpl): New test for overload resolution.
2003-12-19 Dick Porter <dick@ximian.com>
* StringTest.cs: Added Compare test for length==0.
2003-12-17 Dick Porter <dick@ximian.com>
* StringTest.cs: Add a String.Empty test to EndsWith. Changed the
StartsWith and EndsWith tests to use the attribute declaration.
2003-12-17 Atsushi Enomoto <atsushi@ximian.com>
* StringTests.cs : Added more tests on TestStartsWith.
2003-12-08 Patrik Torstensson <p@rxc.se>
* TypeTest.cs: Added basic tests for GetMethodImpl and GetPropertyImpl
2003-12-08 Nick Drochak <ndrochak@gol.com>
* DateTimeTest.cs: Little build fix for csc. It doesn't like the
fully qualified name.
2003-12-06 Ravindra <rkumar@novell.com>
* DateTimeTest.cs: Added a test case for Parse(String, format).
Bug #51464.
2003-11-14 Nick Drochak <ndrochak@gol.com>
* FloatingPointFormatterTest.cs: Make test pass on .NET 1.1.
2003-11-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* ValueTypeTest.cs: New tests.
2003-11-14 Nick Drochak <ndrochak@gol.com>
* DateTime.cs: Running tests in different timezones give different
results. Need to change the way these tests work. Disabling some
tests for now.
2003-11-14 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Fix a few tests where NullReferenceException
is expected, not ArgumentNullException.
2003-11-01 Pedro Martínez Juliá <yoros@wanadoo.es>
* DateTimeTest.cs: Changed the Asserts to fix some things related to
universal time, we can't test the equality if one DateTime is into
the code and the other comes from the TimeZone. Different TimeZones,
different errors in the test.
2003-10-31 Pedro Martínez Juliá <yoros@wanadoo.es>
* DateTimeTest.cs: Removed Universal Time in ToString because in
each computer that could be different. We need more control over
that to know what the result should be.
2003-09-09 Zoltan Varga <vargaz@freemail.hu>
* ArrayTest.cs: Fix the expected exception on some methods.
2003-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* StringTest.cs: added a couple of tests for Split. See bug #47802.
2003-08-21 Zoltan Varga <vargaz@freemail.hu>
* ArrayTest.cs: Added regression test for #38812.
2003-08-10 Miguel de Icaza <miguel@ximian.com>
* ArrayTest.cs: New test from Thong (Tum) Nguyen.
2003-08-04 Duncan Mak <duncan@ximian.com>
* FloatingPointFormatterTest.cs: New file. Added with one test by
Aleksey Demakov <avd@openlinksw.com>.
* ConvertTest.cs (TestToUInt16): Add a new case noted by
c5n4kh6u02@sneakemail.com in
http://bugzilla.ximian.com/show_bug.cgi?id=43098.
2003-07-23 Lluis Sanchez Gual <lluis@ximian.com>
* EnumTest.cs: Test ToString() for unnamed flag enum values.
2003-07-13 Zoltan Varga <vargaz@freemail.hu>
* TypeTest.cs: New file.
2003-07-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* AppDomainSetupTest.cs: new tests.
2003-06-25 Nick Drochak <ndrochak@gol.com>
* DateTimeTest.cs: Custom format string uses January of current Year.
2003-06-25 Nick Drochak <ndrochak@gol.com>
* DateTimeTest.cs: Re-enable test because bug #30030 is fixed.
2003-06-25 Nick Drochak <ndrochak@gol.com>
* ByteTest.cs: Culture settings can affect where it puts the '%'.
2003-06-23 Nick Drochak <ndrochak@gol.com>
* ConvertTest.cs: Ignore and report bug in bugzilla #45286.
2003-06-23 Nick Drochak <ndrochak@gol.com>
* TimeZoneTest.cs: Make pass when on Tokyo Standard Time.
2003-06-23 Nick Drochak <ndrochak@gol.com>
* DecimalTest.cs: Make pass on .NET 1.1
* MarshalByRefObjectTest.cs: Avoid port conflict with other tests.
* SingleFormatterTest.cs: Ignore user overridden settings.
2003-06-23 Nick Drochak <ndrochak@gol.com>
* DateTimeTest.cs (TestOA): Compare DateTime values instead of strings
to avoid "culture shock". Made a new AssertEquals() that is more
DateTime-friedly.
2003-06-19 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Cleanup unused bits. Also get tests passing on .NET 1.1
All tests pass here now.
2003-06-18 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Add .NET 1.1 overload test, and fix build problem.
2003-06-13 Duncan Mak <duncan@ximian.com>
* ArrayTest.cs (TestCreateInstance2): Expects
ArgumentNullException, which is a specific subtype of
ArgumentException.
2003-06-10 Ville Palo <vi64pa@kolumbus.fi>
* DateTimeTest.cs: more tests.
2003-06-09 Duncan Mak <duncan@ximian.com>
* ArrayTest.cs:
(TestCreateInstance2):
(TestLastIndexOf4):
(TestLastIndexOf5):
(MoreSort10): Added 4 new tests.
2003-06-10 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Cleanup some unused bits.
2003-06-02 Sebastien Pouliot <spouliot@videotron.ca>
* RandomTest.cs: Added a test to compare Mono's random streams with
MS implementation (framework and Rotor). Converted to NUnit2 format.
2003-06-01 Pedro Martínez Juliá <yoros@wanadoo.es>
* DoubleFormatterTest.cs: added the last changes from the author of
this test (Patrick Kalkman <kalkman@cistron.nl>).
* SingleFormatterTest.cs: added the first release of this test from
the same author: Patrick Kalkman <kalkman@cistron.nl>.
2003-05-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* ArrayTest.cs: added more tests for bug 43783.
2003-05-22 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Add conditional compile for 1.1
2003-05-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* EnumTest.cs: added tests from bug #41522.
2003-05-12 Zoltan Varga <vargaz@freemail.hu>
* StringTest.cs: New tests for IndexOf and LastIndexOf + conversion
to Nunit 2.
2003-04-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* EnumTest.cs: tests from bug #41522 by Richar Lee.
2003-04-23 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Disambiguate overloads now in .NET 1.1.
2003-04-18 Eduardo Garcia Cebollero <kiwnix@yahoo.es>
* ArrayTest.cs: added a few more tests to test Array.Initialize()
and added some [Test] atributes to the tests.
2003-04-17 Nick Drochak <ndrochak@gol.com>
* DoubleTest.cs: Output some more debug info.
2003-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* BufferTest.cs: added a few more tests for testing buffer length.
Patch by Jerome Laban <jlaban@wanadoo.fr>
2003-04-10 Ville Palo <vi64pa@kolumbus.fi>
* ConvertTest.cs: Added some tests for ToXXX methods.
TestConvertFromNull ()
2003-03-22 Pedro Martínez Juliá <yoros@wanadoo.es>
* DoubleTest.cs: Converted to Nunit 2.0. Completed ToString test.
2003-03-09 Nick Drochak <ndrochak@gol.com>
* ConsoleTest.cs:
* ConvertTest.cs: Re-enable tests. They no longer hang the runtime.
2003-03-03 Nick Drochak <ndrochak@gol.com>
* StringTest.cs: Catch exception the .NET docs say should not be thrown
2003-02-28 Zoltan Varga <vargaz@freemail.hu>
* StringTest.cs: added String constructor tests.
2003/02/26 Nick Drochak <ndrochak@gol.com>
* ActivatorTest.cs: Unregister the channel like it should.
* MarshalByRefTest.cs: Take out my hack.
Both from Jean-Marc Andr [jean-marc.andre@polymtl.ca].
2003-02-25 Nick Drochak <ndrochak@gol.com>
* TimeSpanTest.cs: Isolate test for Negate bug. Same as previous
'checked' bug in ByteTest?
2003/02/21 Nick Drochak <ndrochak@gol.com>
* EnumTest.cs: Add test for bug 38452 (Parsing numeric enum values).
2003-02-20 Nick Drochak <ndrochak@gol.com>
* ByteTest.cs: Isolate test for mcs 'checked' bug.
2003/02/13 Nick Drochak <ndrochak@gol.com>
* ActivatorTest.cs:
* MarshalByRefTest.cs: New unit tests from Jean-Marc Andr
[jean-marc.andre@polymtl.ca]. One failure on .NET in the latter.
2003-02-08 Pedro Martínez Juliá <yoros@wanadoo.es>
* MathTest.cs: Add more tests because they were insufficient. Now
they check limit values. Also add comments with the tests for the
new Math functions.
2003-02-05 Nick Drochak <ndrochak@gol.com>
* StringTest.cs: Remove compiler warnings.
2003-01-30 Sebastien Pouliot <spouliot@videotron.ca>
* TimeZoneTest.cs: Added "Eastern Standard Time" to the test.
This won't be complete until all time zone are added (added a
Fail for unsupported TimeZones).
2003-01-29 Sebastien Pouliot <spouliot@videotron.ca>
* ByteTest.cs: Updated Setup to support my Locale. Better but
probably still incomplete.
* DoubleTest.cs: Updated Setup to support my Locale. You can now
use a comma (or anything else) instead of a dot (.).
* ConvertTest.cs: Updated TestToDecimal and TestToDouble to
support my Locale. You can now use a comma (or anything else)
instead of a dot (.).
2003-01-28 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Avoid nulls in arrays. This crashes mono.
* ConsoleTest.cs: Ignore some tests that hang mono.
* ConvertTest.cs: Ignore some tests that hang mono.
2003-01-27 Zoltan Varga <vargaz@freemail.hu>
* StringTest.cs: Added tests for out-of-bounds indexes in GetChars().
2003-01-13 Nick Drochak <ndrochak@gol.com>
* DateTimeTest.cs: Use 2003, since that' the year now. Need to work
on this test so we don't have it fail each new year.
2002-12-21 Nick Drochak <ndrochak@gol.com>
* all: make tests build and run under nunit2
2002-11-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* StringTest.cs: added 1 more check.
2002-10-29 Zoltan Varga <vargaz@freemail.hu>
* EnumTest.cs: Added tests for whitespaces in Enum:Parse().
2002-10-16 Nick Drochak <ndrochak@gol.com>
* EnumTest.cs: Find out which Assert is causing the error on mono.
2002-10-09 Nick Drochak <ndrochak@gol.com>
* BufferTest.cs: Test for ArgumentExceptions where they should be
thrown
* Int32Test.cs: Enable tests for custom format strings. We do have
implementation for them now.
2002-09-29 Nick Drochak <ndrochak@gol.com>
* DecimalTest.cs: Change from Assert() with == to AssertEquals(). This
gets the tests to pass on linux, but they shouldn't need that. Now
to find out why. This seems deep...
2002-09-19 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Report errors with CopyTo().
2002-09-19 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Can check for exception throw now on CopyTo(). Re-
enable test.
2002-09-13 Nick Drochak <ndrochak@gol.com>
* EnumTest.cs: Add an extreme value test for format.
2002-09-11 Nick Drochak <ndrochak@gol.com>
* DoubleTest.cs: Add test for bad format string passed to ToString().
* Int64Test.cs: Re-enable broad range of test values.
* MulticastDeletegateTest.cs: Re-enable test for correct order of
delegate firing.
2002-09-08 Nick Drochak <ndrochak@gol.com>
* DateTimeTest.cs: Disable test bug file it in bugzilla.
2002-09-04 Jonathan Pryor <jonpryor@vt.edu>
* EnumTest.cs:
- Added additional "x" formatter test case to test most recent Enum.cs patch
- Code cleanup so that all TestFormat test cases would be executed
- Change exception types in TestFormat_Args so that it passes on .NET.
(Some ArgumentNullExceptions should be been ArgumentExceptions.)
2002/08/09 Nick Drochak <ndrochak@gol.com>
* DecimalTest.cs: Add try-catch block to find which one is throwing
the Overflow. Also started making each Assert using a unique message
to differentiate those as well.
* MulticastDelegate.cs: Disable tests checking the order that delegates
are executed. There's a bugzilla entry for this already because we do
it in reverse order. See:
http://bugzilla.ximian.com/show_bug.cgi?id=28306
2002/08/02 Nick Drochak <ndrochak@gol.com>
* ConvertTest.cs (TestGetTypeCode): Find out which test is failing on
linux.
2002-08-02 Nick Drochak <ndrochak@gol.com>
* BufferTest.cs (TestBlockCopy): BlockCopy uses the number of bytes,
so hard-code some of that info into the test since sizeof() is a very
unsafe thing to do.
2002-07-31 Nick Drochak <ndrochak@gol.com>
* BufferTest.cs: Fixed noisy compiler warnings about unused vars.
2002-07-22 Cesar Octavio Lopez Nataren <cesar@ciencias.unam.mx>
* BufferTest.cs: Added this file to test the System.Buffer class
implementation.
2002-07-17 Martin Baulig <martin@gnome.org>
* ConvertTest.cs: Commented out line 456 which contains a non-printable
character which mcs does not like. See also bug #27655.
* DecimalTest.cs, DecimanTest2.cs: Removed the `using S = System'.
2002-07-11 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Disable a test for now. Bugzilla'd this one.
* ConvertTest.cs: Make message unique for this mistaken duplicate.
2002-07-04 Nick Drochak <ndrochak@gol.com>
* DateTimeTest.cs: Made tests pass on ms.net. Well, they pass in
timezone JST. Need to test in others. Maybe I'll fly over to GMT
and see how they work. Supposed to be eaiser there.
2002-07-04 Nick Drochak <ndrochak@gol.com>
* ConvertTest.cs: Make the test generate the overflow exceptions on
mono on Linux.
* DecimalTest2.cs: Report exception thrown during subtraction.
2002-07-03 Nick Drochak <ndrochak@gol.com>
* DoubleTest.cs: Fix some Assert/AssertEquals usage.
2002-07-03 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Re-enable some tests. Let's see what's broken still.
2002-06-20 Nick Drochak <ndrochak@gol.com>
* DecimalTest2.cs: Make tests pass against ms.net.
2002-06-19 Nick Drochak <ndrochak@gol.com>
* AllTests.cs: Add missing test: DecimalTest2
* DecimalTest2.cs: Convert Console.Writeline() into a Fail()
2002/06/14 Nick Drochak <ndrochak@gol.com>
* Int64Test.cs: Make currency symbol test more culturally sensitive.
2002-06-14 Nick Drochak <ndrochak@gol.com>
* DateTimeTest.cs: Make some of the tests a bit more timezone neutral.
2002-06-12 Nick Drochak <ndrochak@gol.com>
* ConvertTest.cs: Punt bug in DateTime.Parse() over to that test.
* DateTimeTest.cs: Add test for date format of yyyy-mm-dd which mono
doesn't handle automagically like ms.net does. This smells like a
LAMESPEC, however.
2002/06/12 Nick Drochak <ndrochak@gol.com>
* RandomTest.cs: Exercise Next(min,max) a little more, especially
boundary conditions.
2002-06-11 Nick Drochak <ndrochak@gol.com>
* StringTest.cs: Check for "end of string" conditions for IndexOf() and
Substring().
2002-06-11 Nick Drochak <ndrochak@gol.com>
* DoubleTest.cs: Add some more detail to failure message.
* Int64Test.cs: Add some details, and fix a copy-paste error.
* UInt32Test.cs: Fix currency symbol/culture issues
* UInt64Test.cs: Fix currency symbol/culture issues
2002/06/11 Nick Drochak <ndrochak@gol.com>
* DateTimeTest.cs: Remove RunTest override and put culture manipulation
in SetUp and TearDown like the other tests.
* TimeZoneTest.cs: Same.
2002-06-11 Nick Drochak <ndrochak@gol.com>
* Int64Test.cs: Set the culture to en-US for testing.
* MathTest.cs: mono is more precise in Log2, so change test to compare
values within a slightly larger margin of error.
2002/06/10 Nick Drochak <ndrochak@gol.com>
* DecimalTest.cs: More culture indepenence. Fixes the problems we were
having with tests failing against MS.NET.
* Int64Test.cs: Same plus some formatting fixes.
* RandomTest.cs: Split Assert into two to figure out which one part is
failing.
2002-06-09 Lawrence Pit <loz@cable.a2000.nl>
* DateTimeTest.cs: Making tests culture independent
2002-06-07 Nick Drochak <ndrochak@gol.com>
* DecimalTest.cs: Catch unexpected exception and report it.
2002/06/04 Nick Drochak <ndrochak@gol.com>
* ByteTest.cs: Fix currency constant that we use for the expected
value. Try to be more culture-diverse.
2002/06/03 Nick Drochak <ndrochak@gol.com>
* DecimalTest.cs: Fix some errors that were showing up when run against
ms.net.
2002-06-02 Nick Drochak <ndrochak@gol.com>
* ConvertTest.cs: Use en-US culture since that's all we support in our
corlib right now. Change constants accordingly. Also added a bunch of
try-catch blocks to show which Assert is failing.
2002-06-02 Duncan Mak <duncan@ximian.com>
* ConvertTest.cs (TestToDecimal): Fixed typo in case #H11.
2002-06-01 Nick Drochak <ndrochak@gol.com>
* BugTest.cs: Remove, bug fixed. Yay!
* AllTests.cs: Remove BugTest from suite.
2002-05-31 Nick Drochak <ndrochak@gol.com>
* BugTest.cs: Small file to show NullReferenceException bug
* AllTests.cs: Include BugTest.cs in the suite.
2002-05-29 Nick Drochak <ndrochak@gol.com>
* DecimalTest.cs: Use AssertEquals to get nice error report, and mark
each one with a unique message string so we know which one failed.
2002-05-29 Lawrence Pit <loz@cable.a2000.nl>
* DateTimeTest.cs: Added tests M01 to M03 to TestParseExact,
passing typeof this class as arg in property Suite.
2002-05-22 Lawrence Pit <loz@cable.a2000.nl>
* ConsoleTest.cs: Added test writing null.
2002-05-21 Nick Drochak <ndrochak@gol.com>
* MathTest.cs:
(TestPow): Add try-catch to determine where we are throwing.
(TestLog): Re-enable failing test
(TestLog2): same although this test still fails on mono. Not
sure what the proper value to use here. It works on MS.NET
2002-05-21 Nick Drochak <ndrochak@gol.com>
* MathTest.cs: Better reporting of failures
* Int64Test.cs: Add try-catch to determine where we are throwing.
2002-05-20 Nick Drochak <ndrochak@gol.com>
* AttributeTest.cs (TestGetCustomAttribute): Add try-catch to find out
which assert is failing.
2002-05-19 Martin Baulig <martin@gnome.org>
* MartinTests.cs: Removed.
2002-05-14 Nick Drochak <ndrochak@gol.com>
* StringTest.cs: A couple more tests
2002-05-07 Nick Drochak <ndrochak@gol.com>
* ExceptionTest.cs: New File. Provided by Linus Upson.
2002-05-05 Lawrence Pit <loz@cable.a2000.nl>
* StringTest.cs: Added test for replace function
2002-04-30 Nick Drochak <ndrochak@gol.com>
* UInt32Test.cs: More verbose on unexepected exception to eliminate
compiler warning.
2002-04-28 Nick Drochak <ndrochak@gol.com>
* StringTest.cs: Mark Assert() messages with unique identifiers.
* DecimalTest2.cs: Write out more info in the Report method. Need this
to determine why op_Subtraction() is failing in the next line.
* MathTest.cs:
* DoubleTest.cs:
* UInt32Test.cs: Add try-catch blocks to find out where the test is
failing.
2002-04-28 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs (TestIList_IndexOf): Display exception details if we get
an unexpected one.
2002/04/24 Nick Drochak <ndrochak@gol.com>
* IntegerFormatterTest.cs: Remove Console.WriteLines and use
AssertEquals() instead.
2002-04-22 Nick Drochak <ndrochak@gol.com>
* StringTest.cs: Add unique markers to Assert messages.
2002-04-09 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Remove BinarySearch test on unsorted arrays. The
behavior is undefined if the array isn't sorted.
2002/04/09 Nick Drochak <ndrochak@gol.com>
* DecimalTest.cs: Use AssertEquals() for better diagnostic message.
2002-04-09 Nick Drochak <ndrochak@gol.com>
* ByteTest.cs: Use AssertEquals() for better diagnostic message.
2002-04-08 Nick Drochak <ndrochak@gol.com>
* EnumTest.cs: Add a few tests for differently underlying types and
the [Flags] attribute to test ToString().
2002-04-08 Nick Drochak <ndrochak@gol.com>
* EnumTest.cs: Add test for ToString for the case where the enum
has [Flags] on it, and a mask value is used.
2002-04-04 Nick Drochak <ndrochak@gol.com>
* EnumTest.cs: Change one Assert() message string so the two are
unique. And clean up exception catching logic.
2002/03/28 Nick Drochak <ndrochak@gol.com>
* IntegerFormatterTest.cs: Eliminate warnings about unused exception
variables.
2002-03-28 Nick Drochak <ndrochak@gol.com>
* EnumTest.cs(TestFormat): Use Fail() instead of AssertEquals() in
try-catch blocks. Add test to check if correct exception is being
thrown.
2002/03/18 Nick Drochak <ndrochak@gol.com>
* ByteTest.cs:
* Int64Test.cs:
* SByteTest.cs: Do not hard code the "$" as the currency symbol to
use for Parse tests. This isn not really the fix we need. These
number formats vary wildly depending on the culture the system
runs with. We need a much better strategy here for testing this.
* Int32Test.cs: Use #if NOTYET-#endif to disable a test. This removes
an annoying compile warning.
2002-03-18 Nick Drochak <ndrochak@gol.com>
* DoubleTest.cs:
* EnumTest.cs: Add unique identifier to Assert()'s. Needed to find
which one was faling on Linux.
2002-03-12 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Add tests for IList methods and for enumerator on
an array with non-zero lower bounds.
2002-03-09 Nick Drochak <ndrochak@gol.com>
* ArrayTest.cs: Enable the enumerator test and include test for
Multi-dimensional array enumerator. Also include test for
mutation _not_ invalidating the enumerator.
2002-03-09 Martin Baulig <martin@gnome.org>
* Int16Test.cs, Int32Tests.cs, UInt16Tests.cs: Use "en-US" culture and
don't let the user override.
* Int32Tests.cs: Cleanup. Use unique names in Assert()s, use AssertEquals()
where appropriate etc.
2002-03-08 Martin Baulig <martin@gnome.org>
* StringTest.cs: More String.Split tests.
2002-03-07 Martin Baulig <martin@gnome.org>
* StringTest.cs: Added a few more tests for the bug fixes I just
committed to String.cs.
2002-03-07 Martin Baulig <martin@gnome.org>
* ArrayTest.cs: Fixed the FIXME in test #E05.
2002-03-06 Duco Fijma <duco@lorentz.xs4all.nl>
* CharEnumeratorTest.cs: made test regarding out-of-bounds checking
a bit stronger (new failures fixed in CharEnumerator.cs).
2002-03-06 Martin Baulig <martin@gnome.org>
* ArrayTest.cs (TestSetValue4): Added testcases #M94-#M96 for Array.Copy.
* ArrayTest.cs (TestCopyTo): Added testcases #F10-#F13 for arrays with
non-zero lower bounds.
* ArrayTest.cs (TestCopyTo): Added test for copying an empty array
to an empty array.
2002-03-06 Martin Baulig <martin@gnome.org>
* ArrayTest.cs: Use unique labels for all the tests.
(TestSetValue4): A big new testcase.
2002-03-06 Nick Drochak <ndrochak@gol.com>
* VersionTest.cs: Fix for mscorlib behavior vs. docs. CompareTo(null)
is legal.
* UInt16Test.cs:
* UInt32Test.cs:
* UInt64Test.cs: Use NumberFormatInfo.InvariantInfo.CurrencySymbol
where "$" was used. Should help suppress false negatives on systems
where "$" is not the currency symbol.
2002-03-04 Duco Fijma <duco@lorentz.xs4all.nl>
* VersionTest.cs: created test cases for System.Version
2002-03-03 Duco Fijma <duco@lorentz.xs4all.nl>
* CharEnumeratorTest.cs: completed the test cases
2002-03-03 Nick Drochak <ndrochak@gol.com>
* DateTimeTest.cs: make static member non-static -- wouldn't work on
Windows if it was static. Doesn't _need_ to be static anyway.
2002-03-01 Duco Fijma <duco@lorentz.xs4all.nl>
* AttributeTest.cs: created, far from complete.
* CharEnumeratorTest.cs: created. Contains just the basic case.
* AllTests.cs: added the two new tests above
2002-03-01 Duco Fijma <duco@lorentz.xs4all.nl>
* BitConverterTest.cs: added one test for bug fix made to BitConverter
* class.
2002-03-01 Martin Baulig <martin@gnome.org>
* ArrayTest.cs: Commented out a few bits which are not yet implemented and
marked them with FIXME's.
* DecimalTest.cs, DecimalTest2.cs: Added zero-arg constructors.
* MartinTests.cs: Enabled ArrayTests.cs.
2002-03-01 Duco Fijma <duco@lorentz.xs4all.nl>
* BitConverterTest.cs: completed test cases
2002-03-01 Martin Baulig <martin@gnome.org>
* MartinTests.cs: 15 tests currently work on Linux, call them all and
provide comments for the non-working tests.
2002-02-28 Duncan Mak <duncan@ximian.com>
* MathTest.cs: Committed for Jon Guymon <gnarg@slackworks.com>.
2002-02-28 Martin Baulig <martin@gnome.org>
* String.cs (TestCompare): Added a few tests.
(TestFormat): Please don't compare two strings with Assert (... == ...),
use AssertEquals instead - this gives you a better idea what went wrong
if the test fails.
2002-02-28 Nick Drochak <ndrochak@gol.com>
* BitConverterTest.cs: Test was trying to catch the wrong Exception.
The MSDN docs clearly say ArgumentOutOfRangeException, but that's
not what get's thrown.
* DoubleTest.cs: Get working against mscorlib reference.
2002-02-27 Duco Fijma <duco@lorentz.xs4all.nl>
* GuidTest.cs: changed to reflect new meaning of Guid.ToString("")
and Guid.ToString(null)
2002-02-26 Martin Baulig <martin@gnome.org>
* MartinTests.cs: New file. This contains all the test which already
work on Linux.
* String.cs: Added two testcases to TestTrim(), TestTrimStart() and
TestTrimEnd().
2002-02-26 Martin Baulig <martin@gnome.org>
* DateTimeTest.cs: Added testcases for the parsers. Use the invariant
culture to run this test suite.
* TimeZoneTest.cs: Use the invariant culture to run this test suite.
2002-02-26 Duco Fijma <duco@lorentz.xs4all>
* TimeSpanTest.cs: added test from TimeSpan.FromMilliseconds
2002-02-26 Martin Baulig <martin@gnome.org>
* DateTimeTest.cs: New test.
* TimeZoneTest.cs: New test.
2002-02-25 Duco Fijma <duco@lorentz.xs4all.nl>
* GuidTest.cs: all methods of System.Guid are now covered
* BitConverterTest.cs: created, not yet complete
2002-02-21 Duco Fijma <duco@lorentz.xs4all.nl>
* GuidTest.cs: changed according to fix in System.Guid
2002-02-20 Nick Drochak <ndrochak@gol.com>
* Int64Test.cs: One array was giving us trouble. Not sure why, but
it's related to the number of elements in an Array. For short Arrays
the compiler doesn't use the PrivateImplmentationDetails struct,
but for longer ones it does. That's when our corlib fails. I paired
down the array for now.
2002-02-19 Duco Fijma <duco@lorentz.xs4all.nl>
* GuidTest.cs: added a few cases
2002-02-18 Nick Drochak <ndrochak@gol.com>
* GuidTest.cs: Fix compile error. Needed to cast the null in the call to
constructor to avoid ambiguity.
2002-02-11 Nick Drochak <ndrochak@gol.com>
* Int64Test.cs: Various fixes to make tests work against the ms corlib.
Currency Symbol tests seem to be system dependant. Not sure if this
will work on other systems, so please test it if you can. The most
disturbing one is negative numbers. Should they be (n) or -n ?
2002-02-10 Nick Drochak <ndrochak@gol.com>
* AllTests.cs: Add Int64Test to the Suite
* Int64Test.cs: Change static member to instance member. This was
causing NUnitConsole some grief. Should be instance member anyway.
2002-02-09 Nick Drochak <ndrochak@gol.com>
* ByteTest.cs:
* Int16Test.cs:
* Int32Test.cs:
* SByteTest.cs:
* UInt16Test.cs:
* UInt32Test.cs:
* UInt64Test.cs: Fixed tests where a "$" was hard coded. Change it to
use NumberFormatInfo.CurrentInfo.CurrencySymbol. Also used
NumberFormatInfo.InvariantInfo.CurrencySymbol where appropriate. These
tests all pass now with mscorlib.
2002-01-06 Nick Drochak <ndrochak@gol.com>
* ResolveEventArgsTest.cs: New test.
* AllTests.cs: Added new test to suite.
2001-12-27 Nick Drochak <ndrochak@gol.com>
* UInt32Test.cs: Added messages to Asserts()'s to find out which one was faliing.
2001-12-21 Miguel de Icaza <miguel@ximian.com>
* UInt32Test.cs: Added tests for UInt32.Parse.
* Int32Test.cs: Added tests for Int32.Parse for various cases.
2001-12-08 Nick Drochak <ndrochak@gol.com>
* ByteTest.cs: Added messages to Assert()'s to find out which one was failing.
2001-11-28 Nick Drochak <ndrochak@gol.com>
* Int16Test.cs Int32Test.cs SByteTest.cs: Surgically removed tests that rely on culture of system. These need to be crafted a bit differently.
2001-11-27 Nick Drochak <ndrochak@gol.com>
* SByteTest.cs: Add messages to Assert()'s so we can tell where the tests fail.
2002-02-21 Bob Doan <bdoan@sicompos.com>
* BooleanTest.cs: Added New test suite
* AllTests.cs: Added new Boolean test to suite.
2002-02-24 Bob Doan <bdoan@sicompos.com>
* BooleanTest.cs: Use correct argument order in AssertEquals
* AllTests.cs: Added new Double test to suite.
* DoubleTest.cs: Add new test suite
2002-02-24 Bob Doan <bdoan@sicompos.com>
* DoubleTest.cs: Added parse tests to Double test suite, removed GetHashCodeTests
|