Skip to content

Commit b3829dc

Browse files
committed
fix: keep manually added tests
1 parent 438c753 commit b3829dc

2 files changed

Lines changed: 105 additions & 1 deletion

File tree

.github/workflows/check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
# Move generated files to the correct locations and clean up
123123
rm -Rf docs && mv java-client/docs .
124124
rm -Rf gradle && mv java-client/gradle .
125-
rm -Rf src && mv java-client/src .
125+
rm -Rf src/main && mv java-client/src/main src/
126126
rm -Rf build.gradle && mv java-client/build.gradle .
127127
rm -Rf build.sbt && mv java-client/build.sbt .
128128
rm -Rf gradle.properties && mv java-client/gradle.properties .
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
/*
2+
* RevEng.AI API
3+
* RevEng.AI is Similarity Search Engine for executable binaries
4+
*
5+
*
6+
*
7+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
8+
* https://openapi-generator.tech
9+
* Do not edit the class manually.
10+
*/
11+
12+
13+
package ai.reveng.model;
14+
15+
import com.google.gson.TypeAdapter;
16+
import com.google.gson.annotations.JsonAdapter;
17+
import com.google.gson.annotations.SerializedName;
18+
import com.google.gson.stream.JsonReader;
19+
import com.google.gson.stream.JsonWriter;
20+
import java.io.IOException;
21+
import java.time.OffsetDateTime;
22+
import java.util.Arrays;
23+
import org.junit.jupiter.api.Disabled;
24+
import org.junit.jupiter.api.Test;
25+
26+
/**
27+
* Model tests for GetMeResponse
28+
*/
29+
public class GetMeResponseTest {
30+
private final GetMeResponse model = new GetMeResponse();
31+
32+
/**
33+
* Model tests for GetMeResponse
34+
*/
35+
@Test
36+
public void testGetMeResponse() {
37+
// TODO: test GetMeResponse
38+
}
39+
40+
/**
41+
* Test the property 'username'
42+
*/
43+
@Test
44+
public void usernameTest() {
45+
// TODO: test username
46+
}
47+
48+
/**
49+
* Test the property 'userId'
50+
*/
51+
@Test
52+
public void userIdTest() {
53+
// TODO: test userId
54+
}
55+
56+
/**
57+
* Test the property 'firstName'
58+
*/
59+
@Test
60+
public void firstNameTest() {
61+
// TODO: test firstName
62+
}
63+
64+
/**
65+
* Test the property 'lastName'
66+
*/
67+
@Test
68+
public void lastNameTest() {
69+
// TODO: test lastName
70+
}
71+
72+
/**
73+
* Test the property 'email'
74+
*/
75+
@Test
76+
public void emailTest() {
77+
// TODO: test email
78+
}
79+
80+
/**
81+
* Test the property 'creation'
82+
*/
83+
@Test
84+
public void creationTest() {
85+
// TODO: test creation
86+
}
87+
88+
/**
89+
* Test the property 'tutorialSeen'
90+
*/
91+
@Test
92+
public void tutorialSeenTest() {
93+
// TODO: test tutorialSeen
94+
}
95+
96+
/**
97+
* Test the property 'role'
98+
*/
99+
@Test
100+
public void roleTest() {
101+
// TODO: test role
102+
}
103+
104+
}

0 commit comments

Comments
 (0)