Skip to content

Commit ef6bde3

Browse files
committed
Add stub for IndexResponse
1 parent ccc7eb1 commit ef6bde3

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
using Elasticsearch.Net;
2+
using Nest;
3+
using System;
4+
5+
namespace IntegrationEngine.Core.Tests
6+
{
7+
public class StubIndexResponse : IIndexResponse
8+
{
9+
public StubIndexResponse()
10+
{
11+
}
12+
13+
#region IIndexResponse implementation
14+
15+
public string Id {
16+
get {
17+
throw new NotImplementedException();
18+
}
19+
}
20+
21+
public string Index {
22+
get {
23+
throw new NotImplementedException();
24+
}
25+
}
26+
27+
public string Type {
28+
get {
29+
throw new NotImplementedException();
30+
}
31+
}
32+
33+
public string Version {
34+
get {
35+
throw new NotImplementedException();
36+
}
37+
}
38+
39+
public bool Created {
40+
get {
41+
throw new NotImplementedException();
42+
}
43+
}
44+
45+
#endregion
46+
47+
#region IResponse implementation
48+
49+
public bool IsValid {
50+
get {
51+
throw new NotImplementedException();
52+
}
53+
}
54+
55+
public IElasticsearchResponse ConnectionStatus {
56+
get {
57+
throw new NotImplementedException();
58+
}
59+
}
60+
61+
public ElasticInferrer Infer {
62+
get {
63+
throw new NotImplementedException();
64+
}
65+
}
66+
67+
public ElasticsearchServerError ServerError {
68+
get {
69+
throw new NotImplementedException();
70+
}
71+
}
72+
73+
#endregion
74+
75+
#region IResponseWithRequestInformation implementation
76+
77+
public IElasticsearchResponse RequestInformation {
78+
get {
79+
throw new NotImplementedException();
80+
}
81+
set {
82+
throw new NotImplementedException();
83+
}
84+
}
85+
86+
#endregion
87+
}
88+
}
89+

0 commit comments

Comments
 (0)