Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
course-material
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IT1901
course-material
Commits
a29b84a6
Commit
a29b84a6
authored
8 months ago
by
George Adrian Stoica
Browse files
Options
Downloads
Patches
Plain Diff
docs: adds slides for 10th lecture
parent
5428169a
No related branches found
No related tags found
No related merge requests found
Pipeline
#295155
passed
8 months ago
Stage: build
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
lectures/revealjs/10-integration.adoc
+128
-0
128 additions, 0 deletions
lectures/revealjs/10-integration.adoc
with
128 additions
and
0 deletions
lectures/revealjs/10-integration.adoc
0 → 100644
+
128
−
0
View file @
a29b84a6
= Integration Testing
:customcss: slides.css
:icons: font
:includedir: includes/
:LECTURE_TOPIC: Integration Testing
:LECTURE_NO: 10th Lecture
include::{includedir}header.adoc[]
[.smaller-80][.center-paragraph]
IT1901 Fall 2024 - {LECTURE_NO}
[background-color = "#124990"]
[color = "#fff6d5"]
== Overview
[.smaller-80]
- Administrative issues
- Integration Testing
- Preparing Software Releases
- Summary
[background-color = "#124990"]
[color = "#fff6d5"]
== Administrative issues
== Approaching Deadlines
- Torsdag, 14. november / 23:59
** 3rd group deliverable
== Remaining Lectures
- w44 30th Oct - Guest lecture - current development practices in industry
- w45 7th Nov - Questions and Answers lecture - Present individual report assignment
[background-color = "#124990"]
[color = "#fff6d5"]
== Integration Testing
- check if combinations of software units (components) from our system work as expected when put together
- complementary to other types of testing
== !
image::../images/lecture10/testing-pyramid.png[canvas, size=contain]
== !
image::../images/lecture10/itest01.png[canvas, size=contain]
== !
image::../images/lecture10/itest02.png[canvas, size=contain]
== !
image::../images/lecture10/itest03.png[canvas, size=contain]
== !
image::../images/lecture10/itest04.png[canvas, size=contain]
== Approaches
- Top down
- Bottom up
- Hybrid
- Big bang
== Test doubles
[.smaller-80]
- **Dummy objects** - not used beyond fillers of param lists
- **Fake objects** - have some working implementation suitable just for testing
- **Stubs** - return pre-prepared answers to calls made during the test (limited to test cases)
- **Drivers** - some implementation to be able to call the units under test
- **Mocks** - more advanced then stubs, they do have mechanisms to check if calls are made by spec, can throw exceptions if expectations are not met
[background-color = "#124990"]
[color = "#fff6d5"]
== Preparing Software Releases
== Software binaries
- trade-offs
- dependencies can be included
- can run offline
== jlink
- javafx plugin goal
- creates a runtime for your app
== jpackage
- maven plugin
- creates a distributable package
- platform dependent
[background-color = "#124990"]
[color = "#fff6d5"]
== demo
[background-color = "#124990"]
[color = "#fff6d5"]
== Q & A
[background-color = "#124990"]
[color = "#fff6d5"]
== Summary
include::{includedir}footer.adoc[]
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment