Aggregation_Unit_Tests.AggregationProcessingTests.TestSingleValueAggregation C# (CSharp) Method

TestSingleValueAggregation() private method

private TestSingleValueAggregation ( ) : void
return void
        public void TestSingleValueAggregation()
        {
            var mog = this.deserial.Deserialize<MotherOfGodAggregations>(
                    new RestResponse<MotherOfGodAggregations> { Content = TestResources.sentimentAggregation });
            var output = new Dictionary<string, Dictionary<string, double>>();
            var fieldNames = new Dictionary<string, string>();
            AggregationHelper.ProcessAggregations(mog.aggregations,0,ref output,string.Empty,false,ref fieldNames);
        }