- apps/portal 디렉터리를 apps/client로 리팩터링 - ControlPlaneWireClient → WireClient 명명 변경 - 관련_proto import 정렬, struct protobuf 생성 제거 - README, docker-compose, 스크립트 등 일관성 개선
9 lines
311 B
Dart
9 lines
311 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:iop_client/client_config.dart';
|
|
|
|
void main() {
|
|
test('ClientConfig default values', () {
|
|
expect(ClientConfig.controlPlaneHttpUrl, 'http://localhost:9080');
|
|
expect(ClientConfig.controlPlaneWireUrl, 'ws://localhost:19080/client');
|
|
});
|
|
}
|