~ubuntu-branches/ubuntu/precise/konsole/precise-proposed

« back to all changes in this revision

Viewing changes to src/tests/ProfileTest.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-16 13:14:43 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20111216131443-33q8agi3dii2gfqd
Tags: 4:4.7.90-0ubuntu1
New upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
    QCOMPARE(child->property<QVariant>(Profile::Name),QVariant());
61
61
    QCOMPARE(parent->property<QString>(Profile::Path),QString("FakePath"));
62
62
    QCOMPARE(child->property<QVariant>(Profile::Path),QVariant());
63
 
    
 
63
 
64
64
    // read inheritable properties
65
65
    QVERIFY(parent->property<bool>(Profile::AntiAliasFonts) == false);
66
66
    QVERIFY(child->property<bool>(Profile::AntiAliasFonts) == false);
80
80
    Profile::Ptr source(new Profile(parent));
81
81
    source->setProperty(Profile::AntiAliasFonts,false);
82
82
    source->setProperty(Profile::HistorySize,4567);
83
 
    
 
83
 
84
84
    source->setProperty(Profile::Name,"SourceProfile");
85
85
    source->setProperty(Profile::Path,"SourcePath");
86
86