Fix UtcDaliObjectRegistryCopyConstructor 91/41191/1
authorYoonsang Lee <ysang114.lee@samsung.com>
Thu, 11 Jun 2015 11:54:53 +0000 (20:54 +0900)
committerYoonsang Lee <ysang114.lee@samsung.com>
Thu, 11 Jun 2015 11:55:38 +0000 (20:55 +0900)
- Just tet_result( TET_PASS ); does not test anything.

Change-Id: I20801fba50f718c52e436944c000f742eeaf6950

automated-tests/src/dali/utc-Dali-ObjectRegistry.cpp

index 1383ee4..d49b266 100644 (file)
@@ -180,18 +180,14 @@ int UtcDaliObjectRegistryGet(void)
 int UtcDaliObjectRegistryCopyConstructor(void)
 {
   TestApplication application;
-  tet_printf(" copy consturctor ");
 
   ObjectRegistry myRegistry;
-
   ObjectRegistry anotherRegistry( myRegistry );
 
-  tet_result( TET_PASS );
+  DALI_TEST_EQUALS( myRegistry, anotherRegistry, TEST_LOCATION );
   END_TEST;
 }
 
-
-
 int UtcDaliObjectRegistrySignalActorCreated(void)
 {
   tet_infoline("Testing GetObjectRegistry()");