public void TestInLambda()
 {
     var testClass = new SymbolProvidingTestClass();
     IEnumerable <int> myEnumerable = new List <int>();
     IEnumerable <int> something    = myEnumerable.Select(e => e + testClass.FunctionInLambda(5));
 }
        public void TestInCtor()
        {
            var testClass = new SymbolProvidingTestClass();

            _ = new TestClass3(testClass.FunctionInConstructor(new[] { true, false }));
        }
        //#####do not move, this is for positional tests (this is line 18)
        private void LocationMethod()
        {
            var testclass = new SymbolProvidingTestClass();

            testclass.LocationTest(19);
        }