forked from eclipse-cdt-cloud/cdt-gdb-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1dc3d63
commit e6e8ce9
Showing
4 changed files
with
190 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/********************************************************************* | ||
* Copyright (c) 2023 Kichwa Coders Canada Inc. and others | ||
* | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*********************************************************************/ | ||
|
||
import { Readable } from "stream"; | ||
import { GDBBackend } from "../GDBBackend"; | ||
import { MIParser } from "../MIParser"; | ||
|
||
|
||
describe.only('GDB Backend Test Suite', function () { | ||
let backend : GDBBackend; | ||
let parser : MIParser; | ||
|
||
beforeEach(async function () { | ||
backend = new GDBBackend(); | ||
parser = new MIParser(backend); | ||
}); | ||
|
||
afterEach(function () { | ||
// | ||
}); | ||
|
||
it('parse', async function () { | ||
// | ||
parser.parse(Readable.from("Input")); | ||
}); | ||
|
||
}); |
Oops, something went wrong.