Exemple #1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test(dataProvider = "name") public void test_extendedEnum(IborFutureConvention convention, String name)
        public virtual void test_extendedEnum(IborFutureConvention convention, string name)
        {
            IborFutureConvention.of(name);     // ensures map is populated
            ImmutableMap <string, IborFutureConvention> map = IborFutureConvention.extendedEnum().lookupAll();

            assertEquals(map.get(name), convention);
        }