Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing file - FakeSearchTimer.cs #297

Open
GoogleCodeExporter opened this issue Jan 16, 2016 · 2 comments
Open

Missing file - FakeSearchTimer.cs #297

GoogleCodeExporter opened this issue Jan 16, 2016 · 2 comments

Comments

@GoogleCodeExporter
Copy link

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
Copy link
Author

in version - 2.3.5.34959

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

@GoogleCodeExporter
Copy link
Author

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant