编写junit测试来覆盖跨版本序列化
你们中的任何人对如何测试我的应用程序的跨版本兼容性有任何信息/想法吗?我正在当前“HEAD”版本中测试这些对象的序列化。但我需要等待我的集成测试,看看我是否破坏了任何跨版本。
我猜我需要将从上次发布版本序列化的对象存储在磁盘上的某个位置,我可以想象这种系统如何工作,但我想知道是否有人已经这样做了。
does any of you have any info/idea on how can I test my application for cross version compatibility. I am testing these object's serialization in current "HEAD" version. but I need to wait for my integration testing to see if I broke anything cross version.
I am guessing I will need to store the objects serialized from last released version somewhere on my disk, I can imagine how this kind of system might work but I wonder if someone already did it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在寻找单元测试序列化的方法时,我偶然发现了这个问题,以及关于同一主题的有趣的博客文章。我将在这里发布链接,以防其他人发现它有用...
这是 Bob Lee(Google Guice 创建者)对单元测试序列化演变的看法:
While looking for ways to unit test serialization, I stumbled on this question, and on interesting blog posts on the same subject. I'll post the links here in case others find it useful...
Here is Bob Lee's (Google Guice creator) take on unit testing serialization evolution:
从来没有这样做过,但我会使用以下方法:
Never did it, but I'd use the following approach: