remove: deleting auto generated files
This commit is contained in:
parent
f8db3107b9
commit
5ef4f69b59
3 changed files with 0 additions and 56 deletions
|
@ -1,19 +0,0 @@
|
||||||
import 'package:test/test.dart';
|
|
||||||
|
|
||||||
void main() {
|
|
||||||
group('Dummy Test', () {
|
|
||||||
test('Always passes', () {
|
|
||||||
expect(true, isTrue);
|
|
||||||
});
|
|
||||||
|
|
||||||
test('Basic arithmetic', () {
|
|
||||||
expect(2 + 2, equals(4));
|
|
||||||
});
|
|
||||||
|
|
||||||
test('String manipulation', () {
|
|
||||||
String testString = 'Protevus Platform';
|
|
||||||
expect(testString.contains('Platform'), isTrue);
|
|
||||||
expect(testString.toLowerCase(), equals('protevus platform'));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
|
@ -1,19 +0,0 @@
|
||||||
import 'package:test/test.dart';
|
|
||||||
|
|
||||||
void main() {
|
|
||||||
group('Dummy Test', () {
|
|
||||||
test('Always passes', () {
|
|
||||||
expect(true, isTrue);
|
|
||||||
});
|
|
||||||
|
|
||||||
test('Basic arithmetic', () {
|
|
||||||
expect(2 + 2, equals(4));
|
|
||||||
});
|
|
||||||
|
|
||||||
test('String manipulation', () {
|
|
||||||
String testString = 'Protevus Platform';
|
|
||||||
expect(testString.contains('Platform'), isTrue);
|
|
||||||
expect(testString.toLowerCase(), equals('protevus platform'));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
|
@ -1,18 +0,0 @@
|
||||||
import "package:test/test.dart";
|
|
||||||
void main() {
|
|
||||||
group("Dummy Test", () {
|
|
||||||
test("Always passes", () {
|
|
||||||
expect(true, isTrue);
|
|
||||||
});
|
|
||||||
|
|
||||||
test("Basic arithmetic", () {
|
|
||||||
expect(2 + 2, equals(4));
|
|
||||||
});
|
|
||||||
|
|
||||||
test("String manipulation", () {
|
|
||||||
String testString = "Protevus Platform";
|
|
||||||
expect(testString.contains("Platform"), isTrue);
|
|
||||||
expect(testString.toLowerCase(), equals("protevus platform"));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
Loading…
Reference in a new issue