~unity-api-team/unity-scopes-api/child-scopes-option

« back to all changes in this revision

Viewing changes to test/gtest/unity/api/scopes/internal/RuntimeImpl/RuntimeImpl_test.cpp

  • Committer: Michi Henning
  • Date: 2013-11-19 02:51:46 UTC
  • mto: This revision was merged to the branch mainline in revision 62.
  • Revision ID: michi.henning@canonical.com-20131119025146-kglcalpphl4ozzk7
Fixed scoperegistry to use new scoperunner and to figure out which scopes to run from config files.
Still to do:
- deal with overrides and OEM scopes, particularly the grouping aspect.
- SignalThread needs to invoke a callback for clean shut-down on receipt of SIGINT.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
TEST(RuntimeImpl, basic)
31
31
{
 
32
try{
32
33
    RuntimeImpl::UPtr rt = RuntimeImpl::create("testscope");
33
34
 
34
35
    EXPECT_TRUE(rt->registry().get() != nullptr);
60
61
                  e.to_string());
61
62
    }
62
63
}
 
64
catch(unity::Exception const& e)
 
65
{
 
66
    cout << e.to_string() << endl;
 
67
}
 
68
}
63
69
 
64
70
TEST(RuntimeImpl, error)
65
71
{