基本上我有端点:
public MyDto get() {...}
和打字稿定义文件:My.d.ts
我想确保MyDto与My.d.ts匹配。请注意,此验证应考虑@JsonIgnore
,@JsonUnwrapped
和其他Java批注(否则,这是没有用的),因此我想像Java测试这样:
@Test
public shouldMatch() {
MyDto result = myService.get();
expect(result).toMatchTypescriptFile('.../web/models/My.d.ts');
}
有这样的东西吗?还是另一种验证此方法的方法?