public void WhenDataIsRecordedAndGetDataIsCalled()
        {
            _fixations = 6;

            var memoryDataRecorder = new MemoryDataRepository();
            memoryDataRecorder.Insert(_fixations);
            _numberOfTrialsAndFixations = memoryDataRecorder.GetData();
        }
        public void WhenDataIsRecordedAndGetAverageIsCalled()
        {
            const int firstFixations = 3;
            const int secondFixations = 4;

            var memoryDataRecorder = new MemoryDataRepository();
            memoryDataRecorder.Insert(firstFixations);
            memoryDataRecorder.Insert(secondFixations);

            _average = memoryDataRecorder.GetAverage();
        }