public void ThePerceptionClassImplementsTheIAligmentInterfaceToUserInterfaceElementesAreCentredOr()
        {
            Perception.Perception perception;

            perception = new Perception.Perception();

            Assert.IsNotNull(perception.GetType().GetInterface("IAligment"));
        }
        public void ThePerceptionClassImplementsTheIAdequacyInterfaceToAdaptTheUserInterfaceToAdequacyPrinciple()
        {
            Perception.Perception perception;

            perception = new Perception.Perception();

            Assert.IsNotNull(perception.GetType().GetInterface("IAdequacy"));
        }