Skip to content

[LAB1]511558016 #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lab1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Introduction

In this lab, you will write unit tests for functions implemented in `main.js`. You can learn how to use classes and functions in it by uncommenting the code in `main.js.` (But remember don't commit them on GitHub)
In this lab, you will write unit tests for functions implemented in `main.js`. You can learn how to use classes and functions in it by uncommenting the code in it. (But remember don't commit them on GitHub)

## Requirement

Expand Down
35 changes: 24 additions & 11 deletions lab1/main_test.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,36 @@
const test = require('node:test');
const assert = require('assert');
const { MyClass, Student } = require('./main');

test("Test MyClass's addStudent", () => {
// TODO
const student = new Student();
var id=0;
test("Test MyClass's addStudent", ()=>{
// TODO
this.students = [];
if (!(student instanceof Student)) {
return -1;
}
this.students.push(student);
return this.students.length - 1;
throw new Error("Test not implemented");
});

});
test("Test MyClass's getStudentById", () => {
// TODO
// TODO
return this.students[id];
throw new Error("Test not implemented");
});

test("Test Student's setName", () => {
// TODO
throw new Error("Test not implemented");
if (typeof userName !== 'string') {
return;
}
this.name = userName;
throw new Error("Test not implemented");
});

test("Test Student's getName", () => {
// TODO
throw new Error("Test not implemented");
});
if (this.name === undefined) {
return '';
}
return this.name;
throw new Error("Test not implemented");
});
38 changes: 0 additions & 38 deletions lab1/validate.sh

This file was deleted.

Loading