Package me.josephsf.jobportaljosephsfeirtest.controller
package me.josephsf.jobportaljosephsfeirtest.controller
Tests for REST controllers in the Job Portal application.
This package contains test classes for the REST controllers that handle HTTP requests in the Job Portal system. These tests verify that the controllers correctly process requests, interact with services, and return appropriate responses.
The controller tests use Spring's MockMvc to simulate HTTP requests and verify:
- Request mapping and URL handling
- Request parameter and body validation
- Response status codes and content
- Authentication and authorization requirements
- Exception handling and error responses
Key test classes in this package:
AuthControllerTest- Tests for authentication endpointsJobControllerTest- Tests for job posting managementCandidateControllerTest- Tests for candidate profile operationsRecruiterControllerTest- Tests for recruiter profile operationsApplicationControllerTest- Tests for job application processes
- Since:
- 2025-05-15
-
ClassesClassDescriptionIntegration tests for the ApplicationController.Integration tests for CandidateController.Integration tests for JobController.Integration tests for RecruiterController.