Skip to content
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");
});
});