国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫FIT2107、代做Python設計編程
代寫FIT2107、代做Python設計編程

時間:2024-10-16  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



FIT2107 - Software Quality and Testing
ASSIGNMENT 2 [40%]
White box testing and code analysis
Overview
For this assignment, your task is to design and document appropriate tests for a
software system using white box techniques, build a CI/CD pipeline to run your tests,
and report on the code quality and test coverage. In doing this you must only use
concepts that have been covered in FIT2107.
This assignment is an individual, open book task. Every student must complete and
submit their own work. The use of AI in any way is not permitted.
Submissions will be marked out of 40, and will form 40% of your final grade in FIT2107. A
late penalty of 5% per day will be applied, and after 7 days a mark of 0 will be given and
no feedback will be provided on the submission.
This assignment covers FIT2107 learning outcomes 1, 2, and 3.
Deliverables
You must submit the following evidence using the Assignment 2 submission page on
Moodle:
● Your tests
Compress your “tests” folder from “bat” to a zip named “tests.zip”.
● Task 6 and Task 9 documents
Convert both documents to PDF for submission, and do not rename them (i.e., you
should submit files named “task_6.pdf” and “task_9.pdf”).
● Task 3 control flow graph
Submit as “task_3.png”
Your grade will also be based on the commit history in your unit repository on gitlab.
SUBMISSION DUE: Friday Week 12, 11:55PM
1FIT2107 - Software Quality and Testing
Tasks
For this assignment you are continuing to test the Borrowing Administration Terminal
(BAT) used by Anything Anytime Library (AAL). However, now you will have access to
some of the BAT code. This will enable you to run additional tests on the system using
white box techniques.
The code you have been provided with is a redacted version of BAT. Each part of the
code has been commented to describe its purpose and intended logic. In addition to
the in-code documentation, you should note:
● It is assumed that a patron will never attempt to take out a loan for an item they
are already borrowing (e.g., borrow two copies of the same book).
● It is assumed that there are no patrons with the same name and age.
● It is assumed that there are no logic errors in the JSON data provided to BAT (e.g.,
duplicate IDs, loans which aren't reflected in the catalogue). If there are any
syntax errors in the data then BAT will not open.
● Changes to data are not saved until the "Quit" menu option is selected.
● All functionality to do with late fees has been removed, except the calculation of
discounts for the purpose of determining if a patron is allowed to borrow an item
or is not allowed due to fees owed.
● Ability to update training records has been removed.
● All analytics code (e.g., for generating overdue loans reports) has been removed.
● All user and catalogue data is fabricated.
2FIT2107 - Software Quality and Testing
Task 1: File Setup (Marked as part of development history modifier)
You should have the knowledge to complete this task after Week 1.
Download the assignment template (template.zip) from Moodle. Unzip the folder, and
copy all of the files into the “Assignment 2” folder in your unit repository. Add, commit,
and push the files.
Task 2: MC/DC (4 marks)
You should have the knowledge to complete this task after Week 7.
In the file “test_task_2.py” in the “tests” folder in “bat”, write tests for the method
“can_borrow_carpentry_tool” from the “business_logic.py” source file. Write the
minimum number of tests needed to reach 100% MC/DC for the condition on line 126. Do
not write any extra tests.
Document your tests in comments as shown in the week 7 answer guide for MC/DC.
Your documentation must:
● List the possible tests and their outcomes, numbering each test.
● List the optimal test sets.
● Clearly identify which optimal set you have chosen to implement.
● Clearly identify which test number is being tested by each test method.
Task 3: Path Coverage (5 marks)
You should have the knowledge to complete this task after Week 7.
Part A:
Draw a control flow graph for the method “can_use_makerspace” from the
“business_logic.py” source file. In your graph, show “else” explicitly as a node. Save your
graph in the “Assignment 2” folder in your repository as “task_3.png”.
Part B:
In the file “test_task_3.py” in the “tests” folder in “bat”, write tests for the method
“can_use_makerspace” (from the “business_logic.py” source file). Write the minimum
number of tests needed to reach 100% path coverage. Do not write any extra tests.
Document your tests in comments as shown in the week 7 answer guide for path
coverage. Your documentation must:
3FIT2107 - Software Quality and Testing
● List the feasible paths, number each.
● Clearly identify which path is being tested by each test method.
Task 4: Mocking (5 marks)
You should have the knowledge to complete this task after Week 8.
In the file “test_task_4.py” in the “tests” folder in “bat”, write tests for the method
“_main_menu” from the “bat_ui” source file. Use the method “get_current_screen” to
verify that the UI has moved to the correct screen. Do not write any extra tests.
Make sure you test that:
● All valid inputs cause the UI to move to the correct screen.
● The user is repeatedly asked for input until a valid input is given.
Task 5: Coverage (10 marks)
You should have the knowledge to complete this task after Week 8.
In the “tests” folder in “bat”, write tests for any of the code in BAT you like until you reach:
● At least **% statement coverage.
● At least 80% branch coverage.
All tests written for this assignment (i.e., not just for Task 5) count towards coverage.
Add as many test files to the “tests” folder as you need, but do not add tests to the
“test_task_X.py” files, and do not rename any of the “test_task_X.py” files. Part of your
grade for this task will be based on your ability to write appropriate tests, and organise
them into appropriately named test files. Make sure you follow all guidelines given in
this unit.
Note: to get just branch coverage, run the terminal command “coverage json” after a
“coverage run” command. This will generate a file (“coverage.json”). In that file, under
"totals" there'll be "covered_branches" and "missing_branches".
Task 6: Find the Bugs (9 marks)
You should have the knowledge to complete this task after Week 8.
Part A:
Using any technique or combination of techniques you like, find 3 bugs in BAT.
Part B:
In “task_6.docx” in the assignment template, write a bug report for each of the three
bugs you found.
Task 7: CI (2 marks)
You should have the knowledge to complete this task after Week 9.
4FIT2107 - Software Quality and Testing
Configure gitlab to automatically run all of the tests you have written for BAT. Ensure
that only the BAT tests run, and the output is verbose. Gitlab should show that all your
tests were run, and all your tests pass.
Task 8: Static Analysis (2 marks)
You should have the knowledge to complete this task after Week 9.
Update your gitlab configuration to also automatically run the “pylint” and
“pycodestyle” static analysis tools on the BAT source code and tests. Gitlab should
show that all your tests were run and pass, but the code does not have to pass linting.
Task 9: Software Metrics (3 marks)
You should have the knowledge to complete this task after Week 10.
As mentioned, you have been given a redacted version of the BAT code. The real
version of BAT has 9842 lines of code.
In “task_9.docx” in the assignment template, explain (including your working) how
many defects you would expect the real version of BAT to contain. Your answer should
not be longer than one page.
Assessment Criteria
This assignment will be marked out of 40, and will form 40% of your final grade in
FIT2107. A late penalty of 5% per day will be applied, and after 7 days a mark of 0 will be
given and no feedback will be provided on the submission.
● Development history
After your submission is marked, a modifier will be applied to your score based on
your development history. The lowest possible modifier is 0.5, and the highest
possible modifier is 1.0 (i.e., no grade reduction). Your final grade will be your
original grade multiplied by this modifier. To get a modifier of 1.0 you need to:
○ Have all the files from the assignment template in the “Assignment 2”
folder in your unit repository, and not in a sub-folder.
○ Make at least 11 commits total.
○ Make at least 2 commits of each file in the template.
○ Use meaningful and concise commit messages.
● Appropriate use of unit concepts
The marker will verify that you have used only concepts covered in FIT2107.
● Correctness
The marker will verify the correctness of your answers.
● Clarity
The marker will verify whether your answers use clear, specific, and appropriate
examples. This is particularly important when you are writing justifications.
5FIT2107 - Software Quality and Testing
● Consistency
The marker will verify whether related answers are consistent with each other.
● Good coding practice
The marker will verify whether you have followed good coding practice for writing
tests in python, as demonstrated in this unit.
6

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機打開當前頁
  • 上一篇: 代寫ICT50220、C++/Java程序語言代做
  • 下一篇:CSCI1540代寫、代做C++設計編程
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    亚洲精品一区二区三| 这里只有精品66| 成人久久18免费网站图片| 国产精品免费观看久久| 手机看片福利永久国产日韩| 国产精品免费一区二区三区四区 | 久久视频这里只有精品| 黄色片免费在线观看视频| 久久亚洲精品一区二区| 久久久噜噜噜久久| 蜜桃久久精品乱码一区二区| 亚洲午夜精品一区二区三区 | 国产一区二区丝袜| 91久色国产| 久久亚洲春色中文字幕| 蜜臀av性久久久久蜜臀av| 日韩中文字幕在线免费| 亚洲精品在线免费看| 欧美精品999| 欧美精品一区二区免费| 国产精品久久久久久五月尺 | 国产精品久久久久久久久久ktv | 国产精品日本精品| 国产精品久久久久av免费| 亚洲在线欧美| 国产一区红桃视频| 久久久亚洲国产| 午夜精品一区二区三区视频免费看| 九九九热999| 欧美激情在线视频二区| 国内精品模特av私拍在线观看| 国产精品久久久久久超碰| 日本成人黄色| 久久这里精品国产99丫e6| 欧美日韩高清在线一区| 美日韩精品免费视频| 国产一区二区三区免费不卡 | 无码人妻精品一区二区三区66 | 日本精品性网站在线观看| 久久精品视频va| 91精品国产精品| 国产精品99久久久久久久久 | 亚洲www在线| 亚洲最大av在线| 中文字幕一区二区三区精彩视频 | 国产成人精品午夜| 亚洲三区在线观看| 中文精品无码中文字幕无码专区| 色偷偷9999www| 国产精品高潮呻吟久久av野狼| 国产精品福利在线观看| 日韩视频免费中文字幕| 91免费视频国产| 人妻无码视频一区二区三区| 日韩高清国产一区在线观看| 亚洲国产一区二区精品视频| 亚洲一区制服诱惑| 一本色道久久99精品综合| 国产精品视频免费在线| 国产精品精品视频一区二区三区| 99免费在线观看视频| 国产99视频精品免费视频36| 国产精品日韩欧美综合| 欧美中文字幕在线观看视频| 午夜精品在线观看| 久久久久久国产精品| 美女精品视频一区| 亚州av一区二区| 国产精品久久91| 国产v片免费观看| 国产精品久久精品视| 国产成人久久精品| 91九色视频在线| 国产富婆一区二区三区| 久99九色视频在线观看| 久久久福利视频| 这里只有精品66| 欧美中文字幕在线| 国产麻豆一区二区三区在线观看 | 国产精品亚洲自拍| 国产区一区二区三区| 欧美精品123| 国产精品亚洲片夜色在线| 欧美中文字幕视频在线观看| 国产视频九色蝌蚪| 国产欧美一区二区三区在线| 911国产网站尤物在线观看| 久久噜噜噜精品国产亚洲综合| 丰满人妻中伦妇伦精品app| 97精品国产97久久久久久粉红 | 激情小视频网站| 国产极品jizzhd欧美| 日韩wuma| 久久久久久久国产精品| 99在线影院| 国产成人97精品免费看片| 国产精品-区区久久久狼| 国产精品少妇在线视频| 国产精品国内视频| 亚洲综合中文字幕在线| 日本不卡久久| 97国产精品免费视频| 日韩有码在线视频| 国产99在线|中文| 亚洲一二三区精品| 国产福利视频一区| 欧美亚洲国产成人| 99在线观看视频网站| 久久久久久久久久久免费视频| 国产suv精品一区二区| 日本三级韩国三级久久| 午夜精品www| 97碰碰碰免费色视频| 一区二区在线观看网站| 国产美女精品久久久| 日韩中文字幕久久| 国产精品激情自拍| 三级三级久久三级久久18| 青草网在线观看| 美女黄毛**国产精品啪啪| 国产精品久久久久7777| 国产一级不卡视频| 永久免费看av| 国产极品美女高潮无套久久久| 欧美一区二区激情| 欧美中日韩一区二区三区| 欧美一区1区三区3区公司| 欧美成人精品欧美一级乱| 国产精品久久久久久av下载红粉| 国产自产精品| 欧美久久久精品| www.com毛片| 亚洲精品一区二区毛豆| 久久成人免费观看| 亚洲欧美国产一区二区| 激情图片qvod| 精品91免费| 日本最新高清不卡中文字幕| 国产精品欧美激情| 成人在线小视频| 欧美日韩精品免费看| 午夜肉伦伦影院| 日本一二三区视频在线| 久久久久久久久影视| 99re在线视频上| 亚洲精品中文字幕无码蜜桃| 国产精品久久久久久久app| 亚洲乱码一区二区三区| 国产精品一区专区欧美日韩| 欧美一级日本a级v片| 久久综合精品一区| 韩国一区二区av| 日本特级黄色大片| 久久久中文字幕| 国产欧美日韩专区发布| 日韩av一级大片| 欧美 国产 日本| 国产精品视频网址| 精品国产aⅴ麻豆| 日日噜噜噜噜夜夜爽亚洲精品| 亚洲砖区区免费| 欧美成人亚洲成人日韩成人| 久久99精品久久久久久青青日本| av在线不卡一区| 色综合视频二区偷拍在线| 91九色在线免费视频| 日本精品视频网站| 久久成年人免费电影| 久久艳片www.17c.com| 久久综合色影院| 97精品在线观看| 国产成a人亚洲精v品在线观看| 欧美日韩一区综合| 欧美在线一区二区视频| 久久九九热免费视频| 久久综合久中文字幕青草| 成人国产精品av| 99久久国产宗和精品1上映| 99精品人妻少妇一区二区| 成人免费视频91| 日本精品久久久久久久久久| 黄页网站大全在线观看| 欧美日韩国产91| 国产xxxxx视频| 精品国产区一区二区三区在线观看| 久久久最新网址| 国产精品久久久久免费a∨| 久久九九国产视频| 久久久99免费视频| 久久综合中文色婷婷| 久久久精品网站| 一区二区三区四区五区视频| 日韩欧美精品久久| 中文字幕色一区二区| 国产精品视频久| 一区二区精品在线| 国产精品久久7| 日韩免费在线免费观看| 日本不卡一区二区三区四区| 欧美精品无码一区二区三区|