Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
632f85ba
Commit
632f85ba
authored
Jun 12, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed test case
parent
e4db5eb3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
107 additions
and
0 deletions
+107
-0
Ticket343TestCase.php
tests/Ticket343TestCase.php
+107
-0
No files found.
tests/Ticket343TestCase.php
0 → 100644
View file @
632f85ba
<?php
/*
* $Id$
* %s
*
* @package Doctrine
* @author Lloyd Leung (lleung at carlton decimal ca)
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/
class
Member
extends
Doctrine_Record
{
const
DATABASE_NAME
=
'doctrine'
;
public
function
setTableDefinition
()
{
$this
->
setTableName
(
'members'
);
$this
->
hasColumn
(
'pin'
,
'string'
,
8
,
array
(
'primary'
=>
true
,
));
$this
->
hasColumn
(
'name'
,
'string'
,
254
,
array
(
'notblank'
=>
true
,
));
}
public
function
setUp
()
{
$this
->
hasMany
(
'NewsBlast as news_blasts'
,
'NewsBlast.pin'
);
}
}
class
NewsBlast
extends
Doctrine_Record
{
const
DATABASE_NAME
=
'doctrine'
;
public
function
setTableDefinition
()
{
$this
->
setTableName
(
'p2m_newsblast'
);
$this
->
hasColumn
(
'subprogram_id'
,
'integer'
,
10
,
array
());
$this
->
hasColumn
(
'title'
,
'string'
,
254
,
array
());
}
public
function
setUp
()
{
$this
->
hasOne
(
'SubProgram as subprogram'
,
'NewsBlast.subprogram_id'
,
'id'
);
$this
->
hasOne
(
'Member as member'
,
'NewsBlast.pin'
,
'pin'
);
}
}
class
SubProgram
extends
Doctrine_Record
{
const
DATABASE_NAME
=
'doctrine'
;
public
function
setTableDefinition
()
{
$this
->
setTableName
(
'p2m_subprogram'
);
$this
->
hasColumn
(
'name'
,
'string'
,
50
,
array
());
}
public
function
setUp
()
{
$this
->
hasMany
(
'Member as members'
,
'Member.subprogram_id'
);
}
}
class
Doctrine_Ticket343_TestCase
extends
Doctrine_UnitTestCase
{
public
function
prepareData
()
{
}
public
function
prepareTables
()
{
}
public
function
testForeignPkNonId
()
{
die
(
'happy!'
);
$member
=
new
Member
();
$subprogram
=
new
SubProgram
();
$newsblast
=
new
NewsBlast
();
$member
->
set
(
'name'
,
'hello world!'
);
$member
->
set
(
'pin'
,
'demo1100'
);
$subprogram
->
set
(
'name'
,
'SoemthingNew'
);
$newsblast
->
set
(
'pin'
,
$member
);
$newsblast
->
set
(
'subprogram'
,
$subprogram
);
$newsblast
->
set
(
'title'
,
'Some title here'
);
$newsblast
->
save
();
$test
->
assertEqual
(
$newsblast
[
'subprogram'
],
'SomethingNew'
);
$test
->
assertEqual
(
$newsblast
[
'member'
][
'pin'
],
'demo1100'
);
$test
->
assertEqual
(
$newsblast
[
'member'
][
'name'
],
'hello world!'
);
$test
->
assertEqual
(
0
,
1
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment