public void GetTenDaysAvgWithoutMinMaxTest()
        {
            string spotCode = "KR1035027161";
            string futureCode = "167FC000";
            DateTime targetDate = new DateTime(2011, 10, 24);

            HistoricAvgDayDataGenerator_KtbSkel target =
                new HistoricAvgDayDataGenerator_KtbSkel(spotCode, futureCode, targetDate);

            DayDataKtbAvgSpotFuture data = target.GetTenDaysAvg();

            DayDataKtbAvgSpotFuture expected = new DayDataKtbAvgSpotFuture();
            expected.Spot = GetExpectedSpotDayData();
            expected.Future = GetExpectedFutureDayData();

            Compare(data.Spot, expected.Spot);
            Compare(data.Future, expected.Future);
        }