本文整理汇总了PHP中Propel\Tests\Bookstore\Book::isNew方法的典型用法代码示例。如果您正苦于以下问题:PHP Book::isNew方法的具体用法?PHP Book::isNew怎么用?PHP Book::isNew使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Propel\Tests\Bookstore\Book
的用法示例。
在下文中一共展示了Book::isNew方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testClear
public function testClear()
{
$b = new Book();
$b->setNew(false);
$b->clear();
$this->assertTrue($b->isNew(), 'clear() sets the object to new');
$b = new Book();
$b->setDeleted(true);
$b->clear();
$this->assertFalse($b->isDeleted(), 'clear() sets the object to not deleted');
}
示例2: testSaveCanInsertNonEmptyObjects
public function testSaveCanInsertNonEmptyObjects()
{
$b = new Book();
$b->setTitle('foo');
$b->setISBN('FA404');
$b->save();
$this->assertFalse($b->isNew());
$this->assertNotNull($b->getId());
}
示例3: testSetterCollectionWithManyToManyModifiedByReferenceWithAnExistingObject
public function testSetterCollectionWithManyToManyModifiedByReferenceWithAnExistingObject()
{
// Ensure no data
BookQuery::create()->deleteAll();
BookClubListQuery::create()->deleteAll();
BookListRelQuery::create()->deleteAll();
$book = new Book();
$book->setTitle('foo');
$book->setISBN('01234');
$book->save();
// The object isn't "new"
$this->assertFalse($book->isNew());
$bookClubList = new BookClubList();
$books = $bookClubList->getBooks();
// Add the object by reference
$books[] = $book;
$bookClubList->setBooks($books);
$bookClubList->setGroupLeader('TestLeader');
$bookClubList->save();
$this->assertEquals(1, BookQuery::create()->count());
$this->assertEquals(1, BookListRelQuery::create()->count());
$this->assertEquals(1, BookClubListQuery::create()->count());
}