summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cs/UNI-40685.cs
blob: a2f37547dc51ea53563d9593045ce783f148486c (plain)
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
namespace Namespace
{
    public static class Class
    {
        public static void Foo()
        {
            Tests = Bar(
                A,
                cp =>
                cp.Foo(new Bar
                {
                    Identifier = "ID",
                    PathToEmbed = "VAL"
                })
                .WithPrebuiltReference(Moq),
                Core);

            var Test = FooBar(
                B,
                cp => cp.WithB(Bar).WithSource("Path/File.ext"),
                new[] {
                    A,
                    B,
                    C
                }
            );
        }
    }
}