update: cleaning structure adding ported files
This commit is contained in:
parent
3a8a2415a5
commit
33dab3706d
257 changed files with 1339 additions and 1586 deletions
|
@ -10,7 +10,5 @@
|
|||
"description": "Write unit tests for highlighted code"
|
||||
}
|
||||
],
|
||||
"contextProviders": [],
|
||||
"slashCommands": [],
|
||||
"allowAnonymousTelemetry": false
|
||||
}
|
18
.pkb/.copies.md
Normal file
18
.pkb/.copies.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
"reranker": {
|
||||
"name": "cohere",
|
||||
"params": {
|
||||
"apiBase": "https://api.jina.ai/v1/",
|
||||
"apiKey": "api",
|
||||
"model": "jina-reranker-v2-base-multilingual"
|
||||
}
|
||||
}
|
||||
|
||||
What do you mean here by out of order? One thing you can try first is increasing the "completionOptions.maxTokens" in config.json
|
||||
|
||||
"slashCommands": [
|
||||
{
|
||||
"name": "edit",
|
||||
"description": "Edit highlighted code"
|
||||
}
|
||||
]
|
||||
"contextProviders": [],
|
0
packages/auth/example/.gitkeep
Normal file
0
packages/auth/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_auth/protevus_auth.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_auth_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/auth/lib/src/.gitkeep
Normal file
0
packages/auth/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/auth/test/.gitkeep
Normal file
0
packages/auth/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_auth/protevus_auth.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/broadcasting/example/.gitkeep
Normal file
0
packages/broadcasting/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_broadcasting/protevus_broadcasting.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_broadcasting_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/broadcasting/lib/src/.gitkeep
Normal file
0
packages/broadcasting/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/broadcasting/test/.gitkeep
Normal file
0
packages/broadcasting/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_broadcasting/protevus_broadcasting.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/bus/example/.gitkeep
Normal file
0
packages/bus/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_bus/protevus_bus.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_bus_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/bus/lib/src/.gitkeep
Normal file
0
packages/bus/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/bus/test/.gitkeep
Normal file
0
packages/bus/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_bus/protevus_bus.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/cache/example/.gitkeep
vendored
Normal file
0
packages/cache/example/.gitkeep
vendored
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_cache/protevus_cache.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
8
packages/cache/lib/protevus_cache.dart
vendored
8
packages/cache/lib/protevus_cache.dart
vendored
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_cache_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/cache/lib/src/.gitkeep
vendored
Normal file
0
packages/cache/lib/src/.gitkeep
vendored
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/cache/test/.gitkeep
vendored
Normal file
0
packages/cache/test/.gitkeep
vendored
Normal file
16
packages/cache/test/protevus_cache_test.dart
vendored
16
packages/cache/test/protevus_cache_test.dart
vendored
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_cache/protevus_cache.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/collections/example/.gitkeep
Normal file
0
packages/collections/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_collections/protevus_collections.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_collections_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/collections/lib/src/.gitkeep
Normal file
0
packages/collections/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/collections/test/.gitkeep
Normal file
0
packages/collections/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_collections/protevus_collections.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/conditionable/example/.gitkeep
Normal file
0
packages/conditionable/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_conditionable/protevus_conditionable.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_conditionable_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/conditionable/lib/src/.gitkeep
Normal file
0
packages/conditionable/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/conditionable/test/.gitkeep
Normal file
0
packages/conditionable/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_conditionable/protevus_conditionable.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/config/example/.gitkeep
Normal file
0
packages/config/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_config/protevus_config.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_config_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/config/lib/src/.gitkeep
Normal file
0
packages/config/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/config/test/.gitkeep
Normal file
0
packages/config/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_config/protevus_config.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/console/example/.gitkeep
Normal file
0
packages/console/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_console/protevus_console.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_console_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/console/lib/src/.gitkeep
Normal file
0
packages/console/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/console/test/.gitkeep
Normal file
0
packages/console/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_console/protevus_console.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/container/example/.gitkeep
Normal file
0
packages/container/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_container/protevus_container.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_container_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/container/lib/src/.gitkeep
Normal file
0
packages/container/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/container/test/.gitkeep
Normal file
0
packages/container/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_container/protevus_container.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/cookie/example/.gitkeep
Normal file
0
packages/cookie/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_cookie/protevus_cookie.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_cookie_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/cookie/lib/src/.gitkeep
Normal file
0
packages/cookie/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/cookie/test/.gitkeep
Normal file
0
packages/cookie/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_cookie/protevus_cookie.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/database/example/.gitkeep
Normal file
0
packages/database/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_database/protevus_database.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_database_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/database/lib/src/.gitkeep
Normal file
0
packages/database/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/database/test/.gitkeep
Normal file
0
packages/database/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_database/protevus_database.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/encryption/example/.gitkeep
Normal file
0
packages/encryption/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_encryption/protevus_encryption.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_encryption_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/encryption/lib/src/.gitkeep
Normal file
0
packages/encryption/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/encryption/test/.gitkeep
Normal file
0
packages/encryption/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_encryption/protevus_encryption.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/events/example/.gitkeep
Normal file
0
packages/events/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_events/protevus_events.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_events_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/events/lib/src/.gitkeep
Normal file
0
packages/events/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/events/test/.gitkeep
Normal file
0
packages/events/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_events/protevus_events.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
0
packages/filesystem/example/.gitkeep
Normal file
0
packages/filesystem/example/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
import 'package:protevus_filesystem/protevus_filesystem.dart';
|
||||
|
||||
void main() {
|
||||
var awesome = Awesome();
|
||||
print('awesome: ${awesome.isAwesome}');
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/protevus_filesystem_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
0
packages/filesystem/lib/src/.gitkeep
Normal file
0
packages/filesystem/lib/src/.gitkeep
Normal file
|
@ -1,6 +0,0 @@
|
|||
// TODO: Put public facing types in this file.
|
||||
|
||||
/// Checks if you are awesome. Spoiler: you are.
|
||||
class Awesome {
|
||||
bool get isAwesome => true;
|
||||
}
|
0
packages/filesystem/test/.gitkeep
Normal file
0
packages/filesystem/test/.gitkeep
Normal file
|
@ -1,16 +0,0 @@
|
|||
import 'package:protevus_filesystem/protevus_filesystem.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
group('A group of tests', () {
|
||||
final awesome = Awesome();
|
||||
|
||||
setUp(() {
|
||||
// Additional setup goes here.
|
||||
});
|
||||
|
||||
test('First Test', () {
|
||||
expect(awesome.isAwesome, isTrue);
|
||||
});
|
||||
});
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue