summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cs/12106-UNI-40685.cs
blob: 9b70920e02b69ec4c981a57f907401f8e5fcbc15 (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
                }
            );
        }
    }
}