//-------------------------------------------------------------------------
        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);
        }
        public virtual void test_serialization()
        {
            SimpleLegalEntity test = SimpleLegalEntity.of(LEI, "US GOV", Country.US);

            assertSerialization(test);
        }