Skip to content

[LAB1] 311111111 (SAMPLE) #2

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 10 commits into from
4 changes: 3 additions & 1 deletion lab1/main_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ const test = require('node:test');
const assert = require('assert');
const { MyClass, Student } = require('./main');

// I didn't change anything but still commit it for demo

test("Test MyClass's addStudent", () => {
// TODO
throw new Error("Test not implemented");
Expand All @@ -20,4 +22,4 @@ test("Test Student's setName", () => {
test("Test Student's getName", () => {
// TODO
throw new Error("Test not implemented");
});
});