インターフェイスを実装するいくつかのモデル クラスがありjava.io.Serializable
(シリアル化の目的で)、それらは devmode と webmode で完全に動作しますが、テストを実行した後に GWTTestCase でそれらを使用したい場合、次のエラーが発生します。
Type 'com.saeed.test.model.MyModel' was not assignable to
'com.google.gwt.user.client.rpc.IsSerializable'
and did not have a custom field serializer.
For security purposes, this type will not be deserialized.
MyModel クラスにはデフォルトのコンストラクターがありません (ただし、devmode と webmode では完全に動作します)。
この問題を解決するにはどうすればよいですか?