GenerateTypeTests.cs 70.0 KB
Newer Older
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
// Copyright (c) Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information.

using System;
using System.Collections.Generic;
using Microsoft.CodeAnalysis.CodeFixes;
using Microsoft.CodeAnalysis.CSharp.CodeFixes.GenerateType;
using Microsoft.CodeAnalysis.Diagnostics;
using Microsoft.CodeAnalysis.Options;
using Microsoft.CodeAnalysis.Simplification;
using Roslyn.Test.Utilities;
using Xunit;

namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.Diagnostics.GenerateTypeTests
{
    public partial class GenerateTypeTests : AbstractCSharpDiagnosticProviderBasedUserDiagnosticTest
    {
        internal override Tuple<DiagnosticAnalyzer, CodeFixProvider> CreateDiagnosticProviderAndFixer(Workspace workspace)
        {
            return new Tuple<DiagnosticAnalyzer, CodeFixProvider>(
                null, new GenerateTypeCodeFixProvider());
        }

        #region Generate Class

        #region Generics

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateTypeParameterFromArgumentInferT()
        {
            Test(
@"class Program { void Main ( ) { [|Foo < int >|] f ; } } ",
@"class Program { void Main ( ) { Foo < int > f ; } } internal class Foo < T > { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromTypeParameter()
        {
            Test(
@"class Class { System.Action<[|Employee|]> employees; }",
@"class Class { System.Action<Employee> employees; private class Employee { } }",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromASingleConstraintClause()
        {
            Test(
@"class EmployeeList<T> where T : [|Employee|], new() { }",
@"class EmployeeList<T> where T : Employee, new() { } internal class Employee { }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void NegativeTestGenerateClassFromConstructorConstraint()
        {
            TestMissing(
@"class EmployeeList<T> where T : Employee, [|new()|] { }");
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromMultipleTypeConstraintClauses()
        {
            Test(
@"class Derived<T, U> where U : struct where T : [|Base|], new() { }",
@"class Derived<T, U> where U : struct where T : Base, new() { } internal class Base { }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void NegativeTestGenerateClassFromClassOrStructConstraint()
        {
            TestMissing(
@"class Derived<T, U> where U : [|struct|] where T : Base, new() { }");
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestAbsenceOfGenerateIntoInvokingTypeForConstraintList()
        {
            TestActionCount(
@"class EmployeeList<T> where T : [|Employee|] { }",
count: 3,
parseOptions: Options.Regular);
        }

        #endregion

        #region Lambdas

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromParanthesizedLambdaExpressionsParameter()
        {
            Test(
@"class Class { Func<Employee, int, bool> l = ([|Employee|] e, int age) => e.Age > age; }",
@"class Class { Func<Employee, int, bool> l = (Employee e, int age) => e.Age > age; private class Employee { } }",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromParanthesizedLambdaExpressionsBody()
        {
            Test(
@"class Class { System.Action<Class, int> l = (Class e, int age) => { [|Wage|] w; }; }",
@"class Class { System.Action<Class, int> l = (Class e, int age) => { Wage w; }; private class Wage { } }",
index: 2);
        }

        #endregion

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromFieldDeclarationIntoSameType()
        {
            Test(
@"class Class { [|Foo|] f; }",
@"class Class { Foo f; private class Foo { } }",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromFieldDeclarationIntoGlobalNamespace()
        {
            TestAddDocument(
@"class Program { void Main ( ) { [|Foo|] f ; } } ",
@"internal class Foo { } ",
125
expectedContainers: Array.Empty<string>(),
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
expectedDocumentName: "Foo.cs");
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromFieldDeclarationIntoCustomNamespace()
        {
            TestAddDocument(
@"class Class { [|TestNamespace|].Foo f; }",
@"namespace TestNamespace { internal class Foo { } }",
expectedContainers: new List<string> { "TestNamespace" },
expectedDocumentName: "Foo.cs");
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromFieldDeclarationIntoSameNamespace()
        {
            Test(
@"class Class { [|Foo|] f; }",
@"class Class { Foo f; } internal class Foo { }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassWithCtorFromObjectCreation()
        {
            Test(
@"class Class { Foo f = new [|Foo|](); }",
@"class Class { Foo f = new Foo(); private class Foo { public Foo() { } } }",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromBaseList()
        {
            Test(
@"class Class : [|BaseClass|] { }",
@"class Class : BaseClass { } internal class BaseClass { }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromMethodParameters()
        {
            Test(
@"class Class { void Method([|Foo|] f) { } }",
@"class Class { void Method(Foo f) { } private class Foo { } }",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromMethodReturnType()
        {
            Test(
@"class Class { [|Foo|] Method() { } }",
@"class Class { Foo Method() { } private class Foo { } }",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromAttribute()
        {
            Test(
@"class Class { [[|Obsolete|]] void Method() { } }",
@"using System; class Class { [Obsolete] void Method() { } private class ObsoleteAttribute : Attribute { } }",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromExpandedAttribute()
        {
            Test(
@"class Class { [[|ObsoleteAttribute|]] void Method() { } }",
@"using System; class Class { [ObsoleteAttribute] void Method() { } private class ObsoleteAttribute : Attribute { } }",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromCatchClause()
        {
            Test(
@"class Class { void Method() { try { } catch([|ExType|]) { } } }",
@"using System; using System.Runtime.Serialization; 
class Class { void Method() { try { } catch(ExType) { } } 
[Serializable] private class ExType : Exception 
{ 
public ExType() { } 
public ExType(string message) : base(message) { } 
public ExType(string message, Exception innerException) : base(message, innerException) { } 
protected ExType(SerializationInfo info, StreamingContext context) : base(info, context) { } 
} 
}",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromThrowStatement()
        {
            Test(
@"class Class { void Method() { throw new [|ExType|](); } }",
@"using System; using System.Runtime.Serialization; class Class { void Method() { throw new ExType(); }
[Serializable] private class ExType : Exception 
{ 
public ExType() { } 
public ExType(string message) : base(message) { } 
public ExType(string message, Exception innerException) : base(message, innerException) { } 
protected ExType(SerializationInfo info, StreamingContext context) : base(info, context) { } 
} 
}",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromThrowStatementWithDifferentArg()
        {
            Test(
@"class Class { void Method() { throw new [|ExType|](1); } }",
@"using System; using System.Runtime.Serialization; class Class { void Method() { throw new ExType(1); }
[Serializable] private class ExType : Exception 
{ 
private int v;
public ExType() { } 
public ExType(string message) : base(message) { } 
public ExType(int v) { this.v = v; }
public ExType(string message, Exception innerException) : base(message, innerException) { } 
protected ExType(SerializationInfo info, StreamingContext context) : base(info, context) { } 
} 
}",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromThrowStatementWithMatchingArg()
        {
            Test(
@"class Class { void Method() { throw new [|ExType|](""message""); } }",
@"using System; using System.Runtime.Serialization; class Class { void Method() { throw new ExType(""message""); }
[Serializable] private class ExType : Exception 
{ 
public ExType() { } 
public ExType(string message) : base(message) { } 
public ExType(string message, Exception innerException) : base(message, innerException) { } 
protected ExType(SerializationInfo info, StreamingContext context) : base(info, context) { } 
} 
}",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestAbsenceOfGenerateIntoInvokingTypeForBaseList()
        {
            TestActionCount(
@"class Class : [|BaseClass|] { }",
count: 3,
parseOptions: Options.Regular);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromUsingStatement()
        {
            Test(
@"class Class { void Method() { using([|Foo|] f = new Foo()) { } } }",
@"class Class { void Method() { using(Foo f = new Foo()) { } } private class Foo { } }",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromForeachStatement()
        {
            Test(
@"class Class { void Method() { foreach([|Employee|] e in empList) { } } }",
@"class Class { void Method() { foreach(Employee e in empList) { } } private class Employee { } }",
index: 2);
        }

        [WorkItem(538346)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassWhereKeywordBecomesTypeName()
        {
            Test(
@"class Class { [|@class|] c; }",
@"class Class { @class c; private class @class { } }",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void NegativeTestGenerateClassOnContextualKeyword()
        {
            Test(
@"class Class { [|@Foo|] c; }",
@"class Class { @Foo c; private class Foo { } }",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void NegativeTestGenerateClassOnFrameworkTypes()
        {
            TestMissing(
@"class Class { void Method() { [|System|].Console.Write(5); } }");

            TestMissing(
@"class Class { void Method() { System.[|Console|].Write(5); } }");

            TestMissing(
@"class Class { void Method() { System.Console.[|Write|](5); } }");
        }

        [WorkItem(538409)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateIntoRightPart()
        {
            Test(
@"partial class Class { } partial class Class { [|C|] c; }",
@"partial class Class { } partial class Class { C c; private class C { } }",
index: 2);
        }

        [WorkItem(538408)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateTypeIntoCompilationUnit()
        {
            Test(
@"class Class { [|C|] c; void Main() { } }",
@"class Class { C c; void Main() { } } internal class C { }",
index: 1);
        }

        [WorkItem(538408)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateTypeIntoNamespace()
        {
            Test(
@"namespace N { class Class { [|C|] c; void Main() { } } }",
@"namespace N { class Class { C c; void Main() { } } internal class C { } }",
index: 1);
        }

        [WorkItem(538115)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateTypeWithPreprocessor()
        {
            Test(
@"class C
{
#if true 
    void Foo([|A|] x) { }
#else
#endif
}",
@"class C
{
#if true 
    void Foo(A x) { }

    private class A
    {
    }
#else
#endif
}",
index: 2,
compareTokens: false);
        }

        [WorkItem(538495)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateTypeIntoContainingNamespace()
        {
            Test(
@"namespace N { class Class { N.[|C|] c; } }",
@"namespace N { class Class { N.C c; } internal class C { } }",
index: 1);
        }

        [WorkItem(538516)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateClassFromIntoNewNamespace()
        {
            TestAddDocument(
@"class Class { static void Main(string[] args) { [|N|].C c; } }",
@"namespace N { internal class C { } }",
expectedContainers: new List<string> { "N" },
expectedDocumentName: "C.cs");
        }

        [WorkItem(538558)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void NegativeTestGlobalAlias()
        {
            TestMissing(
@"class Class { void Method() { [|global|]::System.String s; } }");

            TestMissing(
@"class Class { void Method() { global::[|System|].String s; } }");
        }

        [WorkItem(538069)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateTypeFromArrayCreation1()
        {
            Test(
@"class A { void Foo() { A[] x = new [|C|][] { }; } } ",
@"class A { void Foo() { A[] x = new C[] { }; } } internal class C : A { }",
index: 1,
parseOptions: null);
        }

        [WorkItem(538069)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateTypeFromArrayCreation2()
        {
            Test(
@"class A { void Foo() { A[][] x = new [|C|][][] { }; } } ",
@"class A { void Foo() { A[][] x = new C[][] { }; } } internal class C : A { }",
index: 1,
parseOptions: null);
        }

        [WorkItem(538069)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateTypeFromArrayCreation3()
        {
            Test(
@"class A { void Foo() { A[] x = new [|C|][][] { }; } } ",
@"class A { void Foo() { A[] x = new C[][] { }; } } internal class C { }",
index: 1,
parseOptions: null);
        }

        [WorkItem(539329)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void NegativeTestNotInUsingDirective()
        {
            TestMissing(
@"using [|A|];");

            TestMissing(
@"using [|A.B|];");

            TestMissing(
@"using [|A|].B;");

            TestMissing(
@"using A.[|B|];");

            TestMissing(
@"using X = [|A|];");
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateSimpleConstructor()
        {
            Test(
@"class Class { void M() { new [|T|](); } }",
@"class Class { void M() { new T(); } } internal class T { public T() { } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithValueParameter()
        {
            Test(
@"class Class { void M() { new [|T|](1); } }",
@"class Class { void M() { new T(1); } } internal class T { private int v; public T(int v) { this.v = v; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithTwoValueParameters()
        {
            Test(
@"class Class { void M() { new [|T|](1, """"); } }",
@"class Class { void M() { new T(1, """"); } } internal class T { private int v1; private string v2; public T(int v1, string v2) { this.v1 = v1; this.v2 = v2; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithNamedParameter()
        {
            Test(
@"class Class { void M() { new [|T|](arg: 1); } }",
@"class Class { void M() { new T(arg: 1); } } internal class T { private int arg; public T(int arg) { this.arg = arg; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithRefParameter()
        {
            Test(
@"class Class { void M(int i) { new [|T|](ref i); } }",
@"class Class { void M(int i) { new T(ref i); } } internal class T { private int i; public T(ref int i) { this.i = i; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithOutParameter()
        {
            Test(
@"class Class { void M(int i, bool b) { new [|T|](out i, ref b, null); } }",
@"class Class { void M(int i, bool b) { new T(out i, ref b, null); } } internal class T { private bool b; private object p; public T(out int i, ref bool b, object p) { i = 0; this.b = b; this.p = p; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithOutParameters1()
        {
            Test(
@"class Class { void M(string s) { new [|T|](out s); } }",
@"class Class { void M(string s) { new T(out s); } } internal class T { public T(out string s) { s = null; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithOutParameters2()
        {
            Test(
@"using System; class Class { void M(DateTime d) { new [|T|](out d); } }",
@"using System; class Class { void M(DateTime d) { new T(out d); } } internal class T { public T(out DateTime d) { d = default(DateTime); } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithOutParameters3()
        {
            Test(
@"using System.Collections.Generic; class Class { void M(IList<int> d) { new [|T|](out d); } }",
@"using System.Collections.Generic; class Class { void M(IList<int> d) { new T(out d); } } internal class T { public T(out IList<int> d) { d = null; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithOutParameters4()
        {
            Test(
@"class Class { void M(int? d) { new [|T|](out d); } }",
@"class Class { void M(int? d) { new T(out d); } } internal class T { public T(out int? d) { d = null; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithOutParameters5()
        {
            Test(
@"class Class<X> { void M(X d) { new [|T|](out d); } }",
@"class Class<X> { void M(X d) { new T(out d); } } internal class T { public T(out object d) { d = null; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithOutParameters6()
        {
            Test(
@"class Class < X > { void M ( X d ) { new [|T|] ( out d ) ; } } ",
@"class Class < X > { void M ( X d ) { new T ( out d ) ; } private class T { public T ( out X d ) { d = default ( X ) ; } } } ",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithOutParameters7()
        {
            Test(
@"class Class<X> where X : class { void M(X d) { new [|T|](out d); } }",
@"class Class<X> where X : class { void M(X d) { new T(out d); } } internal class T { public T(out object d) { d = null; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithOutParameters8()
        {
            Test(
@"class Class<X> where X : class { void M(X d) { new [|T|](out d); } }",
@"class Class<X> where X : class { void M(X d) { new T(out d); } private class T { public T(out X d) { d = null; } } }",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithMethod()
        {
            Test(
@"class Class { string M(int i) { new [|T|](M); } }",
@"using System; class Class { string M(int i) { new T(M); } } internal class T { private Func<int,string> m; public T(Func<int,string> m) { this.m = m; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithLambda()
        {
            Test(
@"class Class { string M(int i) { new [|T|](a => a.ToString()); } }",
@"using System; class Class { string M(int i) { new T(a => a.ToString()); } } internal class T { private Func<object,object> p; public T(Func<object,object> p) { this.p = p; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithDelegatingConstructor1()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](1); } } class Base { protected Base(int i) { } } ",
@"class Class { void M(int i) { Base b = new T(1); } } internal class T : Base { public T(int i) : base(i) { } } class Base { protected Base(int i) { } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithDelegatingConstructor2()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](1); } } class Base { protected Base(object i) { } } ",
@"class Class { void M(int i) { Base b = new T(1); } } internal class T : Base { public T(object i) : base(i) { } } class Base { protected Base(object i) { } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithDelegatingConstructor3()
        {
            Test(
@"using System.Collections.Generic; class Class { void M() { Base b = new [|T|](new List<int>()); } } class Base { protected Base(IEnumerable<int> values) { } } ",
@"using System.Collections.Generic; class Class { void M() { Base b = new T(new List<int>()); } } internal class T : Base { public T(IEnumerable<int> values) : base(values) { } } class Base { protected Base(IEnumerable<int> values) { } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithDelegatingConstructor4()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](ref i); } } class Base { protected Base(ref int o) { } } ",
@"class Class { void M(int i) { Base b = new T(ref i); } } internal class T : Base { public T(ref int o) : base(ref o) { } } class Base { protected Base(ref int o) { } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithDelegatingConstructor5()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](a => a.ToString()); } } class Base { protected Base(System.Func<int,string> f) { } } ",
@"using System; class Class { void M(int i) { Base b = new T(a => a.ToString()); } } internal class T : Base { public T(Func<int,string> f) : base(f) { } } class Base { protected Base(System.Func<int,string> f) { } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithDelegatingConstructor6()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](out i); } } class Base { protected Base(out int o) { } } ",
@"class Class { void M(int i) { Base b = new T(out i); } } internal class T : Base { public T(out int o) : base(out o) { } } class Base { protected Base(out int o) { } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithNonDelegatingConstructor1()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](1); } } class Base { protected Base(string i) { } } ",
@"class Class { void M(int i) { Base b = new T(1); } } internal class T : Base { private int v; public T(int v) { this.v = v; } } class Base { protected Base(string i) { } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithNonDelegatingConstructor2()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](ref i); } } class Base { protected Base(out int o) { } } ",
@"class Class { void M(int i) { Base b = new T(ref i); } } internal class T : Base { private int i; public T(ref int i) { this.i = i; } } class Base { protected Base(out int o) { } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithNonDelegatingConstructor3()
        {
            Test(
@"class Class { void M(int i, bool f) { Base b = new [|T|](out i, out f); } } class Base { protected Base(ref int o, out bool b) { } } ",
@"class Class { void M(int i, bool f) { Base b = new T(out i, out f); } } internal class T : Base { public T(out int i, out bool f) { i = 0; f = false; } } class Base { protected Base(ref int o, out bool b) { } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithNonDelegatingConstructor4()
        {
            Test(
@"class Class { void M() { Base b = new [|T|](1); } } class Base { private Base(int i) { } } ",
@"class Class { void M() { Base b = new T(1); } } internal class T : Base { private int v; public T(int v) { this.v = v; } } class Base { private Base(int i) { } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToField1()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](i); } } class Base { protected int i; } ",
@"class Class { void M(int i) { Base b = new T(i); } } internal class T : Base { public T(int i) { this.i = i; } } class Base { protected int i; }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToField2()
        {
            Test(
@"class Class { void M(string i) { Base b = new [|T|](i); } } class Base { protected object i; } ",
@"class Class { void M(string i) { Base b = new T(i); } } internal class T : Base { public T(string i) { this.i = i; } } class Base { protected object i; }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToField3()
        {
            Test(
@"class Class { void M(string i) { Base b = new [|T|](i); } } class Base { protected bool i; } ",
@"class Class { void M(string i) { Base b = new T(i); } } internal class T : Base { private string i; public T(string i) { this.i = i; } } class Base { protected bool i; }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToField4()
        {
            Test(
@"class Class { void M(bool i) { Base b = new [|T|](i); } } class Base { protected bool ii; } ",
@"class Class { void M(bool i) { Base b = new T(i); } } internal class T : Base { private bool i; public T(bool i) { this.i = i; } } class Base { protected bool ii; }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToField5()
        {
            Test(
@"class Class { void M(bool i) { Base b = new [|T|](i); } } class Base { private bool i; } ",
@"class Class { void M(bool i) { Base b = new T(i); } } internal class T : Base { private bool i; public T(bool i) { this.i = i; } } class Base { private bool i; }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToField6()
        {
            Test(
@"class Class { void M(bool i) { Base b = new [|T|](i); } } class Base { protected readonly bool i; } ",
@"class Class { void M(bool i) { Base b = new T(i); } } internal class T : Base { private bool i; public T(bool i) { this.i = i; } } class Base { protected readonly bool i; }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToField7()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](i); } } class Base { protected int I; } ",
@"class Class { void M(int i) { Base b = new T(i); } } internal class T : Base { public T(int i) { I = i; } } class Base { protected int I; }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToField7WithQualification()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](i); } } class Base { protected int I; } ",
@"class Class { void M(int i) { Base b = new T(i); } } internal class T : Base { public T(int i) { this.I = i; } } class Base { protected int I; }",
index: 1,
options: new Dictionary<OptionKey, object> { { new OptionKey(SimplificationOptions.QualifyMemberAccessWithThisOrMe, "C#"), true } });
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToField8()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](i); } } class Base { private int I; } ",
@"class Class { void M(int i) { Base b = new T(i); } } internal class T : Base { private int i; public T(int i) { this.i = i; } } class Base { private int I; }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToField9()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](i); } } class Base { public static int i; } ",
@"class Class { void M(int i) { Base b = new T(i); } } internal class T : Base { private int i; public T(int i) { this.i = i; } } class Base { public static int i; }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToField10()
        {
            Test(
@"class Class { void M(int i) { D d = new [|T|](i); } } class D : B { protected int I; } class B { protected int i }",
@"class Class { void M(int i) { D d = new T(i); } } internal class T : D { public T(int i) { this.i = i; } } class D : B { protected int I; } class B { protected int i }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToProperty1()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](i); } } class Base { public int I { get; private set; } } ",
@"class Class { void M(int i) { Base b = new T(i); } } internal class T : Base { private int i; public T(int i) { this.i = i; } } class Base { public int I { get; private set; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToProperty2()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](i); } } class Base { public int I { get; protected set; } } ",
@"class Class { void M(int i) { Base b = new T(i); } } internal class T : Base { public T(int i) { I = i; } } class Base { public int I { get; protected set; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToProperty2WithQualification()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](i); } } class Base { public int I { get; protected set; } } ",
@"class Class { void M(int i) { Base b = new T(i); } } internal class T : Base { public T(int i) { this.I = i; } } class Base { public int I { get; protected set; } }",
index: 1,
options: new Dictionary<OptionKey, object> { { new OptionKey(SimplificationOptions.QualifyMemberAccessWithThisOrMe, "C#"), true } });
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToProperty3()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](i); } } class Base { protected int I { get; set; } } ",
@"class Class { void M(int i) { Base b = new T(i); } } internal class T : Base { public T(int i) { I = i; } } class Base { protected int I { get; set; } }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateWithCallToProperty3WithQualification()
        {
            Test(
@"class Class { void M(int i) { Base b = new [|T|](i); } } class Base { protected int I { get; set; } } ",
@"class Class { void M(int i) { Base b = new T(i); } } internal class T : Base { public T(int i) { this.I = i; } } class Base { protected int I { get; set; } }",
index: 1,
options: new Dictionary<OptionKey, object> { { new OptionKey(SimplificationOptions.QualifyMemberAccessWithThisOrMe, "C#"), true } });
        }

        [WorkItem(942568)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void GenerateTypeWithPreferIntrinsicPredefinedKeywordFalse()
        {
            Test(
@"class Class {
    void M(int i) 
    {
        var b = new [|T|](i);
    }
}",
@"class Class {
    void M(int i) 
    {
        var b = new T(i);
    }
}

internal class T
{
    private System.Int32 i;

    public T(System.Int32 i)
    {
        this.i = i;
    }
}",
index: 1,
compareTokens: false,
options: new Dictionary<OptionKey, object> { { new OptionKey(SimplificationOptions.PreferIntrinsicPredefinedTypeKeywordInDeclaration, "C#"), false } });
        }

        #endregion

        #region Generate Interface

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateInterfaceFromTypeConstraint()
        {
            Test(
@"class EmployeeList<T> where T : Employee, [|IEmployee|], new() { }",
@"class EmployeeList<T> where T : Employee, IEmployee, new() { } internal interface IEmployee { }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateInterfaceFromTypeConstraints()
        {
            Test(
@"class EmployeeList<T> where T : Employee, IEmployee, [|IComparable<T>|], new() { }",
@"class EmployeeList<T> where T : Employee, IEmployee, IComparable<T>, new() { } internal interface IComparable<T> where T : Employee, IEmployee, IComparable<T>, new() { }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void NegativeTestGenerateInterfaceFromTypeConstraint()
        {
            TestMissing(
@"using System; class EmployeeList<T> where T : Employee, IEmployee, [|IComparable<T>|], new() { }");
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateInterfaceFromBaseList1()
        {
            Test(
@"interface A : [|B|] { }",
@"interface A : B { } internal interface B { }",
index: 1);
        }

        [WorkItem(538519)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateInterfaceFromBaseList2()
        {
            Test(
@"class Test : [|ITest|] { }",
@"class Test : ITest { } internal interface ITest { }",
index: 1);
        }

        [WorkItem(538519)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateInterfaceFromTypeConstraints2()
        {
            Test(
@"class Test<T> where T : [|ITest|] { }",
@"class Test<T> where T : ITest { } internal interface ITest { }",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateInterfaceFromBaseList3()
        {
            Test(
@"class A : object, [|B|] { }",
@"class A : object, B { } internal interface B { }",
index: 1);
        }

        #endregion

        [WorkItem(539339)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void NotInLeftSideOfAssignment()
        {
            TestMissing(
@"class Class { void M(int i) { [|Foo|] = 2; } }");
        }

        [WorkItem(539339)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void InLeftSideOfAssignment()
        {
            Test(
@"class Class { void M(int i) { [|Foo|].Bar = 2; } }",
@"class Class { void M(int i) { Foo.Bar = 2; } } internal class Foo { }",
index: 1);
        }

        [WorkItem(539339)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void NotInRightSideOfAssignment()
        {
            TestMissing(
@"class Class { void M(int i) { x = [|Foo|]; } }");
        }

        [WorkItem(539339)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void InRightSideOfAssignment()
        {
            Test(
@"class Class { void M(int i) { x = [|Foo|].Bar; } }",
@"class Class { void M(int i) { x = Foo.Bar; } } internal class Foo { }",
index: 1);
        }

        [WorkItem(539489)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestEscapedName()
        {
            Test(
@"class Class { [|@Foo|] f; }",
@"class Class { @Foo f; } internal class Foo { }",
index: 1);
        }

        [WorkItem(539489)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestEscapedKeyword()
        {
            Test(
@"class Class { [|@int|] f; }",
@"class Class { @int f; } internal class @int { }",
index: 1);
        }

        [WorkItem(539535)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateIntoNewFile()
        {
            TestAddDocument(
@"class Class { void F() { new [|Foo|].Bar(); } }",
@"namespace Foo { internal class Bar { public Bar() { } } }",
expectedContainers: new List<string> { "Foo" },
expectedDocumentName: "Bar.cs");
        }

        [WorkItem(539620)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestDeclarationSpan()
        {
            TestSpans(
@"class Class { void Foo() { [|Bar|] b; } }",
@"class Class { void Foo() { [|Bar|] b; } }",
index: 1);
        }

        [WorkItem(539674)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestNotInEnumBaseList()
        {
            TestMissing(
@"enum E : [|A|] { }");
        }

        [WorkItem(539681)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestNotInConditional()
        {
            TestMissing(
@"class Program { static void Main ( string [ ] args ) { if ( [|IsTrue|] ) { } } } ");
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestInUsing()
        {
            Test(
@"using System ; using System . Collections . Generic ; using System . Linq ; class Program { static void Main ( string [ ] args ) { using ( [|Foo|] f = bar ( ) ) { } } } ",
@"using System ; using System . Collections . Generic ; using System . Linq ; class Program { static void Main ( string [ ] args ) { using ( Foo f = bar ( ) ) { } } } internal class Foo { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestNotInDelegateConstructor()
        {
            TestMissing(
@"delegate void D ( int x ) ; class C { void M ( ) { D d = new D ( [|Test|] ) ; } } ");
        }

        [WorkItem(539754)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestMissingOnVar()
        {
            TestMissing(
@"using System ; using System . Collections . Generic ; using System . Linq ; class Program { static void Main ( string [ ] args ) { [|var|] x = new Program ( ) ; } } ");
        }

        [WorkItem(539765)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestElideDefaultConstructor()
        {
            Test(
@"class A { void M ( ) { C test = new [|B|] ( ) ; } } internal class C { } ",
@"class A { void M ( ) { C test = new B ( ) ; } } internal class B : C { } internal class C { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        [WorkItem(539783)]
        public void RegressionFor5867ErrorToleranceTopLevel()
        {
            TestMissing(
@"[|this|] . f = f ; ",
GetScriptOptions());
        }

        [WorkItem(539799)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestOnInaccessibleType()
        {
            TestMissing(
@"class C { private class D { } } class A { void M ( ) { C . [|D|] d = new C . D ( ) ; } } ");
        }

        [WorkItem(539794)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestDefaultConstructorInTypeDerivingFromInterface()
        {
            Test(
@"class Program { static void Main ( string [ ] args ) { I obj = new [|A|] ( ) ; } } interface I { } ",
@"class Program { static void Main ( string [ ] args ) { I obj = new A ( ) ; } } internal class A : I { } interface I { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateWithThrow()
        {
            Test(
@"using System ; class C { void M ( ) { throw new [|NotFoundException|] ( ) ; } } ",
@"using System ; using System . Runtime . Serialization ; class C { void M ( ) { throw new NotFoundException ( ) ; } } [ Serializable ] internal class NotFoundException : Exception { public NotFoundException ( ) { } public NotFoundException ( string message ) : base ( message ) { } public NotFoundException ( string message , Exception innerException ) : base ( message , innerException ) { } protected NotFoundException ( SerializationInfo info , StreamingContext context ) : base ( info , context ) { } } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateInTryCatch()
        {
            Test(
@"using System ; class C { void M ( ) { try { } catch ( [|NotFoundException|] ex ) { } } } ",
@"using System ; using System . Runtime . Serialization ; class C { void M ( ) { try { } catch ( NotFoundException ex ) { } } } [ Serializable ] internal class NotFoundException : Exception { public NotFoundException ( ) { } public NotFoundException ( string message ) : base ( message ) { } public NotFoundException ( string message , Exception innerException ) : base ( message , innerException ) { } protected NotFoundException ( SerializationInfo info , StreamingContext context ) : base ( info , context ) { } } ",
index: 1);
        }

        [WorkItem(539739)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateMethod)]
        public void TestNotGenerateInDelegateConstructor()
        {
            TestMissing(
@"using System ; delegate void D ( int x ) ; class C { void M ( ) { D d = new D ( [|Test|] ) ; } } ");
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestInStructBaseList()
        {
            Test(
@"struct S : [|A|] { } ",
@"struct S : A { } internal interface A { } ",
index: 1);
        }

        [WorkItem(539870)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenericWhenNonGenericExists()
        {
            Test(
@"class C { void Foo() { [|A<T>|] a; } } class A { }  ",
@"class C { void Foo() { A<T> a; } } internal class A<T> { } class A { }  ",
index: 1);
        }

        [WorkItem(539930)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestInheritedTypeParameters()
        {
            Test(
@"class C < T , R > { void M ( ) { I < T , R > i = new [|D < T , R >|] ( ) ; } } interface I < T , R > { } ",
@"class C < T , R > { void M ( ) { I < T , R > i = new D < T , R > ( ) ; } } internal class D < T , R > : I < T , R > { } interface I < T , R > { } ",
index: 1);
        }

        [WorkItem(539971)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestDoNotUseOuterTypeParameters()
        {
            Test(
@"class C < T1 , T2 > { public void Foo ( ) { [|D < int , string >|] d ; } } ",
@"class C < T1 , T2 > { public void Foo ( ) { D < int , string > d ; } private class D < T3 , T4 > { } } ",
index: 2);
        }

        [WorkItem(539970)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestReferencingTypeParameters1()
        {
            Test(
@"class M < T , R > { public void Foo ( ) { I < T , R > i = new [|C < int , string >|] ( ) ; } } interface I < T , R > { } ",
@"class M < T , R > { public void Foo ( ) { I < T , R > i = new C < int , string > ( ) ; } } internal class C < T1 , T2 > : I < object , object > { } interface I < T , R > { } ",
index: 1);
        }

        [WorkItem(539970)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestReferencingTypeParameters2()
        {
            Test(
@"class M < T , R > { public void Foo ( ) { I < T , R > i = new [|C < int , string >|] ( ) ; } } interface I < T , R > { } ",
@"class M < T , R > { public void Foo ( ) { I < T , R > i = new C < int , string > ( ) ; } private class C < T1 , T2 > : I < T , R > { } } interface I < T , R > { } ",
index: 2);
        }

        [WorkItem(539972)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestReferencingTypeParameters3()
        {
            Test(
@"class C < T1 , T2 > { public void Foo ( T1 t1 , T2 t2 ) { A a = new [|A|] ( t1 , t2 ) ; } } ",
@"class C < T1 , T2 > { public void Foo ( T1 t1 , T2 t2 ) { A a = new A ( t1 , t2 ) ; } } internal class A { private object t1 ; private object t2 ; public A ( object t1 , object t2 ) { this . t1 = t1 ; this . t2 = t2 ; } } ",
index: 1);
        }

        [WorkItem(539972)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestReferencingTypeParameters4()
        {
            Test(
@"class C < T1 , T2 > { public void Foo ( T1 t1 , T2 t2 ) { A a = new [|A|] ( t1 , t2 ) ; } } ",
@"class C < T1 , T2 > { public void Foo ( T1 t1 , T2 t2 ) { A a = new A ( t1 , t2 ) ; } private class A { private T1 t1 ; private T2 t2 ; public A ( T1 t1 , T2 t2 ) { this . t1 = t1 ; this . t2 = t2 ; } } } ",
index: 2);
        }

        [WorkItem(539992)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestNotPassingEmptyIssueListToCtor()
        {
            TestMissing(
@"using System . Linq ; class Program { void Main ( ) { Enumerable . [|T|] Enumerable . Select ( Enumerable . Range ( 0 , 9 ) , i => char . Parse ( i . ToString ( ) ) ) } } ");
        }

        [WorkItem(540644)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateWithVoidArg()
        {
            Test(
@"class Program { void M ( ) { C c = new [|C|] ( M ( ) ) ; } } ",
@"class Program { void M ( ) { C c = new C ( M ( ) ) ; } } internal class C { private object v ; public C ( object v ) { this . v = v ; } } ",
index: 1);
        }

        [WorkItem(540989)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestMissingOnInaccessibleType()
        {
            TestMissing(
@"class Outer { class Inner { } } class A { Outer . [|Inner|] inner ; } ");
        }

        [WorkItem(540766)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestMissingOnInvalidGlobalCode()
        {
            TestMissing(
@"[|a|] test ",
parseOptions: null);
        }

        [WorkItem(539985)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestDoNotInferTypeWithWrongArity()
        {
            Test(
@"class C < T1 > { public void Test ( ) { C c = new [|C|] ( ) ; } } ",
@"class C < T1 > { public void Test ( ) { C c = new C ( ) ; } } internal class C { public C ( ) { } } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestMissingOnInvalidConstructorToExistingType()
        {
            TestMissing(
@"class Program { static void Main ( ) { new [|Program|] ( 1 ) ; } } ");
        }

        [WorkItem(541263)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestAccessibilityConstraint()
        {
            Test(
@"public static class MyExtension { public static int ExtensionMethod ( this String s , [|D|] d ) { return 10 ; } } ",
@"public static class MyExtension { public static int ExtensionMethod ( this String s , D d ) { return 10 ; } } public class D { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestBaseTypeAccessibilityConstraint()
        {
            Test(
@"public class C : [|D|] { } ",
@"public class C : D { } public class D { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestBaseInterfaceAccessibilityConstraint1()
        {
            Test(
@"public class C : X , [|IFoo|] { } ",
@"public class C : X , IFoo { } internal interface IFoo { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestAccessibilityConstraint2()
        {
            Test(
@"public interface C : [|IBar|] , IFoo { } ",
@"public interface C : IBar , IFoo { } public interface IBar { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestAccessibilityConstraint3()
        {
            Test(
@"public interface C : IBar , [|IFoo|] { } ",
@"public interface C : IBar , IFoo { } public interface IFoo { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestDelegateReturnTypeAccessibilityConstraint()
        {
            Test(
@"public delegate [|D|] Foo ( ) ; ",
@"public delegate D Foo ( ) ; public class D { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestDelegateParameterAccessibilityConstraint()
        {
            Test(
@"public delegate D Foo ( [|S|] d ) ; ",
@"public delegate D Foo ( S d ) ; public class S { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestMethodParameterAccessibilityConstraint()
        {
            Test(
@"public class C { public void Foo ( [|F|] f ) ; } ",
@"public class C { public void Foo ( F f ) ; } public class F { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestMethodReturnTypeAccessibilityConstraint()
        {
            Test(
@"public class C { public [|F|] Foo ( Bar f ) ; } ",
@"public class C { public F Foo ( Bar f ) ; public class F { } } ",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestPropertyTypeAccessibilityConstraint()
        {
            Test(
@"public class C { public [|F|] Foo { get ; } } ",
@"public class C { public F Foo { get ; } public class F { } } ",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestFieldEventTypeAccessibilityConstraint()
        {
            Test(
@"public class C { public event [|F|] E ; } ",
@"public class C { public event F E ; public class F { } } ",
index: 2);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestEventTypeAccessibilityConstraint()
        {
            Test(
@"public class C { public event [|F|] E { add { } remove { } } } ",
@"public class C { public event F E { add { } remove { } } } public class F { } ",
index: 1);
        }

        [WorkItem(541654)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateVarType()
        {
            Test(
@"class C { public static void Main ( ) { [|@var|] v ; } } ",
@"class C { public static void Main ( ) { @var v ; } } internal class var { } ",
index: 1);
        }

        [WorkItem(541641)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestOnBadAttribute()
        {
            Test(
@"[ [|AttClass|] ( ) ] class C { } internal class AttClassAttribute { } ",
@"using System;

[ AttClass ( ) ] class C { }

internal class AttClassAttribute : Attribute
{
}

internal class AttClassAttribute { }",
index: 1);
        }

        [WorkItem(542528)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateStruct1()
        {
            Test(
@"using System ; class A < T > where T : struct { } class Program { static void Main ( ) { new A < [|S|] > ( ) ; } } ",
@"using System ; class A < T > where T : struct { } class Program { static void Main ( ) { new A < S > ( ) ; } } internal struct S { } ",
index: 1);
        }

        [WorkItem(542480)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestCopyConstraints1()
        {
            Test(
@"class A < T > where T : class { } class Program { static void Foo < T > ( ) where T : class { A < T > a = new [|B < T >|] ( ) ; } } ",
@"class A < T > where T : class { } class Program { static void Foo < T > ( ) where T : class { A < T > a = new B < T > ( ) ; } } internal class B < T > : A < T > where T : class { } ",
index: 1);
        }

        [WorkItem(542528)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateStruct2()
        {
            Test(
@"using System ; class A < T > where T : struct { } class Program { static void Main ( ) { new A < Program . [|S|] > ( ) ; } } ",
@"using System ; class A < T > where T : struct { } class Program { static void Main ( ) { new A < Program . S > ( ) ; } private struct S { } } ",
index: 0);
        }

        [WorkItem(542528)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateStruct3()
        {
            Test(
@"using System ; class Program { static void Main ( ) { Foo < Program . [|S|] > ( ) ; } static void Foo < T > ( ) where T : struct { } } ",
@"using System ; class Program { static void Main ( ) { Foo < Program . S > ( ) ; } static void Foo < T > ( ) where T : struct { } private struct S { } } ",
index: 0);
        }

        [WorkItem(542761)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateOpenType1()
        {
            Test(
@"class Program { static void Main ( ) { var x = typeof ( [|C < , >|] ) ; } } ",
@"class Program { static void Main ( ) { var x = typeof ( C < , > ) ; } }  internal class C < T1 , T2 > { } ",
index: 1);
        }

        [WorkItem(542766)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateAttributeInGenericType()
        {
            TestActionCount(
@"using System;
 
class A<T>
{
    [[|C|]]
    void Foo() { }
}",
count: 3);
        }

        [WorkItem(543061)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestNestedGenericAccessibility()
        {
            Test(
@"using System . Collections . Generic ; public class C { public void Foo ( List < [|NewClass|] > x ) { } } ",
@"using System . Collections . Generic ; public class C { public void Foo ( List < NewClass > x ) { } } public class NewClass { } ",
index: 1);
        }

        [WorkItem(543493)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void MissingIfNotInTypeStatementOrExpressionContext()
        {
            TestMissing(@"class C { void M ( ) { a [|b|] c d } } ");
            TestMissing(@"class C { void M ( ) { a b [|c|] d } } ");
            TestMissing(@"class C { void M ( ) { a b c [|d|] } } ");
        }

        [WorkItem(542641)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestAttributeSuffixOnAttributeSubclasses()
        {
            Test(
@"using System . Runtime . CompilerServices ; class Program { static void Main ( string [ ] args ) { CustomConstantAttribute a = new [|FooAttribute|] ( ) ; } } ",
@"using System . Runtime . CompilerServices ; class Program { static void Main ( string [ ] args ) { CustomConstantAttribute a = new FooAttribute ( ) ; } } internal class FooAttribute : CustomConstantAttribute { } ",
index: 1);
        }

        [WorkItem(543853)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestDisplayStringForGlobalNamespace()
        {
            TestSmartTagText(
@"class C : [|Foo|]",
1504
string.Format(FeaturesResources.GenerateForInNewFile, "class", "Foo", FeaturesResources.GlobalNamespace));
1505 1506 1507 1508 1509 1510 1511 1512 1513
        }

        [WorkItem(543853)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestAddDocumentForGlobalNamespace()
        {
            TestAddDocument(
@"class C : [|Foo|]",
"internal class Foo { }",
1514
Array.Empty<string>(),
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
"Foo.cs");
        }

        [WorkItem(543886)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestVerbatimAttribute()
        {
            Test(
@"[ [|@X|] ] class Class3 { } ",
@"using System; [ @X ] class Class3 { } internal class X : Attribute { } ",
index: 1);
        }

        [WorkItem(531220)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void CompareIncompleteMembersToEqual()
        {
            Test(
@"class C{X.X,X class X{X}
X void X<X void X
x,[|x|])",
@"class C{X.X,X class X{X}
X void X<X void X
x,x)private class x
    {
    }
}",
index: 2);
        }

        [WorkItem(544168)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestNotOnAbstractClassCreation()
        {
            TestMissing(
@"abstract class Foo { } class SomeClass { void foo ( ) { var q = new [|Foo|] ( ) ; } } ");
        }

        [WorkItem(545362)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateInVenus1()
        {
            var code = @"
#line hidden
#line 1 ""Default.aspx""
class Program
{
    static void Main(string[] args)
    {
        [|Foo|] f;
#line hidden
#line 2 ""Default.aspx""
    }
}
";

1571 1572 1573 1574 1575 1576 1577
            TestExactActionSetOffered(code,
                new[]
                {
                    string.Format(FeaturesResources.GenerateForInNewFile, "class", "Foo", FeaturesResources.GlobalNamespace),
                    string.Format(FeaturesResources.GenerateForIn, "class", "Foo", "Program"),
                    FeaturesResources.GenerateNewType
                });
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

            Test(code,
@"
#line hidden
#line 1 ""Default.aspx""
class Program
{
    static void Main(string[] args)
    {
        [|Foo|] f;
#line hidden
#line 2 ""Default.aspx""
    }

    private class Foo
    {
    }
}
", index: 1, compareTokens: false);
        }

        [WorkItem(869506)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateTypeOutsideCurrentProject()
        {
            var code = @"<Workspace>
                    <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true"">
                        <ProjectReference>Assembly2</ProjectReference>
                        <Document FilePath=""Test1.cs"">
class Program
{
    static void Main(string[] args)
    {
        [|A.B.C$$|].D f;
    }
}

namespace A
{

}
                        </Document>
                    </Project>
                    <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true"">
                        <Document FilePath=""Test2.cs"">
namespace A
{
    public class B
    {
    }
}
</Document>
                    </Project>
                </Workspace>";

            var expected = @"
namespace A
{
    public class B
    {
        public class C
        {
        }
    }
}
";

            Test(code, expected, compareTokens: false, isLine: false);
        }

        [WorkItem(932602)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateTypeInFolderNotDefaultNamespace_0()
        {
            var code = @"<Workspace>
                    <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true"" DefaultNamespace = ""Namespace1.Namespace2"">
                        <Document FilePath=""Test1.cs"">
namespace Namespace1.Namespace2
{
    public class ClassA : [|$$ClassB|]
    {
    }
}
                        </Document>
                    </Project>
                </Workspace>";

            var expected = @"namespace Namespace1.Namespace2
{
    public class ClassB
    {
    }
}";

            TestAddDocument(code,
                expected,
1674
                expectedContainers: Array.Empty<string>(),
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
                expectedDocumentName: "ClassB.cs",
                compareTokens: false,
                isLine: false);
        }

        [WorkItem(932602)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateTypeInFolderNotDefaultNamespace_1()
        {
            var code = @"<Workspace>
                    <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true"" DefaultNamespace = ""Namespace1.Namespace2"" >
                        <Document FilePath=""Test1.cs"" Folders=""Namespace1\Namespace2"">
namespace Namespace1.Namespace2.Namespace3
{
    public class ClassA : [|$$ClassB|]
    {
    }
}
                        </Document>
                    </Project>
                </Workspace>";

            var expected = @"namespace Namespace1.Namespace2.Namespace3
{
    public class ClassB
    {
    }
}";

            TestAddDocument(code,
                expected,
                expectedContainers: new List<string> { "Namespace1", "Namespace2" },
                expectedDocumentName: "ClassB.cs",
                compareTokens: false,
                isLine: false);
        }

        [WorkItem(612700)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestGenerateTypeWithNoBraces()
        {
            var code = @"class Test : [|Base|]";

            var expected = @"class Test : Base
internal class Base
{
}";

            Test(code, expected, index: 1);
        }

        [WorkItem(940003)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestWithProperties1()
        {
            var code = @"using System;

class Program
{
    static void Main(string[] args)
    {
        var c = new [|Customer|](x: 1, y: ""Hello"") {Name = ""John"",�Age = DateTime.Today};
    }
}";

            var expected = @"using System;

class Program
{
    static void Main(string[] args)
    {
        var c = new Customer(x: 1, y: ""Hello"") {Name = ""John"",�Age = DateTime.Today};
    }
}

internal class Customer
{
    private int x;
    private string y;

    public Customer(int x, string y)
    {
        this.x = x;
        this.y = y;
    }

    public DateTime Age { get; set; }
    public string Name { get; set; }
}";

            Test(code, expected, index: 1);
        }

        [WorkItem(940003)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestWithProperties2()
        {
            var code = @"using System;

class Program
{
    static void Main(string[] args)
    {
        var c = new [|Customer|](x: 1, y: ""Hello"") {Name = null,�Age = DateTime.Today};
    }
}";

            var expected = @"using System;

class Program
{
    static void Main(string[] args)
    {
        var c = new Customer(x: 1, y: ""Hello"") {Name = null,�Age = DateTime.Today};
    }
}

internal class Customer
{
    private int x;
    private string y;

    public Customer(int x, string y)
    {
        this.x = x;
        this.y = y;
    }

    public DateTime Age { get; set; }
    public object Name { get; set; }
}";

            Test(code, expected, index: 1);
        }

        [WorkItem(940003)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestWithProperties3()
        {
            var code = @"using System;

class Program
{
    static void Main(string[] args)
    {
        var c = new [|Customer|](x: 1, y: ""Hello"") {Name = Foo,�Age = DateTime.Today};
    }
}";

            var expected = @"using System;

class Program
{
    static void Main(string[] args)
    {
        var c = new Customer(x: 1, y: ""Hello"") {Name = Foo,�Age = DateTime.Today};
    }
}

internal class Customer
{
    private int x;
    private string y;

    public Customer(int x, string y)
    {
        this.x = x;
        this.y = y;
    }

    public DateTime Age { get; set; }
    public object Name { get; set; }
}";

            Test(code, expected, index: 1);
        }

        [WorkItem(1082031)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestWithProperties4()
        {
            var code = @"using System;

class Program
{
    static void Main(string[] args)
    {
        var c = new [|Customer|] {Name = ""John"",�Age = DateTime.Today};
    }
}";

            var expected = @"using System;

class Program
{
    static void Main(string[] args)
    {
        var c = new Customer {Name = ""John"",�Age = DateTime.Today};
    }
}

internal class Customer
{
    public DateTime Age { get; set; }
    public string Name { get; set; }
}";

            Test(code, expected, index: 1);
        }

        [WorkItem(1032176), WorkItem(1073099)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestWithNameOf()
        {
            var code = @"class C
{
    void M()
    {
        var x = nameof([|Z|]);
    }
}
";

            var expected = @"class C
{
    void M()
    {
        var x = nameof(Z);
    }
}

internal class Z
{
}";

            Test(code, expected, index: 1);
        }

        [WorkItem(1032176), WorkItem(1073099)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestWithNameOf2()
        {
            var code = @"class C
{
    void M()
    {
        var x = nameof([|C.Test|]);
    }
}";

            var expected = @"class C
{
    void M()
    {
        var x = nameof(C.Test);
    }

    private class Test
    {
    }
}";

            Test(code, expected, index: 0);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestWithUsingStatic()
        {
            Test(
@"using static [|Sample|] ; ",
@"using static Sample ; internal class Sample { } ",
index: 1);
        }

        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
        public void TestWithUsingStatic2()
        {
            TestMissing(@"using [|Sample|] ; ");
        }
1954 1955 1956

        [WorkItem(1107929)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
C
Charles Stoner 已提交
1957
        public void TestAccessibilityForPublicFields()
1958 1959 1960 1961 1962 1963 1964 1965 1966 1967
        {
            Test(
@"class A { public B b = new [|B|](); }",
@"public class B { public B() { } }",
index: 0,
isAddedDocument:true);
        }

        [WorkItem(1107929)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
C
Charles Stoner 已提交
1968
        public void TestAccessibilityForPublicFields2()
1969 1970 1971 1972 1973 1974 1975 1976 1977
        {
            Test(
@"class A { public B b = new [|B|](); }",
@"class A { public B b = new B(); } public class B { public B() {}}",
index: 1);
        }

        [WorkItem(1107929)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
C
Charles Stoner 已提交
1978
        public void TestAccessibilityForPublicFields3()
1979 1980 1981 1982
        {
            Test(
@"class A { public B b = new [|B|](); }",
@"class A { public B b = new B(); public class B { public B() {}}}",
J
Jonathon Marolf 已提交
1983 1984 1985 1986 1987
index: 2);
        }

        [WorkItem(1107929)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
C
Charles Stoner 已提交
1988
        public void TestAccessibilityForPublicFields4()
J
Jonathon Marolf 已提交
1989 1990 1991 1992 1993 1994 1995 1996 1997 1998
        {
            Test(
@"class A { public B<int> b = new [|B|]<int>(); }",
@"public class B<T> { public B() {}}",
index: 0,
isAddedDocument: true);
        }

        [WorkItem(1107929)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
C
Charles Stoner 已提交
1999
        public void TestAccessibilityForPublicFields5()
J
Jonathon Marolf 已提交
2000 2001 2002 2003 2004 2005 2006 2007 2008
        {
            Test(
@"class A { public B<int> b = new [|B|]<int>(); }",
@"class A { public B<int> b = new B<int>(); } public class B<T>{ public B(){}}",
index: 1);
        }

        [WorkItem(1107929)]
        [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
C
Charles Stoner 已提交
2009
        public void TestAccessibilityForPublicFields6()
J
Jonathon Marolf 已提交
2010 2011 2012 2013
        {
            Test(
@"class A { public B<int> b = new [|B|]<int>(); }",
@"class A { public B<int> b = new B<int>(); public class B<T>{ public B(){}}}",
2014 2015
index: 2);
        }
2016 2017
    }
}