@@ -450,11 +450,10 @@ public class TestClass
450
450
public async Task TestMethod()
451
451
{
452
452
Console.WriteLine("Hello, world!");
453
- await Assert.ThrowsExactlyAsync<Exception>(async () =>
454
- // In ideal world, it's best if the codefix can separate await M() to a
455
- // variable, then only wrap M(someVariable) in Assert.ThrowsException
456
- // Let's also have this comment serve as a test for trivia ;)
457
- M(await M()));
453
+ // In ideal world, it's best if the codefix can separate await M() to a
454
+ // variable, then only wrap M(someVariable) in Assert.ThrowsException
455
+ // Let's also have this comment serve as a test for trivia ;)
456
+ await Assert.ThrowsExactlyAsync<Exception>(async () => M(await M()));
458
457
}
459
458
460
459
private static Task<int> M() => Task.FromResult(0);
@@ -465,4 +464,380 @@ await Assert.ThrowsExactlyAsync<Exception>(async () =>
465
464
466
465
await VerifyCS . VerifyCodeFixAsync ( code , fixedCode ) ;
467
466
}
467
+
468
+ [ TestMethod ]
469
+ public async Task When_BlockEndsWithLocalFunctions_Should_ConsiderPreviousStatements ( )
470
+ {
471
+ string code = """
472
+ using System;
473
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
474
+
475
+ [TestClass]
476
+ public class TestClass
477
+ {
478
+ [ExpectedException(typeof(System.Exception))]
479
+ [TestMethod]
480
+ public void [|TestMethod|]()
481
+ {
482
+ M1();
483
+ M2();
484
+
485
+ void M1() { }
486
+ void M2() { }
487
+ }
488
+ }
489
+ """ ;
490
+
491
+ string fixedCode = """
492
+ using System;
493
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
494
+
495
+ [TestClass]
496
+ public class TestClass
497
+ {
498
+ [TestMethod]
499
+ public void TestMethod()
500
+ {
501
+ M1();
502
+ Assert.ThrowsExactly<Exception>(() => M2());
503
+
504
+ void M1() { }
505
+ void M2() { }
506
+ }
507
+ }
508
+ """ ;
509
+
510
+ await VerifyCS . VerifyCodeFixAsync ( code , fixedCode ) ;
511
+ }
512
+
513
+ [ TestMethod ]
514
+ public async Task When_BlockEndsWithLocalVariableDeclaration_Should_NotCrash ( )
515
+ {
516
+ string code = """
517
+ using System;
518
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
519
+
520
+ [TestClass]
521
+ public class TestClass
522
+ {
523
+ [ExpectedException(typeof(System.Exception))]
524
+ [TestMethod]
525
+ public void [|TestMethod|]()
526
+ {
527
+ var x = Console.ReadLine();
528
+ }
529
+ }
530
+ """ ;
531
+
532
+ string fixedCode = """
533
+ using System;
534
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
535
+
536
+ [TestClass]
537
+ public class TestClass
538
+ {
539
+ [TestMethod]
540
+ public void TestMethod()
541
+ {
542
+ Assert.ThrowsExactly<Exception>(() => Console.ReadLine());
543
+ }
544
+ }
545
+ """ ;
546
+
547
+ await VerifyCS . VerifyCodeFixAsync ( code , fixedCode ) ;
548
+ }
549
+
550
+ [ TestMethod ]
551
+ public async Task When_BlockEndsWithAssignment_Should_NotCrash ( )
552
+ {
553
+ string code = """
554
+ using System;
555
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
556
+
557
+ [TestClass]
558
+ public class TestClass
559
+ {
560
+ [ExpectedException(typeof(System.Exception))]
561
+ [TestMethod]
562
+ public void [|TestMethod|]()
563
+ {
564
+ object x;
565
+ x = Console.ReadLine();
566
+ }
567
+
568
+ [ExpectedException(typeof(System.Exception))]
569
+ [TestMethod]
570
+ public void [|TestMethod2|]()
571
+ {
572
+ _ = Console.ReadLine();
573
+ }
574
+ }
575
+ """ ;
576
+
577
+ string fixedCode = """
578
+ using System;
579
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
580
+
581
+ [TestClass]
582
+ public class TestClass
583
+ {
584
+ [TestMethod]
585
+ public void TestMethod()
586
+ {
587
+ object x;
588
+ Assert.ThrowsExactly<Exception>(() => x = Console.ReadLine());
589
+ }
590
+
591
+ [TestMethod]
592
+ public void TestMethod2()
593
+ {
594
+ Assert.ThrowsExactly<Exception>(() => _ = Console.ReadLine());
595
+ }
596
+ }
597
+ """ ;
598
+
599
+ await VerifyCS . VerifyCodeFixAsync ( code , fixedCode ) ;
600
+ }
601
+
602
+ [ TestMethod ]
603
+ public async Task When_BlockEndsWithNestedBlocks_Should_NotCrash ( )
604
+ {
605
+ string code = """
606
+ using System;
607
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
608
+
609
+ [TestClass]
610
+ public class TestClass
611
+ {
612
+ [ExpectedException(typeof(System.Exception))]
613
+ [TestMethod]
614
+ public void [|TestMethod|]()
615
+ {
616
+ object x;
617
+
618
+ {
619
+ {
620
+ }
621
+ {
622
+ x = Console.ReadLine();
623
+ }
624
+ {
625
+ }
626
+ }
627
+ }
628
+ }
629
+ """ ;
630
+
631
+ string fixedCode = """
632
+ using System;
633
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
634
+
635
+ [TestClass]
636
+ public class TestClass
637
+ {
638
+ [TestMethod]
639
+ public void TestMethod()
640
+ {
641
+ object x;
642
+
643
+ {
644
+ {
645
+ }
646
+ {
647
+ Assert.ThrowsExactly<Exception>(() => x = Console.ReadLine());
648
+ }
649
+ {
650
+ }
651
+ }
652
+ }
653
+ }
654
+ """ ;
655
+
656
+ await VerifyCS . VerifyCodeFixAsync ( code , fixedCode ) ;
657
+ }
658
+
659
+ [ TestMethod ]
660
+ public async Task When_BlockEndsWithEmptyStatement_Should_BeIgnored ( )
661
+ {
662
+ string code = """
663
+ using System;
664
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
665
+
666
+ [TestClass]
667
+ public class TestClass
668
+ {
669
+ [ExpectedException(typeof(System.Exception))]
670
+ [TestMethod]
671
+ public void [|TestMethod|]()
672
+ {
673
+ Console.WriteLine();;
674
+ }
675
+ }
676
+ """ ;
677
+
678
+ string fixedCode = """
679
+ using System;
680
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
681
+
682
+ [TestClass]
683
+ public class TestClass
684
+ {
685
+ [TestMethod]
686
+ public void TestMethod()
687
+ {
688
+ Assert.ThrowsExactly<Exception>(() => Console.WriteLine()); ;
689
+ }
690
+ }
691
+ """ ;
692
+
693
+ await VerifyCS . VerifyCodeFixAsync ( code , fixedCode ) ;
694
+ }
695
+
696
+ [ TestMethod ]
697
+ public async Task When_BlockEndsWithForEach_Should_NotCrash ( )
698
+ {
699
+ string code = """
700
+ using System;
701
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
702
+
703
+ [TestClass]
704
+ public class TestClass
705
+ {
706
+ [ExpectedException(typeof(System.Exception))]
707
+ [TestMethod]
708
+ public void [|TestMethod|]()
709
+ {
710
+ foreach (var x in new[] { 1, 2, 3 })
711
+ {
712
+ Console.WriteLine(x);
713
+ }
714
+ }
715
+ }
716
+ """ ;
717
+
718
+ // TODO: Formatting is so broken here.
719
+ // See https://github.com/microsoft/testfx/issues/4570
720
+ string fixedCode = """
721
+ using System;
722
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
723
+
724
+ [TestClass]
725
+ public class TestClass
726
+ {
727
+ [TestMethod]
728
+ public void TestMethod()
729
+ {
730
+ Assert.ThrowsExactly<Exception>(() =>
731
+ {
732
+ foreach (var x in new[] { 1, 2, 3 })
733
+ {
734
+ Console.WriteLine(x);
735
+ }
736
+ });
737
+ }
738
+ }
739
+ """ ;
740
+
741
+ await VerifyCS . VerifyCodeFixAsync ( code , fixedCode ) ;
742
+ }
743
+
744
+ [ TestMethod ]
745
+ public async Task When_BlockEndsWithThrowStatement_Should_NotBeWrappedInBlock ( )
746
+ {
747
+ string code = """
748
+ using System;
749
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
750
+
751
+ [TestClass]
752
+ public class TestClass
753
+ {
754
+ [ExpectedException(typeof(System.Exception))]
755
+ [TestMethod]
756
+ public void [|TestMethod|]()
757
+ {
758
+ throw new Exception();
759
+ }
760
+ }
761
+ """ ;
762
+
763
+ string fixedCode = """
764
+ using System;
765
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
766
+
767
+ [TestClass]
768
+ public class TestClass
769
+ {
770
+ [TestMethod]
771
+ public void TestMethod()
772
+ {
773
+ Assert.ThrowsExactly<Exception>(() => throw new Exception());
774
+ }
775
+ }
776
+ """ ;
777
+
778
+ await VerifyCS . VerifyCodeFixAsync ( code , fixedCode ) ;
779
+ }
780
+
781
+ [ TestMethod ]
782
+ public async Task When_BlockEndsWithNestedLockStatements_Should_NotCrash ( )
783
+ {
784
+ string code = """
785
+ using System;
786
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
787
+
788
+ [TestClass]
789
+ public class TestClass
790
+ {
791
+ [ExpectedException(typeof(System.Exception))]
792
+ [TestMethod]
793
+ public void [|TestMethod|]()
794
+ {
795
+ object x = new();
796
+ lock (x)
797
+ {
798
+ lock (x)
799
+ {
800
+ }
801
+ lock (x)
802
+ {
803
+ Console.WriteLine();
804
+ }
805
+ lock (x)
806
+ {
807
+ }
808
+ }
809
+ }
810
+ }
811
+ """ ;
812
+
813
+ string fixedCode = """
814
+ using System;
815
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
816
+
817
+ [TestClass]
818
+ public class TestClass
819
+ {
820
+ [TestMethod]
821
+ public void TestMethod()
822
+ {
823
+ object x = new();
824
+ lock (x)
825
+ {
826
+ lock (x)
827
+ {
828
+ }
829
+ lock (x)
830
+ {
831
+ Assert.ThrowsExactly<Exception>(() => Console.WriteLine());
832
+ }
833
+ lock (x)
834
+ {
835
+ }
836
+ }
837
+ }
838
+ }
839
+ """ ;
840
+
841
+ await VerifyCS . VerifyCodeFixAsync ( code , fixedCode ) ;
842
+ }
468
843
}
0 commit comments