60e2f8ed5b
It's the conformance test suite: there's no need to namespace the files, just like there's no need to namespace the units. This commit does not change the Cogl tests: they will be moved to Cogl over time, and it's easier to do if we leave them as they are.
57 lines
1.5 KiB
C
57 lines
1.5 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <glib.h>
|
|
|
|
#include <clutter/clutter.h>
|
|
|
|
#include "test-conform-common.h"
|
|
|
|
void
|
|
rectangle_set_size (TestConformSimpleFixture *fixture,
|
|
gconstpointer data)
|
|
{
|
|
ClutterActor *rect = clutter_rectangle_new ();
|
|
|
|
/* initial positioning */
|
|
g_assert_cmpint (clutter_actor_get_x (rect), ==, 0);
|
|
g_assert_cmpint (clutter_actor_get_y (rect), ==, 0);
|
|
|
|
clutter_actor_set_size (rect, 100, 100);
|
|
|
|
/* make sure that changing the size does not affect the
|
|
* rest of the bounding box
|
|
*/
|
|
g_assert_cmpint (clutter_actor_get_x (rect), ==, 0);
|
|
g_assert_cmpint (clutter_actor_get_y (rect), ==, 0);
|
|
|
|
g_assert_cmpint (clutter_actor_get_width (rect), ==, 100);
|
|
g_assert_cmpint (clutter_actor_get_height (rect), ==, 100);
|
|
|
|
clutter_actor_destroy (rect);
|
|
}
|
|
|
|
void
|
|
rectangle_set_color (TestConformSimpleFixture *fixture,
|
|
gconstpointer data)
|
|
{
|
|
ClutterActor *rect = clutter_rectangle_new ();
|
|
ClutterColor white = { 255, 255, 255, 255 };
|
|
ClutterColor black = { 0, 0, 0, 255 };
|
|
ClutterColor check = { 0, };
|
|
|
|
clutter_rectangle_set_color (CLUTTER_RECTANGLE (rect), &black);
|
|
clutter_rectangle_get_color (CLUTTER_RECTANGLE (rect), &check);
|
|
g_assert_cmpint (check.blue, ==, black.blue);
|
|
|
|
clutter_rectangle_set_color (CLUTTER_RECTANGLE (rect), &white);
|
|
clutter_rectangle_get_color (CLUTTER_RECTANGLE (rect), &check);
|
|
g_assert_cmpint (check.green, ==, white.green);
|
|
|
|
g_assert_cmpint (clutter_actor_get_opacity (rect), ==, white.alpha);
|
|
|
|
clutter_actor_destroy (rect);
|
|
}
|
|
|