AICC CMI Tests

This commit is contained in:
Jonathan Putney
2019-11-11 22:12:29 -05:00
parent 2f5c9804c9
commit 73ff260097
6 changed files with 1029 additions and 65 deletions

View File

@@ -1,17 +1,23 @@
// @flow
import Scorm12API from './Scorm12API';
import {CMIEvaluationCommentsObject, CMITriesObject, NAV} from './cmi/aicc_cmi';
import {
CMI,
CMIEvaluationCommentsObject,
CMITriesObject,
NAV,
} from './cmi/aicc_cmi';
/**
* The AICC API class
*/
class AICC extends Scorm12API {
export default class AICC extends Scorm12API {
/**
* Constructor to create AICC API object
*/
constructor() {
super();
this.cmi = new CMI(this);
this.nav = new NAV(this);
}