File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
beekeeper-api/src/test/java/com/expediagroup/beekeeper/api/controller Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
- * Copyright (C) 2019-2021 Expedia, Inc.
2
+ * Copyright (C) 2019-2025 Expedia, Inc.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -102,15 +102,15 @@ public void testGetAllPathsWhenValidInput() throws Exception {
102
102
}
103
103
104
104
@ Test
105
- void testControllerWhenWrongUrl () throws Exception {
105
+ public void testControllerWhenWrongUrl () throws Exception {
106
106
mockMvc
107
107
.perform (get ("/api/v1/database/some_database/table/some_table/metadataa" ))
108
108
.andDo (MockMvcResultHandlers .print ())
109
109
.andExpect (status ().isNotFound ());
110
110
}
111
111
112
112
@ Test
113
- void testPagingWhenValidInput () throws Exception {
113
+ public void testPagingWhenValidInput () throws Exception {
114
114
int pageNumber = 5 ;
115
115
int pageSize = 10 ;
116
116
HousekeepingMetadata metadata1 = generateDummyHousekeepingMetadata ("some_database" , "some_table" );
You can’t perform that action at this time.
0 commit comments