tunglam236 / QLBH

Automatically exported from code.google.com/p/wittytwitter
0 stars 0 forks source link

Missing file - FakeSearchTimer.cs #297

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Under WittyUnitTests\Search\ folder, file 'FakeSearchTimer.cs' is missing
or not checked-in.

Original issue reported on code.google.com by 2009M...@gmail.com on 4 Mar 2010 at 12:51

GoogleCodeExporter commented 8 years ago
in version - 2.3.5.34959

Original comment by 2009M...@gmail.com on 4 Mar 2010 at 12:59

GoogleCodeExporter commented 8 years ago
Yes, it is missing but referenced by unit test's code and project file. I made 
this 
to get me by for the moment (may need to do more):

using System;
using Witty.Controls.Search;

namespace WittyUnitTests.Search
{
    public class FakeSearchTimer : ISearchTimer
    {
        public event EventHandler<EventArgs> Tick;

        public void RaiseTickEvent()
        {
            EventHandler<EventArgs> tick = Tick;
            if (tick != null)
                tick(this, new EventArgs());
        }
    }
}

Original comment by tocon...@gmail.com on 28 Apr 2010 at 4:16