コード例 #1
0
        //-------------------------------------------------------------------------
        public virtual void coverage()
        {
            SimpleLegalEntity test = SimpleLegalEntity.of(LEI, "US GOV", Country.US);

            coverImmutableBean(test);
            SimpleLegalEntity test2 = SimpleLegalEntity.of(LEI2, "GB GOV", Country.GB);

            coverBeanEquals(test, test2);
        }
コード例 #2
0
        public virtual void test_serialization()
        {
            SimpleLegalEntity test = SimpleLegalEntity.of(LEI, "US GOV", Country.US);

            assertSerialization(test);
        }