Remove unused tests

This commit is contained in:
Arthur Ozga
2016-11-01 15:38:35 -07:00
parent bc2134681d
commit 99ae5d9a99
16 changed files with 11 additions and 227 deletions

View File

@@ -1,12 +1,14 @@
/// <reference path='fourslash.ts' />
//// interface I {
//// f1();
//// }
////
//// class /*0*/C/*1*/ /*2*/extend/*3*/s/*4*/ /*5*/I/*6*/ {/*7*/}
//// interface I1 { }
//// class C1 extends I1 { }
//// interface I2 { }
//// class C2 extends I2 { }
for (let i = 0; i < 8; ++i) {
goTo.marker("" + i);
verify.codeFixAtPosition("");
}
// verify.codeFixAvailable();
verify.fileAfterCodeFixes(`
interface I1 { }
class C1 implements I1 { }
interface I2 { }
class C2 implements I2 { }
`);

View File

@@ -1,12 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// x:Array<Number>;
//// }
////
//// var x: I1 ={[|
//// |]}
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`x : null
// `);

View File

@@ -1,15 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// x:Array<Number>;
//// f1();
//// }
////
////
//// var x: I1 ={[|
//// |]f1(){}
//// }
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`x : null,
// `);

View File

@@ -1,13 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// x:[string];
//// }
////
////
//// var x: I1 ={[|
//// |]}
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`x : null
// `);

View File

@@ -1,15 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// x:[string];
//// f1();
//// }
////
////
//// var x: I1 ={[|
//// |]f1(){}
//// }
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`x : null,
// `);

View File

@@ -1,13 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// x:boolean;
//// }
////
//// var x: I1 ={[|
////
//// |]}
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`x : false
// `);

View File

@@ -1,15 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// x:boolean;
//// f1();
//// }
////
////
//// var x: I1 ={[|
//// |]f1(){}
//// }
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`x : false,
// `);

View File

@@ -1,14 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// x:T;
//// }
////
//// class T {}
////
//// var x: I1 ={[|
//// |]}
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`x : null
// `);

View File

@@ -1,22 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// f1();
//// }
////
//// interface I2 {
//// f2();
//// }
////
//// var x: I1|I2 ={[|
////
//// |]}
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`f1(){
// throw new Error('Method not Implemented');
// }
// f2(){
// throw new Error('Method not Implemented');
// }
// `);

View File

@@ -1,16 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// f1();
//// }
////
//// var x: I1 = {[|
////
//// |]}
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`
// f1(){
// throw new Error('Method not Implemented');
// }
// `);

View File

@@ -1,17 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// f1();
//// f2();
//// }
////
////
//// var x: I1 ={[|
//// |]f2() {}
//// }
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`f1(){
// throw new Error('Method not Implemented');
// },
// `);

View File

@@ -1,12 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// x:number;
//// }
////
//// var x: I1 ={[|
//// |]}
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`x : 0
// `);

View File

@@ -1,15 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// x:number;
//// f1();
//// }
////
////
//// var x: I1 ={[|
//// |]f1(){}
//// }
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`x : 0,
// `);

View File

@@ -1,13 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// x:string;
//// }
////
////
//// var x: I1 ={[|
//// |]}
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`x : ""
// `);

View File

@@ -1,14 +0,0 @@
/// <reference path='fourslash.ts' />
//// interface I1 {
//// x:string;
//// f1();
//// }
////
//// var x: I1 ={[|
//// |]f1(){}
//// }
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`x : "",
// `);

View File

@@ -1,12 +0,0 @@
/// <reference path='fourslash.ts' />
//// abstract class C2 {
//// abstract f1<T extends number>();
//// }
////
//// var x: C2 = {[| |]}
verify.not.codeFixAvailable();
// verify.codeFixAtPosition(`f1<T extends number>(){
// throw new Error('Method not Implemented');
// }`);