Changeset 3328

Show
Ignore:
Timestamp:
01/29/10 17:02:55 (7 weeks ago)
Author:
trichards
Message:

Adjusted ScriptTest? to follow the recent changes to Event (Event creation is now handled at the service level instead of at the queue level).

Location:
tests/trunk/ScriptTest
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • tests/trunk/ScriptTest/EventTest.cpp

    r3310 r3328  
    5656,   m_running(false) 
    5757{ 
    58     m_pEventService->getEventQueue("script").createEvent("EventTest/tickEvent"); 
     58    m_pEventService->createEvent("EventTest/tickEvent"); 
    5959 
    6060    m_pThread = Zen::Threading::ThreadFactory::create(new BackgroundTick(getTickEvent())); 
     
    126126EventTest::getTickEvent() 
    127127{ 
    128     return m_pEventService->getEventQueue("script").getEvent("EventTest/tickEvent"); 
     128    return m_pEventService->getEvent("EventTest/tickEvent"); 
    129129} 
    130130 
  • tests/trunk/ScriptTest/RawObject.hpp

    r3306 r3328  
    3232    void rawObjectTestA(const std::string& _var); 
    3333    void rawObjectTest(); 
     34 
     35    // TODO Test this: 
     36    // make RawObject non-copyable and then add this 
     37    // method. 
     38    // void rawObjectTestObject(RawObject& _object); 
    3439    /// @} 
    3540