public void TestInitialize()
        {
            DecimalConstant     decimalConstant     = new DecimalConstant(DecimalValue);
            HexaDecimalConstant hexaDecimalConstant = new HexaDecimalConstant(HexaDecimalValue);
            AddressConstant     addressConstant     = new AddressConstant("LBL001");
            StringConstant      stringConstant      = new StringConstant(StringValue);

            m_constants = ConstantCollection.MakeForUnitTest(
                decimalConstant, hexaDecimalConstant, addressConstant, stringConstant);
        }
Exemple #2
0
 internal static void Check(AddressConstant expected, AddressConstant actual, String message)
 {
     LabelTest.Check(expected.Label, actual.Label, "Label: " + message);
 }
Exemple #3
0
 public void TestInitialize()
 {
     m_target = new AddressConstant("LBL001");
 }