import { Baby } from './baby'; import { BabyShape } from './babything'; export declare class Unittests { app: Baby; constructor(app: Baby); unittestAll(): Promise; allBabyMethodsTestor(app: Baby): Promise; spiral(): Promise; /** a simple test against every method in BabyShape */ babyShapeTester(app: Baby, method: string): Promise; testAllBaby(app: Baby): Promise; /** creates an array of things to test */ arrayOfThings(app: Baby): BabyShape[]; /** spin the collection of things we were passed */ spin(a: BabyShape[]): Promise; /** just a jump to the left, and then a move to the right... */ move(a: BabyShape[]): Promise; /** just a jump to the left, and then a move to the right... */ scale(a: BabyShape[]): Promise; /** dispose of an array of shapes */ dispose(a: BabyShape[]): Promise; getPosition(app: Baby): Promise; testPhysics(app: Baby): Promise; testHTMLColor(): void; }