mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Fix unit tests
--HG-- branch : dev
This commit is contained in:
@@ -207,27 +207,21 @@ namespace Orchard.Tests.Events {
|
||||
}
|
||||
public class StubEventHandler2 : ITestEventHandler {
|
||||
public void Increment() {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void Sum(int a) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void Sum(int a, int b) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void Sum(int a, int b, int c) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void Substract(int a, int b) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void Concat(string a, string b, string c) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public IEnumerable<string> Gather(int a, string b) {
|
||||
|
Reference in New Issue
Block a user