Skip to content

Commit 87d278c

Browse files
committed
- updates unit tests
1 parent 6e9b342 commit 87d278c

14 files changed

+29
-14
lines changed

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/ICallCollectionRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@
1313
import java.util.EnumSet;
1414

1515
import com.microsoft.graph.http.IBaseCollectionPage;
16+
import com.microsoft.graph.http.IHttpRequest;
1617

1718
// **NOTE** This file was generated by a tool and any changes will be overwritten.
1819

1920
/**
2021
* The interface for the Call Collection Request.
2122
*/
22-
public interface ICallCollectionRequest {
23+
public interface ICallCollectionRequest extends IHttpRequest {
2324

2425
void get(final ICallback<ICallCollectionPage> callback);
2526

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/IEntityType2CollectionRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@
1313
import java.util.EnumSet;
1414

1515
import com.microsoft.graph.http.IBaseCollectionPage;
16+
import com.microsoft.graph.http.IHttpRequest;
1617

1718
// **NOTE** This file was generated by a tool and any changes will be overwritten.
1819

1920
/**
2021
* The interface for the Entity Type2Collection Request.
2122
*/
22-
public interface IEntityType2CollectionRequest {
23+
public interface IEntityType2CollectionRequest extends IHttpRequest {
2324

2425
void get(final ICallback<IEntityType2CollectionPage> callback);
2526

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/IEntityType3CollectionRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@
1414
import java.util.EnumSet;
1515

1616
import com.microsoft.graph.http.IBaseCollectionPage;
17+
import com.microsoft.graph.http.IHttpRequest;
1718

1819
// **NOTE** This file was generated by a tool and any changes will be overwritten.
1920

2021
/**
2122
* The interface for the Entity Type3Collection Request.
2223
*/
23-
public interface IEntityType3CollectionRequest {
24+
public interface IEntityType3CollectionRequest extends IHttpRequest {
2425

2526
void get(final ICallback<IEntityType3CollectionPage> callback);
2627

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/IEntityType3CollectionWithReferencesRequest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@
1414
import java.util.Arrays;
1515
import java.util.EnumSet;
1616

17+
import com.microsoft.graph.http.IHttpRequest;
18+
1719
// **NOTE** This file was generated by a tool and any changes will be overwritten.
1820

1921
/**
2022
* The interface for the Entity Type3Collection With References Request.
2123
*/
22-
public interface IEntityType3CollectionWithReferencesRequest {
24+
public interface IEntityType3CollectionWithReferencesRequest extends IHttpRequest {
2325

2426
void get(final ICallback<IEntityType3CollectionWithReferencesPage> callback);
2527

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/IEntityType3ForwardRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@
1010
import com.microsoft.graph.http.BaseRequest;
1111
import com.microsoft.graph.core.ClientException;
1212
import com.microsoft.graph.http.BaseCollectionRequest;
13+
import com.microsoft.graph.http.IHttpRequest;
1314

1415
// **NOTE** This file was generated by a tool and any changes will be overwritten.
1516

1617
/**
1718
* The interface for the Entity Type3Forward Request.
1819
*/
19-
public interface IEntityType3ForwardRequest {
20+
public interface IEntityType3ForwardRequest extends IHttpRequest {
2021

2122
void post(final ICallback<Void> callback);
2223

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/IOnenotePageForwardRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@
1010
import com.microsoft.graph.http.BaseRequest;
1111
import com.microsoft.graph.core.ClientException;
1212
import com.microsoft.graph.http.BaseCollectionRequest;
13+
import com.microsoft.graph.http.IHttpRequest;
1314

1415
// **NOTE** This file was generated by a tool and any changes will be overwritten.
1516

1617
/**
1718
* The interface for the Onenote Page Forward Request.
1819
*/
19-
public interface IOnenotePageForwardRequest {
20+
public interface IOnenotePageForwardRequest extends IHttpRequest {
2021

2122
void post(final ICallback<Void> callback);
2223

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/ITestTypeQueryCollectionRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import com.microsoft.graph.models.extensions.ResponseObject;
1212
import java.util.Arrays;
1313
import java.util.EnumSet;
14+
import com.microsoft.graph.http.IHttpRequest;
1415

1516
import com.google.gson.JsonObject;
1617
import com.google.gson.annotations.SerializedName;
@@ -21,7 +22,7 @@
2122
/**
2223
* The interface for the Test Type Query Collection Request.
2324
*/
24-
public interface ITestTypeQueryCollectionRequest {
25+
public interface ITestTypeQueryCollectionRequest extends IHttpRequest {
2526

2627
void post(final ICallback<ITestTypeQueryCollectionPage> callback);
2728

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/ITimeOffCollectionRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@
1313
import java.util.EnumSet;
1414

1515
import com.microsoft.graph.http.IBaseCollectionPage;
16+
import com.microsoft.graph.http.IHttpRequest;
1617

1718
// **NOTE** This file was generated by a tool and any changes will be overwritten.
1819

1920
/**
2021
* The interface for the Time Off Collection Request.
2122
*/
22-
public interface ITimeOffCollectionRequest {
23+
public interface ITimeOffCollectionRequest extends IHttpRequest {
2324

2425
void get(final ICallback<ITimeOffCollectionPage> callback);
2526

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/ITimeOffRequestCollectionRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@
1414
import java.util.EnumSet;
1515

1616
import com.microsoft.graph.http.IBaseCollectionPage;
17+
import com.microsoft.graph.http.IHttpRequest;
1718

1819
// **NOTE** This file was generated by a tool and any changes will be overwritten.
1920

2021
/**
2122
* The interface for the Time Off Request Collection Request.
2223
*/
23-
public interface ITimeOffRequestCollectionRequest {
24+
public interface ITimeOffRequestCollectionRequest extends IHttpRequest {
2425

2526
void get(final ICallback<ITimeOffRequestCollectionPage> callback);
2627

test/Typewriter.Test/TestDataJava/com/microsoft/graph2/callrecords/requests/extensions/ICallRecordCollectionRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@
1313
import java.util.EnumSet;
1414

1515
import com.microsoft.graph.http.IBaseCollectionPage;
16+
import com.microsoft.graph.http.IHttpRequest;
1617

1718
// **NOTE** This file was generated by a tool and any changes will be overwritten.
1819

1920
/**
2021
* The interface for the Call Record Collection Request.
2122
*/
22-
public interface ICallRecordCollectionRequest {
23+
public interface ICallRecordCollectionRequest extends IHttpRequest {
2324

2425
void get(final ICallback<ICallRecordCollectionPage> callback);
2526

0 commit comments

Comments
 (0)