mirror of
https://github.com/kou029w/intro-to-software-testing.git
synced 2025-01-18 16:08:00 +00:00
update
This commit is contained in:
parent
2376d0deca
commit
96b870f456
1 changed files with 13 additions and 0 deletions
13
README.md
13
README.md
|
@ -66,6 +66,19 @@ WebDINO Japan シニアエンジニア
|
|||
|
||||
自動化されたテストプロセス
|
||||
|
||||
```js
|
||||
import { expect, test } from "vitest";
|
||||
import isLeapYear from "./isLeapYear";
|
||||
|
||||
test("西暦年号が4で割り切れる年はうるう年", () => {
|
||||
expect(isLeapYear(2024)).toBe(true);
|
||||
});
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 自動テスト
|
||||
|
||||
ソフトウェアの内部品質への投資の損益分岐点は1ヶ月以内[^1]
|
||||
|
||||
時間と労力を節約し効率的な品質保証を可能にする
|
||||
|
|
Loading…
Add table
Reference in a new issue