()
| 691 | |
| 692 | #[test] |
| 693 | fn test_model_pricing_clone() { |
| 694 | let pricing = ModelPricing::new(3.0, 15.0); |
| 695 | let cloned = pricing.clone(); |
| 696 | assert_eq!(cloned.input_per_million, 3.0); |
| 697 | assert_eq!(cloned.output_per_million, 15.0); |
| 698 | } |
| 699 | |
| 700 | #[test] |
| 701 | fn test_model_pricing_debug() { |