Ejemplo n.º 1
0
 public void Variable_Fails_On_Constant()
 {
     Reflect.Variable(() => 1);
 }
Ejemplo n.º 2
0
 public GenericClass(IModel <TModel> model)
 {
     Assert.AreEqual("model", Reflect.VariableName(() => model));
 }
Ejemplo n.º 3
0
 public string GetNameOfProperty()
 {
     return(Reflect.Property(() => Target.SomeProperty).Name);
 }
Ejemplo n.º 4
0
        static void TestGenericMethod <TModel>(IModel <TModel> model)
        {
            var name = Reflect.Variable(() => model).Name;

            Assert.AreEqual("model", name);
        }