Home | History | Annotate | Download | only in FrameworkSample

Lines Matching refs:Widget

36 // This is a simple test file for the Widget class in the Widget.framework
41 #include <Widget/widget.h>
44 // Widget class correctly.
46 Widget widget(1.0f, "name");
47 EXPECT_FLOAT_EQ(1.0f, widget.GetFloatValue());
48 EXPECT_EQ(std::string("name"), widget.GetStringValue());
54 Widget widget(1.0f, "name");
55 EXPECT_EQ(1, widget.GetIntValue());
59 widget.GetCharPtrValue(buffer, max_size);