Open GoogleCodeExporter opened 8 years ago
in version - 2.3.5.34959
Original comment by 2009M...@gmail.com
on 4 Mar 2010 at 12:59
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
Original issue reported on code.google.com by
2009M...@gmail.com
on 4 Mar 2010 at 12:51