Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6468933
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T05:56:10+00:00 2026-05-25T05:56:10+00:00

I need to test a number of functions that I have created using PHP

  • 0

I need to test a number of functions that I have created using PHP 5 which carry out the required database CRUD type actions (SELECT, UPDATE, INSERT, DELETE) which are required by my web application.

I have been looking at PHP unit testing suites such as Simple Test and PHP Unit which seem to offer what I need however I am unsure how I am meant to achieve this, as equivalence partitioning and boundary analysis isn’t all that clear. Do I just need to input different variables and vary this? This seems rather pointless as a string that is different may not necessarily make any difference.

Any guidance on this would be helpful as I have not encountered this before.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T05:56:11+00:00Added an answer on May 25, 2026 at 5:56 am

    If you are testing the interaction between your PHP code and your MySQL database, you are performing integration testing, rather than unit testing.

    Here are some examples of integration testing with Enhance PHP framework, it tests a repository class that saves and retrieves a Tenant object.

    Instead of running against a pre-populated database, it runs on an entirely empty database and creates and destroys the tables as it goes using a simple table helper. This removes the dependency on particular data being in the right state in a test database, which is hard to keep in step.

    <?php
    class TenantRepositoryTestFixture extends EnhanceTestFixture {
        private $Target;
    
        public function SetUp() {
            $tables = new TableHelper();
            $tables->CreateTenantTable();
            $this->Target = Enhance::GetCodeCoverageWrapper('TenantRepository');
        }
    
        public function TearDown() {
            $tables = new TableHelper();
            $tables->DropTenantTable();
        }
    
        public function SaveWithNewTenantExpectSavedTest() {
            $tenant = new Tenant();
            $tenant->Name = 'test';
    
            $saved = $this->Target->Save($tenant);
            $result = $this->Target->GetById($saved->Id);
    
            Assert::AreNotIdentical(0, $result->Id);
            Assert::AreIdentical($tenant->Name, $result->Name);
        }
    
        public function SaveWithExistingTenantExpectSavedTest() {
            $tenant = new Tenant();
            $tenant->Name = 'test';
            $saved = $this->Target->Save($tenant);
            $saved->Name = 'changed';
            $saved = $this->Target->Save($saved);
    
            $result = $this->Target->GetById($saved->Id);
    
            Assert::AreIdentical($saved->Id, $result->Id);
            Assert::AreIdentical($saved->Name, $result->Name);
        }
    }
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have to write a program in which main calls other functions that test
I have created a custom control using VB.NET in Visual Studio 2008 that gives
I need to count number of email addresses in a db that have 3
I have the text box which only accepts number and dot so that i
I need to test whether various types of database objects exist in a given
I need to test a JDBC connection to a database. The java code to
I need to test a function that needs to query a page on an
I need to test a url that it does not end with .asp So
I need to test a web form that takes a file upload. The filesize
I need to test for general URLs using any protocol (http, https, shttp, ftp,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.